Verify TLS certificates for outgoing mail
This commit is contained in:
parent
df2f74870c
commit
6bdc224322
|
@ -38,9 +38,11 @@ RUN echo '' > /etc/postfix/main.cf \
|
||||||
&& postconf -e smtpd_tls_exclude_ciphers='aNULL' \
|
&& postconf -e smtpd_tls_exclude_ciphers='aNULL' \
|
||||||
&& postconf -e smtpd_tls_dh1024_param_file='/etc/postfix/dh-params/2048.pem' \
|
&& postconf -e smtpd_tls_dh1024_param_file='/etc/postfix/dh-params/2048.pem' \
|
||||||
&& postconf -e smtpd_tls_eecdh_grade='strong' \
|
&& postconf -e smtpd_tls_eecdh_grade='strong' \
|
||||||
|
&& postconf -e smtpd_tls_CApath='/etc/ssl/certs' \
|
||||||
&& postconf -e smtp_tls_loglevel='1' \
|
&& postconf -e smtp_tls_loglevel='1' \
|
||||||
&& postconf -e smtp_tls_security_level='may' \
|
&& postconf -e smtp_tls_security_level='may' \
|
||||||
&& postconf -e smtp_tls_mandatory_ciphers='medium' \
|
&& postconf -e smtp_tls_mandatory_ciphers='medium' \
|
||||||
|
&& postconf -e smtp_tls_CApath='/etc/ssl/certs' \
|
||||||
&& postconf -e tls_preempt_cipherlist='yes' \
|
&& postconf -e tls_preempt_cipherlist='yes' \
|
||||||
&& postconf -e smtpd_sasl_auth_enable='yes' \
|
&& postconf -e smtpd_sasl_auth_enable='yes' \
|
||||||
&& postconf -e smtpd_sasl_type='dovecot' \
|
&& postconf -e smtpd_sasl_type='dovecot' \
|
||||||
|
|
Reference in a new issue