diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-21 19:10:11 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-21 19:10:11 +0000 |
commit | 46b982f32d3b96470a413b8981215f43b208a884 (patch) | |
tree | 70fef4befe6440bf3aa7e0b4daa0ea522b270d15 /imap.c | |
parent | e46e69cf08fcaa4b991c42035c17ebdea3c06606 (diff) | |
download | fetchmail-46b982f32d3b96470a413b8981215f43b208a884.tar.gz fetchmail-46b982f32d3b96470a413b8981215f43b208a884.tar.bz2 fetchmail-46b982f32d3b96470a413b8981215f43b208a884.zip |
No more FLAGS.SILENT.
svn path=/trunk/; revision=364
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -169,13 +169,7 @@ 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)); + return(gen_transact(socket, "STORE %d +FLAGS (\\Deleted)", number)); } const static struct method imap = |