Displaying 2 results from an estimated 2 matches for "client_mail_data_max_inmemory_size".
2011 Jun 09
1
Converting CLIENT_MAIL_DATA_MAX_INMEMORY_SIZE to a configurable?
...:)
So, am I right that the following constant would be needed to be
converted into a configurable setting and the task is done?
static int
client_input_add(struct client *client, const unsigned char *data,
size_t size)
{
if (client->state.mail_data->used + size <=
CLIENT_MAIL_DATA_MAX_INMEMORY_SIZE &&
client->state.mail_data_output == NULL) {
buffer_append(client->state.mail_data, data, size);
return 0;
} else {
return client_input_add_file(client, data, size);
}
}
It could be defaulted to 128k, b...
2010 May 17
2
dovecot2beta5 lmtp
Hello,
recently I inspected the sourcecode of the lmtp server. I searched for changes
that would add return-path header.
( http://www.dovecot.org/list/dovecot/2010-February/046401.html )
But I found, that all mails are spooled via files in /tmp.
( dovecot2/srv/lmtp/commands.c ~line 695 )
has somebody experiences while delivering huge ammount of mail via
dovecot2 lmtp service?
- is it