diff options
author | ume <ume@FreeBSD.org> | 2003-05-06 20:32:14 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2003-05-06 20:32:14 +0800 |
commit | ffb768e8aa7c250a33ce45dedc9975b4454e972b (patch) | |
tree | e0e0501ba5b975f2bf59887ed00aaea7fd5357ae /security/cyrus-sasl | |
parent | 0dc6b2141f8d9f7759baa7761c055784dd1e1192 (diff) | |
download | freebsd-ports-gnome-ffb768e8aa7c250a33ce45dedc9975b4454e972b.tar.gz freebsd-ports-gnome-ffb768e8aa7c250a33ce45dedc9975b4454e972b.tar.zst freebsd-ports-gnome-ffb768e8aa7c250a33ce45dedc9975b4454e972b.zip |
When sending mail localy on a system compiled woth SASL AUTH, the
sendmail mail submission program may log the following error on the
sasldb file:
error: safesasl(/usr/local/etc/sasldb) failed: Group readable file
Pine by default is using SMTP, and therfore SMTP AUTH if compiled
into sendmail. To disable SMTP AUTH we need to define DAEMON_OPTIONS
for the loopback interface.
PR: ports/51680
Submitted by: Scot W. Hetzel <hetzels@westbend.net>
Diffstat (limited to 'security/cyrus-sasl')
-rw-r--r-- | security/cyrus-sasl/files/Sendmail.README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/cyrus-sasl/files/Sendmail.README b/security/cyrus-sasl/files/Sendmail.README index 9cfc823ff7dd..dedf27d77550 100644 --- a/security/cyrus-sasl/files/Sendmail.README +++ b/security/cyrus-sasl/files/Sendmail.README @@ -41,6 +41,17 @@ How to enable SMTP AUTH with FreeBSD default Sendmail dnl Use the following for Sendmail 8.10 - 8.11 define(`confDONT_BLAME_SENDMAIL',`GroupReadableSASLFile')dnl +5) Add the following before FEATURE(msp) in your sendmail 8.12 submit.mc file: + + DAEMON_OPTIONS(`Name=NoMTA, Addr=127.0.0.1, M=EA')dnl + + This disables SMTP AUTH on the loopback interface. Otherwise you may get + the following error in the log: + + error: safesasl(/usr/local/etc/sasldb) failed: Group readable file + + when sending mail locally (seen when using pine locally on same server). + ---- Additional AUTH Mechanisms are LOGIN, PLAIN, GSSAPI, and KERBEROS_V4. |