POP3, testing via Telnet
From FreeBSDwiki
(Difference between revisions)
Line 1: | Line 1: | ||
− | |||
ph34r# '''telnet localhost 110''' | ph34r# '''telnet localhost 110''' | ||
Trying 127.0.0.1... | Trying 127.0.0.1... | ||
Line 18: | Line 17: | ||
Confirmed - the [[POP3]] server answers connections, authenticates users, and can access its mail store - in this case, we can see that there is a message queued up and waiting for delivery. (Note that frequently you may NOT see any messages in the queue on a POP3 server, as most organizations using POP3 expect users to download their mail and delete it as soon as they have.) | Confirmed - the [[POP3]] server answers connections, authenticates users, and can access its mail store - in this case, we can see that there is a message queued up and waiting for delivery. (Note that frequently you may NOT see any messages in the queue on a POP3 server, as most organizations using POP3 expect users to download their mail and delete it as soon as they have.) | ||
+ | |||
+ | ==See Also== | ||
+ | [[Daemons, testing via Telnet]] | ||
+ | |||
+ | [[IMAP, testing via Telnet]] | ||
+ | |||
+ | [[SMTP, testing via Telnet]] | ||
+ | |||
+ | [[HTTP, testing via Telnet]] | ||
+ | |||
+ | [[Category:FreeBSD for Servers]] [[Category:Common Tasks]] |
Revision as of 13:59, 29 December 2008
ph34r# telnet localhost 110 Trying 127.0.0.1... Connected to localhost.localdomain. Escape character is '^]'. +OK dovecot ready. USER postmaster@mail.getsdeliveredhere.net +OK PASS thisismypassword +OK Logged in. LIST +OK 1 messages: 1 354 . QUIT +OK Logging out. Connection closed by foreign host.
Confirmed - the POP3 server answers connections, authenticates users, and can access its mail store - in this case, we can see that there is a message queued up and waiting for delivery. (Note that frequently you may NOT see any messages in the queue on a POP3 server, as most organizations using POP3 expect users to download their mail and delete it as soon as they have.)