Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-02 | Don't send Done until finished fetching messages | Drew DeVault | |
2019-05-20 | Flesh out multipart switcher | Drew DeVault | |
2019-05-17 | s/aerc2/aerc/g | Drew DeVault | |
2019-04-29 | worker/imap: use the IMAP connection from a single goroutine | Simon Ser | |
Unfortunately, the IMAP protocol hasn't been designed to be used from multiple goroutines at the same time. For instance, if you fetch twice the same message from two different goroutines, it's not possible to tell whether the response is for one receiver or the other. For this reason, go-imap clients aren't safe to use from multiple goroutines. This commit changes the IMAP workers to be synchronous again (a command is executed only after the previous one has completed). To use IMAP from different threads, popular clients (e.g. Thunderbird) typically open multiple connections. | |||
2019-03-31 | Make message viewer real, part two | Drew DeVault | |
2019-03-31 | Rename FetchMessageBodies to FetchFullMessages | Drew DeVault | |
2019-03-31 | Make the message viewer real, part one | Drew DeVault | |
2019-03-31 | Don't parse mail in worker; send a reader instead | Drew DeVault | |
2019-03-31 | Pull BodyStructure up from IMAP worker | Drew DeVault | |
2019-03-29 | Add body fetching support code | Drew DeVault | |
2019-03-20 | Implement :delete-message | Drew DeVault | |
2019-03-14 | Display message subjects in message list | Drew DeVault | |