Page 1 of 1

IMAP Gmail Sent Folder

PostPosted:Tue Jan 28, 2014 10:53 pm
by Jaydoc
Guys, how do I download a gmail folder other than Inbox (IMAP)?

I would like to download a copy of everything in a gmail account, but it seems Inbox is the only option.

To keep it simple: I want Inbox and Sent folder/tag...How is this done?

What would be great is if I could download the "all mail" folder...is that possible?



Thanks

Re: IMAP Gmail Sent Folder

PostPosted:Wed Jan 29, 2014 6:35 pm
by jllort
All google mails are tagged, for example any received mail is tagged as INBOX. In similar way you should get tagged the SENT

Take a look this url https://developers.google.com/gmail/imap_extensions ( google search -> google imap tags )
Code: Select all
LIST (\HasNoChildren) "/" "INBOX"
* LIST (\Noselect \HasChildren) "/" "[Gmail]"
* LIST (\HasNoChildren \All) "/" "[Gmail]/All Mail"
* LIST (\HasNoChildren \Drafts) "/" "[Gmail]/Drafts"
* LIST (\HasNoChildren \Important) "/" "[Gmail]/Important"
* LIST (\HasNoChildren \Sent) "/" "[Gmail]/Sent Mail"
* LIST (\HasNoChildren \Junk) "/" "[Gmail]/Spam"
* LIST (\HasNoChildren \Flagged) "/" "[Gmail]/Starred"
* LIST (\HasNoChildren \Trash) "/" "[Gmail]/Trash"