Skip to content

Instantly share code, notes, and snippets.

@colemanjp
Created March 29, 2011 13:03
Show Gist options
  • Save colemanjp/892309 to your computer and use it in GitHub Desktop.
Save colemanjp/892309 to your computer and use it in GitHub Desktop.
imap pop login over telnet
IMAP:
telnet localhost 143
a01 login "username" "password"
a01 list "imap directory" "*"
a01 logout
POP:
telnet localhost 110
user "username"
pass "password"
quit
IMAP/POP over SSL:
openssl s_client -connect hostname:993
POP over SSL is 995
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment