Created
June 29, 2017 17:30
-
-
Save ryanrankin/fb16711637c115556a400824ee0e21a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# According to http://www.postfix.org/TLS_README.html | |
# http://www.postfix.org/TLS_README.html#server_logging | |
smtpd_tls_loglevel = 1 | |
# Enable opportunistic encryption | |
smtp_tls_security_level = may | |
# Disable insecure protocols | |
smtpd_tls_protocols = !SSLv2, !SSLv3 | |
smtp_tls_protocols = !SSLv2, !SSLv3 | |
# Only strong ciphers | |
smtpd_tls_ciphers = high | |
smtp_tls_ciphers = high | |
# keys | |
smtp_tls_cert_file = /etc/letsencrypt/live/[DOMAIN]/fullchain.pem | |
smtp_tls_key_file = /etc/letsencrypt/live/[DOMAIN]/privkey.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment