From 46b982f32d3b96470a413b8981215f43b208a884 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 21 Oct 1996 19:10:11 +0000 Subject: No more FLAGS.SILENT. svn path=/trunk/; revision=364 --- NEWS | 8 ++++---- imap.c | 8 +------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/NEWS b/NEWS index 10500dd6..0148fd23 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,6 @@ - Known problems: - - Release Notes: -fetchmail-1.9 (): +fetchmail-1.9 (Mon Oct 21 13:42:07 EDT 1996): features -- @@ -61,6 +58,9 @@ bugs -- To avoid this, fetchmail now commits seppuku after some number of unsuccessful socket opens. +* Don't try using FLAGS.SILENT, some allegedly IMAP2bis servers seem to + choke on it. + fetchmail-1.8 (Fri Oct 11 15:08:10 EDT 1996): features -- diff --git a/imap.c b/imap.c index a7c45289..22f8db7c 100644 --- a/imap.c +++ b/imap.c @@ -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 = -- cgit v1.2.3