From: Stephan Bosch Date: Fri, 19 Oct 2018 09:24:35 +0000 (+0200) Subject: submission-login: Add the VRFY capability to the EHLO reply. X-Git-Tag: 2.3.9~1142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c673f4ff718998764e9048e76f9bcfdb43954e8a;p=thirdparty%2Fdovecot%2Fcore.git submission-login: Add the VRFY capability to the EHLO reply. The post-login service does it too. --- diff --git a/src/submission-login/client-authenticate.c b/src/submission-login/client-authenticate.c index 190fa73fa0..4e7b2959ba 100644 --- a/src/submission-login/client-authenticate.c +++ b/src/submission-login/client-authenticate.c @@ -63,6 +63,7 @@ static void cmd_helo_reply(struct submission_client *subm_client, if (client_is_tls_enabled(client) && !client->tls) smtp_server_reply_ehlo_add(reply, "STARTTLS"); smtp_server_reply_ehlo_add(reply, "PIPELINING"); + smtp_server_reply_ehlo_add(reply, "VRFY"); smtp_server_reply_ehlo_add_xclient(reply); } smtp_server_reply_submit(reply);