143,993 - IMAP
# Connect
telnet <ip> 143
openssl s_client -connect <ip>:993
# Authenticate
a1 LOGIN <username> <password>
# List folders
a2 LIST "" "*"
# Select the inbox
a3 SELECT INBOX
# Fetch the full body of message 1
a4 FETCH 1 BODY[]
a5 LOGOUTLast updated