summaryrefslogtreecommitdiff
path: root/security/cyrus-sasl/files/Sendmail.README
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-09-19 02:59:29 +0000
committerAde Lovett <ade@FreeBSD.org>2000-09-19 02:59:29 +0000
commit636d1ebd70fd6825fbd4d30b41abf865213aa9ab (patch)
tree953ae4954ca6298cd0351b443730249166fc8d76 /security/cyrus-sasl/files/Sendmail.README
parentUpdate to version 1.0 (diff)
Cyrus-SASL 1.5.24 sources changed on Aug 15th
-- changed a hard coded value to a variable. Kerberos IV detection fails due to double check on krb_mk_priv (with/without com_err), used cached value from first check for krb_mk_priv. Added addtional pwcheck methods (MySQL & LDAP Authentication). PR: 21383 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=32830
Diffstat (limited to 'security/cyrus-sasl/files/Sendmail.README')
-rw-r--r--security/cyrus-sasl/files/Sendmail.README25
1 files changed, 25 insertions, 0 deletions
diff --git a/security/cyrus-sasl/files/Sendmail.README b/security/cyrus-sasl/files/Sendmail.README
new file mode 100644
index 000000000000..7063c93e90e8
--- /dev/null
+++ b/security/cyrus-sasl/files/Sendmail.README
@@ -0,0 +1,25 @@
+How to enable SMTP AUTH with FreeBSD default Sendmail 8.11
+
+1. Edit /usr/src/usr.sbin/sendmail/Makefile, and change the line:
+
+ LDADD= -lutil -lwrap
+into
+ LDADD+= -lutil -lwrap
+
+ NOTE: This change is in 5.0-CURRENT and will be MFC'd to
+ 4.1-STABLE later.
+
+2) Add the following to /etc/make.conf:
+
+# Add SMTP AUTH support to Sendmail
+.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail"
+CFLAGS+=-DSASL -I/usr/local/include/sasl -L/usr/local/lib
+LDADD+=-lsasl
+.endif
+
+3) Rebuild FreeBSD (make buildworld, ...)
+
+4) Create /usr/local/lib/sasl/Sendmail.conf with the following.
+
+ pwcheck_method: pwcheck
+