]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Use a larger initial "mail user" pool.
authorTimo Sirainen <tss@iki.fi>
Fri, 15 May 2009 20:12:43 +0000 (16:12 -0400)
committerTimo Sirainen <tss@iki.fi>
Fri, 15 May 2009 20:12:43 +0000 (16:12 -0400)
--HG--
branch : HEAD

src/lib-storage/mail-user.c

index 97f318773c49b39aabab0a3c3d3d8cef50321a35..0113528fa07e200d1ad553df10b343ae5203921d 100644 (file)
@@ -37,7 +37,7 @@ struct mail_user *mail_user_alloc(const char *username,
        i_assert(username != NULL);
        i_assert(*username != '\0');
 
-       pool = pool_alloconly_create("mail user", 4096);
+       pool = pool_alloconly_create("mail user", 8192);
        user = p_new(pool, struct mail_user, 1);
        user->pool = pool;
        user->refcount = 1;