diff options
author | Jonas Smedegaard <dr@jones.dk> | 2007-07-12 13:15:00 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2007-07-12 13:15:00 +0000 |
commit | f29cd4fe84c5fbc11d5794795ce14de297537a33 (patch) | |
tree | 24a164729e4103f94a526d55b95795ce8766944d /postfix | |
parent | 3fbd2b3d0a5928f4526f8786af64ba726b720c25 (diff) |
Fix typo.
Diffstat (limited to 'postfix')
-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 4a40b4a..21a5caa 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.39 2007-07-11 22:58:33 jonas Exp $ +# $Id: postfix.sh,v 1.40 2007-07-12 13:15:00 jonas Exp $ # # Auto-tweak plain installed postfix Debian package # @@ -119,7 +119,7 @@ $postconf -e "`getlinesfromfile smtpd_data_restrictions`" # TLS breaks postfix if no SASL modules available (and doesn't make sense either) # (change the test if using some other modules and avoid the plain ones) -if [ -n "$pftls" [ && [ -n "$sasl2" ] && [ -f /etc/ssl/certs/postfix.pem ]; then +if [ -n "$pftls" ] && [ -n "$sasl2" ] && [ -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" |