# HG changeset patch # User Timo Sirainen # Date 1453815493 -7200 # Node ID b7e2d981519c6157f96810e5f69e36646d3a1477 # Parent b6dafead7c40f4a1296427fcfd0e7e9b2eac4116 pop3c: Increased command timeout from 30s to 5mins. Possibly should be made configurable, but use this for now. diff -r b6dafead7c40 -r b7e2d981519c src/lib-storage/index/pop3c/pop3c-client.c --- a/src/lib-storage/index/pop3c/pop3c-client.c Tue Jan 26 15:22:50 2016 +0200 +++ b/src/lib-storage/index/pop3c/pop3c-client.c Tue Jan 26 15:38:13 2016 +0200 @@ -20,7 +20,7 @@ #define POP3C_MAX_INBUF_SIZE (1024*32) #define POP3C_DNS_LOOKUP_TIMEOUT_MSECS (1000*30) #define POP3C_CONNECT_TIMEOUT_MSECS (1000*30) -#define POP3C_COMMAND_TIMEOUT_MSECS (1000*30) +#define POP3C_COMMAND_TIMEOUT_MSECS (1000*60*5) enum pop3c_client_state { /* No connection */