From 09a13a1c0109c799abe66e4f89ad1a9d642a64de Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Tue, 24 Sep 2013 20:49:19 +0100 Subject: imap: Added clarification to the code about odd continuation responses --- lib/imap.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/imap.c') diff --git a/lib/imap.c b/lib/imap.c index 5d3a1a17e..9a845102a 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -336,7 +336,10 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len, return TRUE; } - /* Do we have a continuation response? */ + /* Do we have a continuation response? This should be a + symbol followed by + a space and optionally some text as per RFC-3501 for the AUTHENTICATE and + APPEND commands and as outlined in Section 4. Examples of RFC-4959 but + some e-mail servers ignore this and only send a single + instead. */ if((len == 3 && !memcmp("+", line, 1)) || (len >= 2 && !memcmp("+ ", line, 2))) { switch(imapc->state) { -- cgit v1.2.3