diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-15 02:46:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-15 02:46:37 +0000 |
commit | a74182b892b0ab4f67c5bd7987fe5de9856dc436 (patch) | |
tree | 6526b585eda654f75c0787f009d7a0897d4dbf73 /imap.c | |
parent | 48731164d436f1dfec6e9acfa2a6bb09e98cfb81 (diff) | |
download | fetchmail-a74182b892b0ab4f67c5bd7987fe5de9856dc436.tar.gz fetchmail-a74182b892b0ab4f67c5bd7987fe5de9856dc436.tar.bz2 fetchmail-a74182b892b0ab4f67c5bd7987fe5de9856dc436.zip |
RFC2061 changes.
svn path=/trunk/; revision=882
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -259,9 +259,12 @@ static int imap_delete(FILE *sockfp, struct query *ctl, int number) /* expunges change the fetch numbers */ number -= deletecount; - /* use SILENT if possible as a minor throughput optimization */ + /* + * Use SILENT if possible as a minor throughput optimization. + * Note: this has been dropped from IMAP4rev1. + */ if ((ok = gen_transact(sockfp, - imap_version >= IMAP4 + imap_version == IMAP4 ? "STORE %d +FLAGS.SILENT (\\Deleted)" : "STORE %d +FLAGS (\\Deleted)", number))) |