I am runnnig Postfix and Dovecot on CentOS 7.3. I can receive and send mail to local users and send mails to external mail servers such as gmail.com, etc. Issue is that I could not receive any mails from outside servers...
fatal: unknown xsasl_dovecot_server_create value "noanomymous" in "noanomymous"
In case you are seeing this error in your maillog file, issue is probably typing error. This was issue for me.
Mailog was showing these messeges
Sep 4 06:53:35 test.server postfix/smtpd[15216]: connect from cpe-69-132-12-136.carolina.res.rr.com[69.132.12.136]
Sep 4 06:53:35 test.server postfix/smtpd[15216]: fatal: unknown xsasl_dovecot_server_create value "noanomymous" in "noanomymous"
Sep 4 06:53:35 test.server postfix/smtpd[15216]: fatal: unknown xsasl_dovecot_server_create value "noanomymous" in "noanomymous"
So I double check my main.cf file...
This parameter was wrong
smtpd_sasl_security_options = noanomymous
It should be
smtpd_sasl_security_options = noanonymous
After I change this, everything was working perfectly.
No comments:
Post a Comment