From e35a97190c5cc7812408f9cf43535279e3678c8b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 22 Jul 2004 16:33:34 +0300 Subject: [PATCH] POP3 CAPA command shouldn't return "AUTH=" in SASL reply. Patch by Andrey Panin --HG-- branch : HEAD --- src/pop3-login/client-authenticate.c | 1 - 1 file changed, 1 deletion(-) 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); } } -- 2.47.3