From: Timo Sirainen Date: Tue, 20 Jul 2010 12:00:08 +0000 (+0100) Subject: lmtp: Increased client idle timeout to 5 minutes. X-Git-Tag: 2.0.rc3~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=425706feaa1e1f10a61bb126438bea5261d1880e;p=thirdparty%2Fdovecot%2Fcore.git lmtp: Increased client idle timeout to 5 minutes. Some MTAs can spend a while doing DNS lookups during the LMTP session. --- diff --git a/src/lmtp/client.c b/src/lmtp/client.c index 123d5d1252..8039dd239b 100644 --- a/src/lmtp/client.c +++ b/src/lmtp/client.c @@ -22,7 +22,7 @@ #include -#define CLIENT_IDLE_TIMEOUT_MSECS (1000*60) +#define CLIENT_IDLE_TIMEOUT_MSECS (1000*60*5) #define CLIENT_MAX_INPUT_SIZE 4096 static struct client *clients = NULL;