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.2.25.rc1~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=20a3cd140ef8f1087b23ba254f9ba80b574e92c4;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 71ca799c41..b65c1bf786 100644 --- a/src/lmtp/commands.c +++ b/src/lmtp/commands.c @@ -600,7 +600,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);