net_set_nonblock(fd, TRUE);
- pool = pool_alloconly_create("server connection", 256);
+ pool = pool_alloconly_create("server connection", 512);
conn = p_new(pool, struct server_connection, 1);
conn->pool = pool;
struct smtp_client_connection *conn;
pool_t pool;
- pool = pool_alloconly_create("smtp client connection", 512);
+ pool = pool_alloconly_create("smtp client connection", 2048);
conn = p_new(pool, struct smtp_client_connection, 1);
conn->refcount = 1;
conn->pool = pool;
struct smtp_client_transaction_rcpt *rcpt;
pool_t pool;
- pool = pool_alloconly_create("smtp transaction rcpt", 256);
+ pool = pool_alloconly_create("smtp transaction rcpt", 512);
rcpt = p_new(pool, struct smtp_client_transaction_rcpt, 1);
rcpt->pool = pool;
rcpt->trans = trans;
struct smtp_client_transaction *trans;
pool_t pool;
- pool = pool_alloconly_create("smtp transaction", 512);
+ pool = pool_alloconly_create("smtp transaction", 4096);
trans = p_new(pool, struct smtp_client_transaction, 1);
trans->refcount = 1;
trans->pool = pool;
pool_unref(&parser->reply_pool);
i_zero(&parser->state);
- parser->reply_pool = pool_alloconly_create("smtp_reply", 256);
+ parser->reply_pool = pool_alloconly_create("smtp_reply", 1024);
parser->state.reply = p_new(parser->reply_pool, struct smtp_reply, 1);
p_array_init(&parser->state.reply_lines, parser->reply_pool, 8);
struct smtp_server_command *cmd;
pool_t pool;
- pool = pool_alloconly_create("smtp_server_command", 256);
+ pool = pool_alloconly_create("smtp_server_command", 1024);
cmd = p_new(pool, struct smtp_server_command, 1);
cmd->context.pool = pool;
cmd->context.cmd = cmd;
struct smtp_server_connection *conn;
pool_t pool;
- pool = pool_alloconly_create("smtp server", 512);
+ pool = pool_alloconly_create("smtp server", 1024);
conn = p_new(pool, struct smtp_server_connection, 1);
conn->pool = pool;
conn->refcount = 1;
string_t *id;
/* create new transaction */
- pool = pool_alloconly_create("smtp server transaction", 512);
+ pool = pool_alloconly_create("smtp server transaction", 4096);
trans = p_new(pool, struct smtp_server_transaction, 1);
trans->pool = pool;
trans->conn = conn;