From 0ffa7bbbf0413facb844909d09760b2b42b47cba Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 30 Sep 2009 16:00:51 -0400 Subject: [PATCH] imap: Reduce command pool's initial size. --HG-- branch : HEAD --- src/imap/imap-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imap/imap-client.c b/src/imap/imap-client.c index 3dc4dabc0a..87522af7cf 100644 --- a/src/imap/imap-client.c +++ b/src/imap/imap-client.c @@ -56,7 +56,7 @@ struct client *client_create(int fd_in, int fd_out, struct mail_user *user, 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, -- 2.47.3