diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/camel-remote-store.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 6dd0ee9b3b..71c40ec9d6 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2002-04-04 Not Zed <NotZed@Ximian.com> + + * camel-remote-store.c (remote_connect): Reset the keepalive + timeout to 10 minutes rather than the 30 seconds I was using for + testing. + 2002-04-03 Dan Winship <danw@ximian.com> * camel-provider.h (CamelProvider): make service_cache be an array diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c index f91c28c26b..5f56b66fd4 100644 --- a/camel/camel-remote-store.c +++ b/camel/camel-remote-store.c @@ -272,7 +272,7 @@ remote_connect (CamelService *service, CamelException *ex) if (CRSC (store)->keepalive) { CamelSession *session = camel_service_get_session (CAMEL_SERVICE (store)); - store->timeout_id = camel_session_register_timeout (session, 30 * 1000 /* FIXME: 10 * 60 * 1000 */, + store->timeout_id = camel_session_register_timeout (session, 10 * 60 * 1000, timeout_cb, store); } |