我设置了服务器来接收电子邮件,并且希望能够通过 POP3 阅读电子邮件。
检查日志 /var/log/mail.log 时,我可以看到电子邮件到达。
如果我以服务器上的用户身份登录,我可以通过输入以下命令来查看电子邮件
bob@september:~$ mail
Mail version 8.1.2 01/15/2001. Type ? for help.
"/var/mail/bob": 2 messages 2 unread
>U 1 [email protected] Sun Feb 9 16:29 107/5813 test
U 2 [email protected] Sun Feb 9 16:40 107/5812 test
&
我确实看到了这些电子邮件。
当我尝试使用配置为 POP3 访问服务器的 Outlook 检索电子邮件时,什么也没有出现。如果我使用 POP3 协议,情况也是如此。
{20-02-10 18:37}september:~ dude% telnet localhost 110
Trying ::1...
Connected to localhost.
Escape character is '^]'.
+OK Dovecot (Debian) ready.
USER bob
+OK
PASS bobspassword
+OK Logged in.
LIST
+OK 0 messages:
.
QUIT
+OK Logging out.
MTA 是 postfix
MDA 是 dovecot
我做错了什么?