diff options
author | Jonas Smedegaard <dr@jones.dk> | 2006-10-23 20:31:42 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2006-10-23 20:31:42 +0000 |
commit | 95852448bbcefd7f07168fc838196b5535e4c22e (patch) | |
tree | e466b079376d3b80345b27e3410b83565000b99b | |
parent | c44900a6de80f00215c19fc87a7b7c96aa6edf4e (diff) |
Fix SASL authentication (wrong keyword in /etc/postfix/sasl/smtpd.conf).
-rwxr-xr-x | postfix/postfix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postfix/postfix.sh b/postfix/postfix.sh index 6d197c0..7a43782 100755 --- a/postfix/postfix.sh +++ b/postfix/postfix.sh @@ -3,7 +3,7 @@ # /etc/local-COMMON/postfix/postfix.sh # Copyright 2002-2004 Jonas Smedegaard <dr@jones.dk> # -# $Id: postfix.sh,v 1.33 2006-09-24 05:58:00 jonas Exp $ +# $Id: postfix.sh,v 1.34 2006-10-23 20:31:42 jonas Exp $ # # Auto-tweak plain installed postfix Debian package # @@ -120,7 +120,7 @@ if [ -n "$pftls" -a -n "$sasl2" -a -f /etc/ssl/certs/postfix.pem ]; then mkdir -p "$sasldir" echo 'mech_list: plain login' > "$sasldir/smtpd.conf" echo 'minimum_layer: 0' >> "$sasldir/smtpd.conf" - echo 'pwcheck_method: saslauthd' >> "$sasldir/smtpd.conf" + echo 'sasl_pwcheck_method: saslauthd' >> "$sasldir/smtpd.conf" echo 'auto_transition: false' >> "$sasldir/smtpd.conf" groups postfix | grep -q sasl || adduser postfix sasl # Release TLS-related daemons from chroot jail (bringing SASL into the jail is just too messy) |