diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2024-07-05 22:19:39 +0000 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2024-07-05 22:19:39 +0000 |
commit | db676b7ba8944b3dae2208f91e967d1555d7e401 (patch) | |
tree | e738544839dbfcbf225054cf7e02e19ef7fb224f /etc/postfix/main.cf | |
parent | 691b1145250ea555a3dd5982796f3e3d493e8a82 (diff) |
fix: postfix smtpd_use_tls will be deprecated, so remvoe
postfix log warning "/etc/postfix/main.cf: support for parameter
"smtpd_use_tls" will be removed; instead, specify
"smtpd_tls_security_level"". I am already using
smtpd_tls_security_level, so I just removed smtpd_use_tls. Also see
https://github.com/LukeSmithxyz/emailwiz/issues/112
`man 5 postconf` has documentation about smtpd_tls_security_level
Diffstat (limited to 'etc/postfix/main.cf')
-rw-r--r-- | etc/postfix/main.cf | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/etc/postfix/main.cf b/etc/postfix/main.cf index 5ca97507..556ca8b9 100644 --- a/etc/postfix/main.cf +++ b/etc/postfix/main.cf @@ -18,7 +18,6 @@ mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain smtp_tls_security_level = may smtpd_tls_security_level = may -smtpd_use_tls = yes smtpd_tls_cert_file = /etc/postfix/flylightning.pem smtpd_tls_key_file = /etc/postfix/flylightning.key |