aerc/worker
Simon Ser 089740758c worker/imap: use the IMAP connection from a single goroutine
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-04-29 09:49:22 -04:00
..
imap worker/imap: use the IMAP connection from a single goroutine 2019-04-29 09:49:22 -04:00
types worker/types: fix Worker.Callbacks race condition 2019-04-27 14:28:26 -04:00
worker.go worker/types: fix Worker.Callbacks race condition 2019-04-27 14:28:26 -04:00