]> granicus.if.org Git - mutt/commitdiff
Disable a bug work-around which actually breaks things.
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 11 Jul 2000 15:22:56 +0000 (15:22 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 11 Jul 2000 15:22:56 +0000 (15:22 +0000)
imap/message.c

index bf332f7b5e9ae70e8f053dadc7311fca64a179be..4c9da0dbb92a45255b5d1baf00904954eff106c3 100644 (file)
@@ -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