aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2021-08-26 23:53:14 +0200
committerMatthias Andree <matthias.andree@gmx.de>2021-08-26 23:53:14 +0200
commit771a80b7c0f7976308baae3667d468a5fa7cc8cc (patch)
tree92c55d9c0206e4372844252700fd6c8aca51e6f9 /imap.c
parenta2fcf70bd64955d40f72b57a446b0714d9bfb1d6 (diff)
downloadfetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.tar.gz
fetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.tar.bz2
fetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.zip
imap.c: one FIXME for command continuation requests
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c3
1 files changed, 3 insertions, 0 deletions
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);