From: Timo Sirainen Date: Wed, 29 Jun 2016 13:34:11 +0000 (+0300) Subject: lmtp: If anvil lookup fails, ignore lmtp_user_concurrency_limit X-Git-Tag: 2.3.0.rc1~3392 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3edfbca796edb8f1efeb48da916e109850adfc0f;p=thirdparty%2Fdovecot%2Fcore.git lmtp: If anvil lookup fails, ignore lmtp_user_concurrency_limit Previously it was randomly allowing or disallowing the client. --- diff --git a/src/lmtp/commands.c b/src/lmtp/commands.c index f97ea9fc9f..2446a6512e 100644 --- a/src/lmtp/commands.c +++ b/src/lmtp/commands.c @@ -608,7 +608,7 @@ static void rcpt_anvil_lookup_callback(const char *reply, void *context) struct mail_recipient *rcpt = context; struct client *client = rcpt->client; const struct mail_storage_service_input *input; - unsigned int parallel_count; + unsigned int parallel_count = 0; i_assert(rcpt->anvil_query != NULL);