aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--imap.c8
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 =