我从Dovecot得到了以下错误。我试过搜索答案,但没有找到解决方案。
我得到的错误如下。
Apr 4 03:03:44 usve75539 dovecot: pop3-login: Login: user=<peter>, method=PLAIN, rip=xxxx, lip=xxxx, mpid=4148, TLS, session=<NG8G+p8vkQB4FsJg>
Apr 4 03:03:44 usve75539 dovecot: pop3(peter): Error: Couldn't open INBOX: Mailbox doesn't allow inferior mailboxes
Apr 4 03:03:44 usve75539 dovecot: pop3(peter): Couldn't open INBOX top=0/0, retr=0/0, del=0/0, size=0
Apr 4 03:03:51 usve75539 dovecot: pop3-login: Disconnected (auth failed, 1 attempts in 4 secs): user=<peter@xyz.com>, method=PLAIN, rip=xxx, lip=xxx, TLS, session=<lW4r+p8vlAB4FsJg>猜测这与pam身份验证有关。
Apr 4 05:42:07 usve75539 auth: pam_unix(pop3:auth): check pass; user unknown
Apr 4 05:42:07 usve75539 auth: pam_unix(pop3:auth): authentication failure; logname= uid=0 euid=0 tty=dovecot ruser=peter@xyz.com rhost=xxx好的,现在看来我需要/etc/pam.d/pop3 3中的内容。
任何帮助都会很好。提前谢谢。
发布于 2021-09-28 17:06:28
解决方案可能取决于您如何配置mail_location属性。例如,如果使用mbox存储选项,则这是一个正式的解决方案:
# Trick mbox configuration which allows a mail folder which contains both
# messages and sub-folders
mail_location = mbox:~/mail:LAYOUT=maildir++:INDEX=~/mail/index:CONTROL=~/mail/control但是,如果您使用的是maildir,文档似乎假定子文件夹(“劣质邮箱”)是允许的。。但是其他人在这个问题上做了工作。:
mail_location = maildir:~/Maildir:LAYOUT=fshttps://serverfault.com/questions/767937
复制相似问题