]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Use larger field_pool size by default.
authorTimo Sirainen <tss@iki.fi>
Tue, 20 Jul 2004 17:55:03 +0000 (20:55 +0300)
committerTimo Sirainen <tss@iki.fi>
Tue, 20 Jul 2004 17:55:03 +0000 (20:55 +0300)
--HG--
branch : HEAD

src/lib-index/mail-cache.c

index add3302b559a370c99bd712a5099db6a8348546f..98b9ea569e7fcfb67f06201f50551756c5c195e8 100644 (file)
@@ -234,7 +234,7 @@ struct mail_cache *mail_cache_open_or_create(struct mail_index *index)
        cache = i_new(struct mail_cache, 1);
        cache->index = index;
        cache->fd = -1;
-        cache->field_pool = pool_alloconly_create("Cache fields", 512);
+        cache->field_pool = pool_alloconly_create("Cache fields", 1024);
        cache->field_name_hash =
                hash_create(default_pool, cache->field_pool, 0,
                            strcase_hash, (hash_cmp_callback_t *)strcasecmp);