Created
March 15, 2016 19:04
-
-
Save mstaack/d5c78e078e404595bf3c to your computer and use it in GitHub Desktop.
imap commands
This file contains hidden or 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
fetchmail: IMAP< * OK GroupWise IMAP4rev1 Server Ready | |
fetchmail: IMAP> A0001 CAPABILITY | |
fetchmail: IMAP< * CAPABILITY IMAP4rev1 AUTH=XGWTRUSTEDAPP XGWEXTENSIONS | |
fetchmail: IMAP< A0001 OK CAPABILITY completed | |
fetchmail: IMAP> A0002 LOGIN "user1" * | |
fetchmail: IMAP< A0002 OK LOGIN completed | |
fetchmail: IMAP> A0003 SELECT "INBOX" | |
fetchmail: IMAP< * 260 EXISTS | |
fetchmail: IMAP< * 1 RECENT | |
fetchmail: IMAP< * OK [UNSEEN 260] | |
fetchmail: IMAP< * OK [UIDVALIDITY 1301053702] | |
fetchmail: IMAP< * OK [UIDNEXT 545] | |
fetchmail: IMAP< * FLAGS (Answered Flagged Deleted Draft Seen) | |
fetchmail: IMAP< * OK [PERMANENTFLAGS (Answered Flagged Deleted Draft Seen *)] | |
fetchmail: IMAP< A0003 OK [READ-WRITE] SELECT completed | |
fetchmail: IMAP> A0004 SEARCH UNSEEN NOT DELETED | |
fetchmail: IMAP< * SEARCH 260 | |
fetchmail: IMAP< A0004 OK SEARCH completed | |
260 messages (259 seen) for user1 at host_address. | |
skipping message user1@host_address:1 not flushed | |
{ ... etc ... } | |
skipping message user1@host_address:258 not flushed | |
skipping message user1@host_address:259 not flushed | |
fetchmail: IMAP> A0005 FETCH 260 RFC822.SIZE | |
fetchmail: IMAP< * 260 FETCH (RFC822.SIZE 23853) | |
fetchmail: IMAP< A0005 OK FETCH completed | |
fetchmail: IMAP> A0006 FETCH 260 RFC822.HEADER | |
fetchmail: IMAP< * 260 FETCH (RFC822.HEADER {367} | |
fetchmail: IMAP< ) | |
fetchmail: IMAP< A0006 OK FETCH completed | |
fetchmail: IMAP> A0007 FETCH 260 BODY.PEEK[TEXT] | |
fetchmail: IMAP< * 260 FETCH (BODY[TEXT] {23486} | |
(23486 body octets) ********************* | |
fetchmail: IMAP< A0007 OK FETCH completed | |
fetchmail: IMAP> A0008 STORE 260 +FLAGS (Seen) | |
fetchmail: IMAP< * 260 FETCH (FLAGS (Seen Recent)) | |
fetchmail: IMAP< A0008 OK STORE completed | |
fetchmail: IMAP> A0009 LOGOUT | |
fetchmail: IMAP< * BYE IMAP4rev1 Server Disconnect | |
fetchmail: IMAP< A0009 OK LOGOUT completed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment