端末を使用してポップメールアカウントを確認しています


8

ターミナルを使用してpop3アカウントをチェックするUNIXのコマンドはありますか?つまり、pop3アカウントのサーバー/ユーザー名/パスワードを入力して、ユーザー名/パスワードが正しいかどうかを確認しますか?


1
getmailも動作します。
sikerbela

回答:


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

@roaima良い発言。telnetopenssl例を追加しました。
FloHimself 2015年

5

pop3メールアカウントを確認する場合は、次のターミナルメールクライアントを確認してください。

  1. 高山
  2. マット

他にもたくさんありますが、私が知っている最も人気のあるものです。


0

muttをお勧めします。理由:シングルサインオンでtlsとkerberosもサポートするため、シングルサインオンを使用する場合は.muttrcをオンにしてください

set imap_authenticators="gssapi"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.