我正在尝试使用 telnet 发送邮件。一切似乎都很好,但我没有收到邮件。
以下是我在 Debian 8 的终端中执行的操作:
telnet localhost smtp
220 simon ESMTP Exim 4.84_2 Tue, 07 Jun 2016 18:45:24 +0200
HELO 85.170.206.70
250 simon Hello localhost [::1]
mail from: [email protected]
250 OK
rcpt to: [email protected]
250 Accepted
data
354 Enter message, ending with "." on a line by itself
From: [email protected]
To: [email protected]
Subject: Test message
content
.
250 OK id=1bAK8U-0002ej-DJ
QUIT
正如您所看到的,我收到 SMTP 状态代码 250,但我从未收到任何邮件(即使在不需要的邮件文件夹中)。
我还用 RCPT 进行了测试:但没有结果。<[email protected]>
我究竟做错了什么?