From cb5275b5fb0759f6cc3472e4e026f95abb52c700 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 11 Jul 2000 15:22:56 +0000 Subject: [PATCH] Disable a bug work-around which actually breaks things. --- imap/message.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/imap/message.c b/imap/message.c index bf332f7b..4c9da0db 100644 --- a/imap/message.c +++ b/imap/message.c @@ -162,13 +162,20 @@ int imap_read_headers (CONTEXT *ctx, int msgbegin, int msgend) return -1; } imap_read_bytes (fp, CTX_DATA->conn, bytes); +#if 0 /* make sure headers are followed by ONE blank line (separator * for mutt_read_rfc822_header) */ + + /* + * XXX - this is supposed to fix things, but seems to + * break them. + */ + do fseek (fp, -2, SEEK_CUR); while (fgetc (fp) == '\n'); fputs ("\n\n", fp); - +#endif /* we may have other fields of the FETCH _after_ the literal * (eg Domino puts FLAGS here). Nothing wrong with that, either. * This all has to go - we should accept literals and nonliterals -- 2.40.0