diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-06-27 23:52:28 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-08-05 13:08:43 +0200 |
commit | 604913239997dc85412f55d6f5de24507db1497a (patch) | |
tree | 1037185f37386ce0f54174c87d295d120fa634cd /imap.c | |
parent | e19fbae0fe0abe836a937a320275abbf1f9eac7a (diff) | |
download | fetchmail-604913239997dc85412f55d6f5de24507db1497a.tar.gz fetchmail-604913239997dc85412f55d6f5de24507db1497a.tar.bz2 fetchmail-604913239997dc85412f55d6f5de24507db1497a.zip |
Comment on EXISTS in response to EXPUNGE.
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -151,7 +151,9 @@ static int imap_untagged_response(int sock, const char *buf) oldcount--; /* We do expect an EXISTS response immediately * after this, so this updation of recentcount is - * just a precaution! */ + * just a precaution! + * XXX FIXME: per RFC 3501, 7.4.1. EXPUNGE Reponse + * on Page 73, an EXISTS response is not required */ if ((recentcount = count - oldcount) < 0) recentcount = 0; actual_deletions++; |