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.
feedback
|
|
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. | |||
|
feedback
|