Using telnet to test POP server

Using telnet (or putty) it’s possible to some simple tests against a POP server. By no means exhaustive, it can give you insights in where to start troubleshooting.

First, using telnet and open a connection the remote POP server

telnet mailserver 110

Where mailserver is the mail server you want to connect to. Note that port 110 is the default port for POP, but could be different depending on your servers settings.

Once connected, use USER and PASS to login.

[root@ms1 ~] # telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
+OK POP3 localhost v2001.78rh server ready
USER username
+OK User name accepted, password please
PASS password
+OK Mailbox open, 1 messages
QUIT
+OK Sayonara
Connection closed by foreign host.

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

This entry was posted in tips. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>