dovecot-2.0: imap: If CAPABILITY was used before login, "Logged ...

dovecot at dovecot.org dovecot at dovecot.org
Mon Jun 1 22:13:13 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/02679d365af7
changeset: 9429:02679d365af7
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Jun 01 15:13:08 2009 -0400
description:
imap: If CAPABILITY was used before login, "Logged in" was missing OK prefix.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/imap/main.c |    2 +-

diffs (12 lines):

diff -r 36311318a958 -r 02679d365af7 src/imap/main.c
--- a/src/imap/main.c	Mon Jun 01 14:37:18 2009 -0400
+++ b/src/imap/main.c	Mon Jun 01 15:13:08 2009 -0400
@@ -111,7 +111,7 @@ static void client_add_input(struct clie
 		o_stream_cork(client->output);
 		client_send_line(client, t_strconcat("* CAPABILITY ",
 			str_c(client->capability_string), NULL));
-		client_send_line(client, t_strconcat(tag, " Logged in", NULL));
+		client_send_line(client, t_strconcat(tag, " OK Logged in", NULL));
 		o_stream_uncork(client->output);
 	} else {
 		client_send_line(client, t_strconcat(


More information about the dovecot-cvs mailing list