I want to create a gmail client with the ability to view emails as conversations (threads). In imaplib, there is a method: IMAP4.thread(threading_algorithm, charset, search_criterion[, ...]) I think it could be the solution. Anybody has experience using it? Please give an example. Thanks.

link|improve this question
1  
You should add the labels 'python' and 'email' and remove 'multithreading'. – jbrown Feb 24 '11 at 17:23
feedback

1 Answer

That method is simply a wrapper to the IMAP4rev1 extension THREAD command. Have a look at this link which describes how that IMAP command works: http://tools.ietf.org/search/rfc5256

However, I'm not sure that GMail actually implements the THREAD command. If it does, it should list 'THREAD=' among its capabilities.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.