Skip to content

Commit

Permalink
pop3c: Increased command timeout from 30s to 5mins.
Browse files Browse the repository at this point in the history
Possibly should be made configurable, but use this for now.
  • Loading branch information
sirainen committed Jan 26, 2016
1 parent 9abc6ac commit 9999b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-storage/index/pop3c/pop3c-client.c
Expand Up @@ -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 */
Expand Down

0 comments on commit 9999b04

Please sign in to comment.