client->to_idle = timeout_add(CLIENT_IDLE_TIMEOUT_MSECS,
client_idle_timeout, client);
- client->command_pool = pool_alloconly_create("client command", 1024*12);
+ client->command_pool =
+ pool_alloconly_create(MEMPOOL_GROWING"client command", 1024*12);
client->user = user;
for (ns = user->namespaces; ns != NULL; ns = ns->next) {
void **sets;
if (settings_pool == NULL)
- settings_pool = pool_alloconly_create("imap settings", 2048);
+ settings_pool = pool_alloconly_create("imap settings", 4096);
else
p_clear(settings_pool);
void **sets;
if (settings_pool == NULL)
- settings_pool = pool_alloconly_create("pop3 settings", 1024);
+ settings_pool = pool_alloconly_create("pop3 settings", 4096);
else
p_clear(settings_pool);