From fc80e34e8e9e3c726073d321e2075ead77baba08 Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Thu, 20 Jul 2000 20:49:00 +0000 Subject: [PATCH] Ken Hornstein's SASL patch was not integrated properly with Ruud's new merged mts/sendmail code. Kimmo has since fixed nmh so it compiles, but according to Ken, the SASL stuff still does not work. Integrating a patch from him for this. --- ChangeLog | 5 +++++ mts/smtp/smtp.c | 9 +++++++++ uip/Makefile.in | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d0485a6..ead1a4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,11 @@ Mon Jul 17 13:11:52 2000 Dan Harkless unnecessary local makes and an out-of-sync stamp-h.in file, but would not cause problems for other people using the CVS files. + * Ken Hornstein's SASL patch was not integrated properly with + Ruud's new merged mts/sendmail code. Kimmo has since fixed nmh so + it compiles, but according to Ken, the SASL stuff still does not + work. Integrating a patch from him for this. + Tue Jul 18 19:36:59 EDT 2000 Kimmo Suominen * Added the answer to Dan's question in README.developers. diff --git a/mts/smtp/smtp.c b/mts/smtp/smtp.c index a37ebea..f2390b8 100644 --- a/mts/smtp/smtp.c +++ b/mts/smtp/smtp.c @@ -13,6 +13,15 @@ #include #endif +#ifdef CYRUS_SASL +#include +#include +#include +#include +#include +#include +#endif /* CYRUS_SASL */ + /* * This module implements an interface to SendMail very similar * to the MMDF mm_(3) routines. The sm_() routines herein talk diff --git a/uip/Makefile.in b/uip/Makefile.in index ca6b5bc..ff9fa56 100644 --- a/uip/Makefile.in +++ b/uip/Makefile.in @@ -29,7 +29,7 @@ MTSLIB = ../mts/smtp/libsmtp.a KRB4_LIBS = @KRB4_LIBS@ SASL_LIBS = @SASL_LIBS@ HESIOD_LIBS = @HESIOD_LIBS@ -LOCALLIBS = ../config/version.o ../config/config.o ../sbr/libmh.a $(MTSLIB) ../zotnet/libzot.a +LOCALLIBS = ../config/version.o ../config/config.o $(MTSLIB) ../sbr/libmh.a ../zotnet/libzot.a LINKLIBS = $(LOCALLIBS) $(KRB4_LIBS) $(SASL_LIBS) $(HESIOD_LIBS) $(LIBS) LINT = @LINT@ -- 1.7.10.4