From 425706feaa1e1f10a61bb126438bea5261d1880e Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 20 Jul 2010 13:00:08 +0100 Subject: [PATCH] lmtp: Increased client idle timeout to 5 minutes. Some MTAs can spend a while doing DNS lookups during the LMTP session. --- src/lmtp/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3