从ssh测试Zoho Mail服务器

时间:2015-01-22 07:37:04

标签: email ssh mail-server zoho

我想确保我们的服务器能够使用Zoho的服务连接和发送电子邮件。如何通过连接到服务器ssh的终端进行纯粹的测试?

服务器的设置是Linux Ubuntu,但非常感谢平台无关的答案。

以下是Zoho的邮件服务器详细信息: https://www.zoho.com/mail/help/zoho-smtp.html

1 个答案:

答案 0 :(得分:2)

在端口25上连接到smtp.zoho.com以建立smtp连接并发送邮件。对于SSL / TLS连接,应使用openssl库建立smtp连接

用于简单的smtp连接

telnet smtp.zoho.com 25

用于SSL连接

openssl s_client -connect smtp.zoho.com:465

用于TLS连接

openssl s_client -starttls smtp -connect smtp.zoho.com:587 -crlf -ign_eof

希望这足以