110,995 - POP3
# Connect
telnet <ip> 110
openssl s_client -connect <ip>:995
# Provide your username (email address)
USER <username>
# Provide your password
PASS <password>
# List available email messages (number and size)
LIST
# Retrieve the content of a specific message (e.g., message 1)
RETR 1
# (Optional) Delete a specific message from the server
DELE 1
# Close the connection
QUITLast updated