summaryrefslogtreecommitdiffstats
path: root/imap
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-07-11 15:22:56 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-07-11 15:22:56 +0000
commitcb5275b5fb0759f6cc3472e4e026f95abb52c700 (patch)
treecef0b384aa50409962b1d977a266e43c01d0a3cc /imap
parent3d340818d887457cd899c6756ab6266453c3c6c3 (diff)
Disable a bug work-around which actually breaks things.
Diffstat (limited to 'imap')
-rw-r--r--imap/message.c9
1 files changed, 8 insertions, 1 deletions
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