Can you delete emails with imaplib? If so how?
|
|
Use the store method (of the Gmail's implementation of IMAP has subtly different semantics, by default, but if you want you can tweak it to behave much more like a traditional IMAP implementation (where the above sequence works) -- basically you have to enable the "Advanced IMAP Controls" lab, then follow the instructions at the URL I gave to get exactly the IMAP semantics you desire (physically deleting rather than archiving "deleted" mails, waiting or not for |
|||
|
|
|
Deleting an email over IMAP is performed in two phases:
( |
|||
|
|
imap.uid('STORE', list_of_msgno , '+FLAGS', '(\Deleted)') i.e imap.uid('STORE', '2 ,4 , 9 ,12' , '+FLAGS', '(\Deleted)') |
||||
|
|