我在我的邮件服务器上与Dovecot (auth/LMTP)一起使用后缀。一切正常,但我注意到日志文件中每天都有几个警告:
postfix/smtpd[4169]: warning: unknown[MY.HOME.IP]: SASL LOGIN authentication aborted
dovecot: auth: Warning: auth client 0 disconnected with 1 pending requests: EOF
是什么引起了这个警告?此警告是否为服务器或客户端(Apple Mail)问题?
发布于 2015-01-24 04:11:59
错误日志意味着客户端在进程连接到dovecot服务后中止SASL身份验证过程。
这里是SASL登录事务从这一页的示例。
S: 220 esmtp.example.com ESMTP
C: ehlo client.example.com
S: 250-esmtp.example.com
S: 250-PIPELINING
S: 250-8BITMIME
S: 250-SIZE 255555555
S: 250 AUTH LOGIN PLAIN CRAM-MD5
C: auth login
S: 334 VXNlcm5hbWU6
C: avlsdkfj
S: 334 UGFzc3dvcmQ6
C: lkajsdfvlj
S: 535 authentication failed (#5.7.1)
客户端发布auth login
后,需要在两个单独的事务中提供用户和密码。客户端可以断开连接或发送‘*’命令,以中止auth login
与服务器响应之间的连接(535身份验证失败)状态。发生这种情况时:
SASL LOGIN authentication aborted
断开连接auth client 0 disconnected with 1 pending requests: EOF
断开连接你的服务器很好。您需要跟踪谁给连接到您的服务器的客户端发送邮件。除非你的客户抱怨(S)他不能发电子邮件,没有什么可担心的。
https://serverfault.com/questions/661826
复制相似问题