Date: Tue, 5 Feb 2002 20:41:01 -0500 (EST) From: "H. Wade Minter" <minter@lunenburg.org> To: Eric Nelson <enelson@timing.com> Cc: freebsd-questions@freebsd.org Subject: Re: configuring SMTP AUTHENTICATION Message-ID: <20020205203940.O9459-100000@bunning.skiltech.com> In-Reply-To: <3C6067C4.5E9A1E15@timing.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 5 Feb 2002, Eric Nelson wrote: > Would anyone know of the easiest way to upgrade a version of Sendmail (currently using > Sendmail 8.11.3 on a 4_3_0_RELEASE FreeBSD server) that utilizes SMTP AUTHENTICATION? I > believe it requires the build/install of the sendmail-sasl port, but what else might need > to be done? I got SASL working with the stock sendmail in the base system (not the port) by first installing cyrus-sasl, then adding the following lines to /etc/make.conf: SENDMAIL_CFLAGS=-I/usr/local/include/sasl -DSASL SENDMAIL_LDFLAGS=-L/usr/local/lib SENDMAIL_LDADD=-lsasl Then, in my sendmail.mc file, I put: TRUST_AUTH_MECH(`CRAM-MD5 DIGEST-MD5 LOGIN PLAIN')dnl define(`confAUTH_MECHANISMS',`CRAM-MD5 DIGEST-MD5 LOGIN PLAIN')dnl Then, finally, I rebuilt sendmail in the base system. It works for me now. --Wade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020205203940.O9459-100000>