メールアドレスの接続確認をtelnetで行う方法

メールアドレスを作成したら、パスワードが正しいものかどうか知りたい時がある。

そのような時、いちいちメールソフトにアカウントを設定していたら面倒なので

telnet POPサーバ 110

とtelnetを利用して、

USER アカウント

PASS パスワード

を続けて打ち込んでいけばいい。
[サンプル画面]

[root@localhost test]# telnet 999.999.999 110
Trying 999.999.999.999…
Connected to 999.999.999.999 (999.999.999).
Escape character is '^]’.
+OK Dovecot ready.
USER test@example.com
+OK
PASS passworddesu
+OK Logged in.

終了なら
QUIT
+OK Logging out.
Connection closed by foreign host.