]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: Increased client idle timeout to 5 minutes.
authorTimo Sirainen <tss@iki.fi>
Tue, 20 Jul 2010 12:00:08 +0000 (13:00 +0100)
committerTimo Sirainen <tss@iki.fi>
Tue, 20 Jul 2010 12:00:08 +0000 (13:00 +0100)
Some MTAs can spend a while doing DNS lookups during the LMTP session.

src/lmtp/client.c

index 123d5d12525551add49e3780e7883332dc2e6a85..8039dd239b48c394964d33f4df11ca6823a166a1 100644 (file)
@@ -22,7 +22,7 @@
 
 #include <unistd.h>
 
-#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;