]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: Increased initial client pool size.
authorTimo Sirainen <tss@iki.fi>
Tue, 15 Dec 2009 22:32:32 +0000 (17:32 -0500)
committerTimo Sirainen <tss@iki.fi>
Tue, 15 Dec 2009 22:32:32 +0000 (17:32 -0500)
--HG--
branch : HEAD

src/lmtp/client.c

index 1f48a153852a1c82b7b463954179fb8238bc745f..a7b8a8afeec04e87901acc3b0cb3711d65d6719a 100644 (file)
@@ -209,7 +209,7 @@ struct client *client_create(int fd_in, int fd_out,
        net_set_nonblock(fd_in, TRUE);
        net_set_nonblock(fd_out, TRUE);
 
-       pool = pool_alloconly_create("lmtp client", 1024);
+       pool = pool_alloconly_create("lmtp client", 2048);
        client = p_new(pool, struct client, 1);
        client->pool = pool;
        client->fd_in = fd_in;