使用终端检查 pop 邮件帐户

使用终端检查 pop 邮件帐户

unix 中有没有命令可以使用终端检查 pop3 帐户?我的意思是,输入 pop3 帐户的服务器/用户名/密码,然后查看用户名/密码是否正确?

答案1

您可以用来telnet连接到邮件服务器并进行通话POP3检查您的凭据:

$ telnet pop.gmx.net 110
Trying 212.227.17.185...
Connected to pop.gmx.net.
Escape character is '^]'.
+OK POP server ready H migmx028 0MAbjW-1YwF4D0ml8-00BiVl
USER [email protected]
+OK password required for user "[email protected]"
PASS typeyourpassword
-ERR Error retrieving your GMX emails. Your connection is not encrypted. Enable SSL in your mail program. Instructions: https://ssl.gmx.net
Connection closed by foreign host.

嗯,这失败了,因为大多数邮件服务器需要SSL/TLS 加密会话如今。因此,telnet您可以使用socat

$ socat - OPENSSL:pop.gmx.net:995
+OK POP server ready H migmx113 0MC062-1Yzese0KO7-00AVNE
USER [email protected]
+OK password required for user "[email protected]"
PASS typeyourpassword
+OK mailbox "[email protected]" has 13518 messages (191718918 octets) H migmx113

如果您输入错误的密码,服务器可能会显示如下内容:

-ERR authentication failed

或者socat你可能已经openssl闲置了:

$ openssl s_client -quiet -connect pop.gmx.net:995
depth=2 C = DE, O = Deutsche Telekom AG, OU = T-TeleSec Trust Center, CN = Deutsche Telekom Root CA 2
verify error:num=19:self signed certificate in certificate chain
verify return:0
+OK POP server ready H migmx108 0MWpjO-1YiwnK3ZfP-00XoK

答案2

如果您想检查您的 pop3 邮件帐户,请查看以下终端邮件客户端:

  1. 松树
  2. 高山
  3. 杂种狗

还有更多,但这些是我所知道的最受欢迎的。

答案3

我建议杂种。为什么?因为支持tls甚至kerberos进行单点登录如果使用单点登录放在.muttrc上

set imap_authenticators="gssapi"

相关内容