struct sql_dict *dict;
pool_t pool;
- pool = pool_alloconly_create("sql dict", 1024);
+ pool = pool_alloconly_create("sql dict", 2048);
dict = p_new(pool, struct sql_dict, 1);
dict->pool = pool;
dict->dict = *driver;
struct mailbox_list *list;
pool_t pool;
- pool = pool_alloconly_create("shared list", 256);
+ pool = pool_alloconly_create("shared list", 1024);
list = p_new(pool, struct mailbox_list, 1);
*list = shared_mailbox_list;
list->pool = pool;
struct shared_storage *storage;
pool_t pool;
- pool = pool_alloconly_create("shared storage", 256);
+ pool = pool_alloconly_create("shared storage", 1024);
storage = p_new(pool, struct shared_storage, 1);
storage->storage = shared_storage;
storage->storage.pool = pool;
struct quota_settings *quota_set;
pool_t pool;
- pool = pool_alloconly_create("quota settings", 256);
+ pool = pool_alloconly_create("quota settings", 1024);
quota_set = p_new(pool, struct quota_settings, 1);
quota_set->pool = pool;
quota_set->test_alloc = quota_default_test_alloc;