0

我总是收到这个错误。我安装了默认的 dovecot 和 postfix。从 Thunderbird 和 PHP 梨邮件发送邮件工作正常,但如果我在 vbulletin 4 中使用邮件服务器,它会在 mail.log 中给我这个错误。

部分来自我的配置文件。

smtpd_sasl_auth_enable = yes
smtpd_sasl_type = dovecot
smtpd_sasl_security_options = noanonymous
smtpd_sasl_path = private/dovecot-auth
smtpd_sasl_authenticated_header = yes
smtpd_sasl_local_domain = $myhostname
broken_sasl_auth_clients = yes

它还会引发此错误:

 Client host rejected: Access denied;
4

1 回答 1

0

也许您的 sasl_path 不正确。

您可以尝试添加类似

smtpd_sasl_path = /var/spool/postfix/private/auth

到你的配置文件。

于 2014-01-16T09:39:46.887 回答