邮件服务器没有被TLS诊断工具拾取

我有mail.luken-tech.pl邮件服务器。 任何人都可以解释如何: https : //www.ssllabs.com/ssltest/analyze.html?d=mail.luken-tech.pl&hideResults=on显示“评估失败:无法连接到服务器”,这: http:/ / /www.checktls.com/perl/TestReceiver.pl给我“无法连接到服务器(原因:连接被拒绝)”。

但是这个:

openssl s_client -starttls smtp -connect mail.luken-tech.pl:587 -tls1 -ign_eof openssl s_client -starttls smtp -connect mail.luken-tech.pl:587 -tls1_1 -ign_eof openssl s_client -starttls smtp -connect mail.luken-tech.pl:587 -tls1_2 -ign_eof 

工作得很好,我的服务器一般似乎工作正常? :)为什么任何testing工具不能连接到我的smtp? 它困扰我,因为我configuration了一台服务器之前,我没有这样的事情。 我应该关心这个吗?

任何人都可以解释如何: https : //www.ssllabs.com/ssltest/analyze.html?d=mail.luken-tech.pl&hideResults=on显示“ 评估失败:无法连接到服务器

SSLLabs仅支持HTTPStesting 。 您的邮件服务器使用STARTTLS和SMTP协议。 错误消息确认了限制

 Ports other than 443 not supported 

http://www.checktls.com/perl/TestReceiver.pl给我“ 无法连接到服务器(原因:连接被拒绝)

这个testing将通过默认端口发送电子邮件到您的主机,即端口25,而不是您想要的端口587。 显然,服务器上的端口25已closures

 $ telnet mail.luken-tech.pl 25 Trying 91.196.50.126... telnet: connect to address 91.196.50.126: Connection refused telnet: Unable to connect to remote host 

如果你想testing,你可以使用你的邮件客户端(例如thunderbird),本地openssl(你已经完成了)或者swaks