summaryrefslogtreecommitdiff
path: root/postfix
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-12-30 20:25:39 +0000
committerJonas Smedegaard <dr@jones.dk>2002-12-30 20:25:39 +0000
commitaebb64aed4ba08d0f8c021a6282798b9200a1b2b (patch)
tree611362ffded0230083ae812829ed2ff9a9c901d4 /postfix
parent0280c338dea28a7d9e9adac0442ea839a1e0cf17 (diff)
Correct error (same kind again, how embarrasing!).
Diffstat (limited to 'postfix')
-rwxr-xr-xpostfix/anti-uce.sh2
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"