Telnet 返回无法识别的命令

Telnet 返回无法识别的命令

也许有人可以解释如何使用 Telnet 在另一台装有 Windows 2008 的机器上测试虚拟 SMTP 服务器?

我尝试了下面的命令并收到unrecognized command错误。(实际服务器 deomain 被 xxxxx 替换)

Telnet smtp.xxxxx.com 25
220 xxxxx.com Microsoft ESMTP MAIL Service, Version: 7.0.6002.18222 rea
dy at  Tue, 23 Oct 2012 15:57:18 +0300
FROM: [email protected]
500 5.3.3 Unrecognized command

答案1

您的语法需要以 helo dominaname.com 开头。示例如下。确保正确使用空格并在末尾输入句号。

    telnet xxx.domainname.com 25
    helo domainname.com
    mail from: [email protected] 
    rcpt to:[email protected] 
    data 

    to: [email protected]
    from: [email protected]    
    Subject:This is a test

    Testing

    .

如果你懒惰就使用http://mxtoolbox.com/diagnostic.aspx

假设它是一个外部服务器。

相关内容