I am getting a new error after I ran the following command:
Quote:
|
postconf -e smtp_cname_overrides_servername=no
|
new error
Quote:
After sending a test message, check the Log Files for the error:
(Authentication failed: cannot SASL authenticate to server ...: no mechanism available)
You can fix this problem by tweaking the auth mechanisms that postfix is willing to use. First check what auth mechanism postfix is configured to use - by default, you will see:
postconf smtp_sasl_security_options
smtp_sasl_security_options = noplaintext, noanonymous
Since noplaintext is present, postfix will refuse to use a mechanism that sends passwords in the clear. If your upstream relay host only supports PLAIN or LOGIN mechanisms (both of which send password in the clear), you have to remove noplaintext from smtp_sasl_security_options:
postconf -e smtp_sasl_security_options=noanonymous
postfix reload
|
Applying this to see if it fixed it if so you can close this post.