Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
Basic
# Connect to POP3 mail server
telnet <TARGET> 110
Sample Output:
TO-DO
# Send cmd after +OK
USER <USER>
Sample Output:
TO-DO
PASS <PASSWORD>
Sample Output:
TO-DO
# List all mails
LIST
Sample Output:
TO-DO
# Retrieve mail #1
RETR 1
Sample Output:
TO-DO
# Exit Ctrl + ], then
quit
Sample Output:
TO-DO