POP3 (110-995)
Post Office Protocol.
Port
Interact
telnet <IP> 110
nc <IP> 110openssl s_client -connect <IP>:pop3s
openssl s_client -connect <IP>:995 -crlf -quiet USER <USER> Specifies the user
PASS <PASS> Login with password <PASS>
STAT List number of messages, total mailbox size
LIST List messages and sizes
RETR <ID> Show message <ID>
DELE <ID> Mark message <ID> for deletion
RSET Undo any changes
QUIT Logout (expunges messages if no RSET)
TOP msg n Show first n lines of message number msg
CAPA Get capabilitiesLast updated