From 771a80b7c0f7976308baae3667d468a5fa7cc8cc Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Thu, 26 Aug 2021 23:53:14 +0200 Subject: imap.c: one FIXME for command continuation requests --- imap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/imap.c b/imap.c index 82f435f4..b5f9e086 100644 --- a/imap.c +++ b/imap.c @@ -207,6 +207,9 @@ static int imap_response(int sock, char *argbuf, struct RecvSplit *rs) if (islower((unsigned char)*cp)) *cp = toupper((unsigned char)*cp); + /* FIXME: does not look for or handle command continuation requests, + * i. e. the token "+" instead of tag or "*" */ + /* untagged responses start with "* " */ if (buf[0] == '*' && buf[1] == ' ') { ok = imap_untagged_response(sock, buf); -- cgit v1.2.3