Merge pull request #263 from aleksav013/patch-1

Reverse DNS does not match SMTP Banner
This commit is contained in:
Luke Smith 2023-03-01 12:27:05 +00:00 committed by GitHub
commit 2c925e2c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -286,7 +286,7 @@ sed -i '/^SOCKET/d' /etc/default/opendkim && echo "SOCKET=\"inet:12301@localhost
echo 'Configuring Postfix with OpenDKIM settings...' echo 'Configuring Postfix with OpenDKIM settings...'
postconf -e 'smtpd_sasl_security_options = noanonymous, noplaintext' postconf -e 'smtpd_sasl_security_options = noanonymous, noplaintext'
postconf -e 'smtpd_sasl_tls_security_options = noanonymous' postconf -e 'smtpd_sasl_tls_security_options = noanonymous'
postconf -e "myhostname = $domain" postconf -e "myhostname = $maildomain"
postconf -e 'milter_default_action = accept' postconf -e 'milter_default_action = accept'
postconf -e 'milter_protocol = 6' postconf -e 'milter_protocol = 6'
postconf -e 'smtpd_milters = inet:localhost:12301' postconf -e 'smtpd_milters = inet:localhost:12301'