From: Timo Sirainen Date: Tue, 16 Nov 2010 19:32:00 +0000 (+0000) Subject: imap/pop3-login: Default vsz_limit=64 caused it to be unlimited, not 64 MB. X-Git-Tag: 2.0.8~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6aaf5a9d5d1488486ae7327ef002f60bce0323e;p=thirdparty%2Fdovecot%2Fcore.git imap/pop3-login: Default vsz_limit=64 caused it to be unlimited, not 64 MB. --- diff --git a/src/imap-login/imap-login-settings.c b/src/imap-login/imap-login-settings.c index 3672fb4d66..8e2bd35207 100644 --- a/src/imap-login/imap-login-settings.c +++ b/src/imap-login/imap-login-settings.c @@ -41,7 +41,7 @@ struct service_settings imap_login_service_settings = { .client_limit = 0, .service_count = 1, .idle_kill = 0, - .vsz_limit = 64, + .vsz_limit = 64*1024*1024, .unix_listeners = ARRAY_INIT, .fifo_listeners = ARRAY_INIT, diff --git a/src/pop3-login/pop3-login-settings.c b/src/pop3-login/pop3-login-settings.c index 10d11dfbe8..3a4343e988 100644 --- a/src/pop3-login/pop3-login-settings.c +++ b/src/pop3-login/pop3-login-settings.c @@ -41,7 +41,7 @@ struct service_settings pop3_login_service_settings = { .client_limit = 0, .service_count = 1, .idle_kill = 0, - .vsz_limit = 64, + .vsz_limit = 64*1024*1024, .unix_listeners = ARRAY_INIT, .fifo_listeners = ARRAY_INIT,