]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
POP3 CAPA command shouldn't return "AUTH=" in SASL reply. Patch by Andrey
authorTimo Sirainen <tss@iki.fi>
Thu, 22 Jul 2004 13:33:34 +0000 (16:33 +0300)
committerTimo Sirainen <tss@iki.fi>
Thu, 22 Jul 2004 13:33:34 +0000 (16:33 +0300)
Panin

--HG--
branch : HEAD

src/pop3-login/client-authenticate.c

index 6a0e26068a43c6b041489a6b2500fd8c286692cd..d47bd90904b1fe6cc1c8c34d39f2c67eba387ad4 100644 (file)
@@ -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);
                }
        }