diff options
author | Jonas Smedegaard <dr@jones.dk> | 2002-12-30 20:25:39 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2002-12-30 20:25:39 +0000 |
commit | aebb64aed4ba08d0f8c021a6282798b9200a1b2b (patch) | |
tree | 611362ffded0230083ae812829ed2ff9a9c901d4 | |
parent | 0280c338dea28a7d9e9adac0442ea839a1e0cf17 (diff) |
Correct error (same kind again, how embarrasing!).
-rwxr-xr-x | postfix/anti-uce.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/anti-uce.sh b/postfix/anti-uce.sh index d852eb2..48f8213 100755 --- a/postfix/anti-uce.sh +++ b/postfix/anti-uce.sh @@ -35,7 +35,7 @@ if dpkg -L libsasl-modules-plain &> /dev/null && [ -f /etc/ssl/certs/postfix.pem > $confdir/master.cf # Check if using a proper key or just a self-signed one # (it is assumed that a CA certificate is made public if used!) - if [ -f /etc/ssl/certs/postfix.pem -a -f /etc/ssl/certs/cacert.pem]; then + if [ -f /etc/ssl/certs/postfix.pem -a -f /etc/ssl/certs/cacert.pem ]; then postconf -e "smtpd_tls_CAfile = /etc/ssl/certs/cacert.pem" postconf -e "smtpd_tls_cert_file = /etc/ssl/certs/postfix.pem" postconf -e "smtpd_tls_key_file = /etc/ssl/private/postfix.pem" |