From a8e132a70154bd956ad6921c70d9aa9158639f6b Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 9 Feb 2020 13:53:03 +0000 Subject: [PATCH] Change TLS certificate name --- dovecot/10-ssl.conf | 4 ++-- postfix/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dovecot/10-ssl.conf b/dovecot/10-ssl.conf index 044133c..eb196dd 100644 --- a/dovecot/10-ssl.conf +++ b/dovecot/10-ssl.conf @@ -1,4 +1,4 @@ ssl = required -ssl_cert = /etc/postfix/main.cf \ && postconf -e smtpd_banner='$myhostname ESMTP $mail_name' \ && postconf -e smtpd_use_tls='yes' \ && postconf -e smtpd_tls_loglevel='1' \ - && postconf -e smtpd_tls_key_file='/tls/privkey' \ - && postconf -e smtpd_tls_cert_file='/tls/fullchain' \ + && postconf -e smtpd_tls_key_file='/tls/key.pem' \ + && postconf -e smtpd_tls_cert_file='/tls/fullchain.pem' \ && postconf -e smtpd_tls_security_level='may' \ && postconf -e smtpd_tls_auth_only='yes' \ && postconf -e smtpd_tls_mandatory_protocols='!SSLv2,!SSLv3,!TLSv1,!TLSv1.1' \