diff options
| -rw-r--r-- | NEWS | 8 | ||||
| -rw-r--r-- | imap.c | 8 | 
2 files changed, 5 insertions, 11 deletions
@@ -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 -- @@ -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 =  | 
