summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2020-10-11 02:38:51 +0200
committerJonas Smedegaard <dr@jones.dk>2020-10-11 02:38:51 +0200
commit185a30ef83620ff5c63155025f4fa3fef50feef9 (patch)
tree64971fce0608ad31ce785f9eca5bff249011e03b
parentc363e24861017d92bacba3ced10545d5b7defb33 (diff)
fix TLS_CHAIN_FILES file extension
-rwxr-xr-xpostfix/postfix.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix/postfix.sh b/postfix/postfix.sh
index d91d71f..061a547 100755
--- a/postfix/postfix.sh
+++ b/postfix/postfix.sh
@@ -161,7 +161,7 @@ else
warn "Dovecot missing - (Debian package dovecot-core or dovecot)."
fi
ENABLE_TLS=
-[ -z "$thismailhost" ] || TLS_CHAIN_FILES="/etc/ssl/private/$thismailhost.chain.pem"
+[ -z "$thismailhost" ] || TLS_CHAIN_FILES="/etc/ssl/private/$thismailhost.chain.key"
if [ -f "$TLS_CHAIN_FILES" ]; then
ENABLE_TLS=1
else