dovecot-2.0: imap: Reduce command pool's initial size.

dovecot at dovecot.org dovecot at dovecot.org
Wed Sep 30 23:00:58 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/3441e6613ab4
changeset: 9956:3441e6613ab4
user:      Timo Sirainen <tss at iki.fi>
date:      Wed Sep 30 16:00:51 2009 -0400
description:
imap: Reduce command pool's initial size.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/imap/imap-client.c |    2 +-

diffs (12 lines):

diff -r 907e781f7999 -r 3441e6613ab4 src/imap/imap-client.c
--- a/src/imap/imap-client.c	Wed Sep 30 13:09:18 2009 -0400
+++ b/src/imap/imap-client.c	Wed Sep 30 16:00:51 2009 -0400
@@ -56,7 +56,7 @@ struct client *client_create(int fd_in, 
 				      client_idle_timeout, client);
 
 	client->command_pool =
-		pool_alloconly_create(MEMPOOL_GROWING"client command", 1024*12);
+		pool_alloconly_create(MEMPOOL_GROWING"client command", 1024*2);
 	client->user = user;
 
 	mail_namespaces_set_storage_callbacks(user->namespaces,


More information about the dovecot-cvs mailing list