]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
imap-login: Changed CAPABILITY's tagged OK reply to say post-login capabilities have...
authorTimo Sirainen <tss@iki.fi>
Tue, 15 Mar 2011 19:53:21 +0000 (21:53 +0200)
committerTimo Sirainen <tss@iki.fi>
Tue, 15 Mar 2011 19:53:21 +0000 (21:53 +0200)
src/imap-login/client.c

index 261e72afb848ac7abec362add5fab8c380cc5998..f559e2bf4a1b195c069343d7b4442a97d77e255a 100644 (file)
@@ -94,7 +94,8 @@ static int cmd_capability(struct imap_client *imap_client)
                imap_client->client_ignores_capability_resp_code = TRUE;
        client_send_raw(client, t_strconcat(
                "* CAPABILITY ", get_capability(client), "\r\n", NULL));
-       client_send_line(client, CLIENT_CMD_REPLY_OK, "Capability completed.");
+       client_send_line(client, CLIENT_CMD_REPLY_OK,
+                        "Pre-login capabilities listed, post-login capabilities have more.");
        return 1;
 }