[*] Increment IMAP auth timeout

- More than 50% of auth errors we're seeing still seem to be geniune
timeouts. Increment the timeout to account for this.
This commit is contained in:
Juan Tejada 2017-01-24 11:35:46 -08:00
parent 8b3944d235
commit 6811a6f37e

View file

@ -23,7 +23,7 @@ const Capabilities = {
const ONE_HOUR_SECS = 60 * 60;
const SOCKET_TIMEOUT_MS = 30 * 1000;
const AUTH_TIMEOUT_MS = 15 * 1000;
const AUTH_TIMEOUT_MS = 30 * 1000;
class IMAPConnection extends EventEmitter {