From 3edfbca796edb8f1efeb48da916e109850adfc0f Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 29 Jun 2016 16:34:11 +0300 Subject: [PATCH] lmtp: If anvil lookup fails, ignore lmtp_user_concurrency_limit Previously it was randomly allowing or disallowing the client. --- src/lmtp/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3