diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2021-08-26 23:53:14 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2021-08-26 23:53:14 +0200 |
commit | 771a80b7c0f7976308baae3667d468a5fa7cc8cc (patch) | |
tree | 92c55d9c0206e4372844252700fd6c8aca51e6f9 | |
parent | a2fcf70bd64955d40f72b57a446b0714d9bfb1d6 (diff) | |
download | fetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.tar.gz fetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.tar.bz2 fetchmail-771a80b7c0f7976308baae3667d468a5fa7cc8cc.zip |
imap.c: one FIXME for command continuation requests
-rw-r--r-- | imap.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |