使用终端检查弹出邮件帐户


8

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


1
getmail也可以。
sikerbela

Answers:


10

您可以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 spamaccount80@gmx.de
+OK password required for user "spamaccount80@gmx.de"
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 spamaccount80@gmx.de
+OK password required for user "spamaccount80@gmx.de"
PASS typeyourpassword
+OK mailbox "spamaccount80@gmx.de" 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

可能值得包含不带SSL的普通
ol'POP3

@roaima好话。我已经添加telnetopenssl例子。
FloHimself

5

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

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

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


0

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

set imap_authenticators="gssapi"
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.