diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-13 07:40:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-13 07:40:54 +0000 |
commit | 54eac09811e33836fac4386ecaf8e2566c3e483f (patch) | |
tree | fb5c99a9c198bd44a9e7981b10670598a625a641 | |
parent | 5d3e7452933653fa80fcdb3b47d337baca51ae1d (diff) | |
download | fetchmail-54eac09811e33836fac4386ecaf8e2566c3e483f.tar.gz fetchmail-54eac09811e33836fac4386ecaf8e2566c3e483f.tar.bz2 fetchmail-54eac09811e33836fac4386ecaf8e2566c3e483f.zip |
Add historically useful commment.
svn path=/trunk/; revision=321
-rw-r--r-- | imap.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -168,6 +168,12 @@ int socket; struct hostrec *queryctl; int number; { + /* + * I think the SILENT modifier here is the only thing keeping this code + * from being IMAP2 (RFC 1176-compliant), rather than IMAP2bis. It's + * important for places where phone service is expensive to cut the + * IMAP protocol overhead as much as possible. + */ return(gen_transact(socket, "STORE %d +FLAGS.SILENT (\\Deleted)", number)); } |