-
-
Save ryardley/3aa7db163665b60a3b031025f5cac99e to your computer and use it in GitHub Desktop.
playing with gmail via telnet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -crlf -connect imap.gmail.com:993 | |
tag login [email protected] passwordhere | |
tag list "" "*" | |
tag select "inbox" | |
tag fetch 1:3 body[header] | |
tag fetch 3 body[header] | |
tag fetch 3 body[text] | |
tag fetch 2 all | |
tag fetch 2 fast | |
tag fetch 2 full | |
tag fetch 1 (body[header.fields (from to subject date)]) | |
tag fetch 2 rfc822.text | |
tag search subject "text here" | |
tag search text "text here" | |
tag search charset "utf-8" subject "text here" | |
tag examine inbox.label2 | |
tag select inbox.label2 | |
tag close | |
tag logout | |
http://bobpeers.com/technical/telnet_imap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment