Displaying 1 result from an estimated 1 matches for "client_input_add_file".
2011 Jun 09
1
Converting CLIENT_MAIL_DATA_MAX_INMEMORY_SIZE to a configurable?
...>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, but the user could set it "unlimited" (0
or -1, depending on the author's mood, 0 and/or -1 being unlimited, or 0
being 0, meaning don't even store a bit -doesn't really make sense to me).
LMTP is mostly prote...