From: Timo Sirainen Date: Thu, 22 Jul 2004 13:33:34 +0000 (+0300) Subject: POP3 CAPA command shouldn't return "AUTH=" in SASL reply. Patch by Andrey X-Git-Tag: 1.1.alpha1~3761 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e35a97190c5cc7812408f9cf43535279e3678c8b;p=thirdparty%2Fdovecot%2Fcore.git POP3 CAPA command shouldn't return "AUTH=" in SASL reply. Patch by Andrey Panin --HG-- branch : HEAD --- diff --git a/src/pop3-login/client-authenticate.c b/src/pop3-login/client-authenticate.c index 6a0e26068a..d47bd90904 100644 --- a/src/pop3-login/client-authenticate.c +++ b/src/pop3-login/client-authenticate.c @@ -37,7 +37,6 @@ int cmd_capa(struct pop3_client *client, const char *args __attr_unused__) if (mech[i].advertise && (client->secured || !mech[i].plaintext)) { str_append_c(str, ' '); - str_append(str, "AUTH="); str_append(str, mech[i].name); } }