diff options
author | Luke Smith <luke@lukesmith.xyz> | 2023-08-19 13:10:59 +0200 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2023-08-19 13:10:59 +0200 |
commit | c404b42c04d7093338ea80e4b71fc8f6bf8cecf0 (patch) | |
tree | d145c6c812ca18aa931fbd16c627027abba5858d | |
parent | 5e81fdb738412ec6c8949394633f171727d0282e (diff) |
disable excluded ciphers until further investigation, close #292
-rw-r--r-- | emailwiz.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emailwiz.sh b/emailwiz.sh index 7b00eae..0290d29 100644 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -80,8 +80,8 @@ postconf -e 'smtpd_tls_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1' postconf -e 'smtp_tls_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1' # Exclude suboptimal ciphers. -postconf -e 'tls_preempt_cipherlist = yes' -postconf -e 'smtpd_tls_exclude_ciphers = aNULL, LOW, EXP, MEDIUM, ADH, AECDH, MD5, DSS, ECDSA, CAMELLIA128, 3DES, CAMELLIA256, RSA+AES, eNULL' +# postconf -e 'tls_preempt_cipherlist = yes' +# postconf -e 'smtpd_tls_exclude_ciphers = aNULL, LOW, EXP, MEDIUM, ADH, AECDH, MD5, DSS, ECDSA, CAMELLIA128, 3DES, CAMELLIA256, RSA+AES, eNULL' # Here we tell Postfix to look to Dovecot for authenticating users/passwords. # Dovecot will be putting an authentication socket in /var/spool/postfix/private/auth |