diff options
author | Luke Smith <luke@lukesmith.xyz> | 2023-06-30 15:23:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 15:23:10 +0000 |
commit | 8b9e7b1dd591b7305ba9e4aa58d7b69d14dc3e84 (patch) | |
tree | 453808c0ec7e75b5b901afbae0909bb9a25cffd7 | |
parent | bcfa1b45ad9a568dda98de37262f867dd5528869 (diff) | |
parent | bd9d7f937ff9b451de5d7e319d69c7aaabb487d4 (diff) |
Merge pull request #284 from xkcdstickfigure/patch-1
fix comment
-rw-r--r-- | emailwiz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emailwiz.sh b/emailwiz.sh index 01ff194..2e24c57 100644 --- a/emailwiz.sh +++ b/emailwiz.sh @@ -73,7 +73,7 @@ postconf -e 'smtp_tls_security_level = may' # TLS required for authentication. postconf -e 'smtpd_tls_auth_only = yes' -# Exclude obsolete, insecure and obsolete encryption protocols. +# Exclude insecure and obsolete encryption protocols. postconf -e 'smtpd_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1' postconf -e 'smtp_tls_mandatory_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1' postconf -e 'smtpd_tls_protocols = !SSLv2, !SSLv3, !TLSv1, !TLSv1.1' |