Enable dual use of rsa and ecdsa certificates
This commit is contained in:
parent
8c79f8b687
commit
b5b25bb457
1 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,12 @@ smtpd_tls_security_level = may
|
|||
smtpd_tls_auth_only = yes
|
||||
smtpd_tls_cert_file = {{ postfix_smtpd_tls_cert_file }}
|
||||
smtpd_tls_key_file = {{ postfix_smtpd_tls_key_file }}
|
||||
{% if postfix_smtpd_tls_eccert_file is defined %}
|
||||
smtpd_tls_eccert_file = {{ postfix_smtpd_tls_eccert_file }}
|
||||
{% endif %}
|
||||
{% if postfix_smtpd_tls_eckey_file is defined %}
|
||||
smtpd_tls_eckey_file = {{ postfix_smtpd_tls_eckey_file }}
|
||||
{% endif %}
|
||||
smtpd_tls_ciphers = medium
|
||||
smtpd_tls_mandatory_ciphers = medium
|
||||
smtpd_tls_exclude_ciphers = aNULL, eNULL, MD5, DES, 3DES, DES-CBC3-SHA, RC4-SHA, AES256-SHA, AES128-SHA, DHE-RSA-AES256-SHA
|
||||
|
|
Loading…
Reference in a new issue