changeset 7100:4c6364f99ff0 HEAD

Idle timeout should have been 180 seconds, not 180 milliseconds.
author Timo Sirainen <tss@iki.fi>
date Fri, 04 Jan 2008 00:00:08 +0200
parents 3f5b7bebfd82
children 09556a64b4e5
files src/pop3-login/client.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/pop3-login/client.c	Thu Jan 03 23:46:04 2008 +0200
+++ b/src/pop3-login/client.c	Fri Jan 04 00:00:08 2008 +0200
@@ -27,7 +27,7 @@
 #define MAX_OUTBUF_SIZE 4096
 
 /* Disconnect client after idling this many milliseconds */
-#define CLIENT_LOGIN_IDLE_TIMEOUT_MSECS (3*60)
+#define CLIENT_LOGIN_IDLE_TIMEOUT_MSECS (3*60*1000)
 
 /* Disconnect client when it sends too many bad commands */
 #define CLIENT_MAX_BAD_COMMANDS 10