From: rtc Date: Tue, 1 Jul 2008 08:10:24 +0000 (-0700) Subject: When deleting attachments, always print newline separating header from body. X-Git-Tag: mutt-1-5-19-rel~208 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31acea86f22f8f9711122b8141b5f8e5bb6e7bd9;p=mutt When deleting attachments, always print newline separating header from body. Closes #3085. --- diff --git a/ChangeLog b/ChangeLog index b8e5e6af..271860dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2008-06-29 01:09 -0700 Brendan Cully (677e7712d735) + + * crypt-gpgme.c: Improve gpgme SMIME uid display: align each line by + the length of the first. + + * crypt-gpgme.c: Show more information about problematic SMIME + signatures under gpgme. Also warn if the key is not known to be + good. For some reason expired keys in my environment are not + flagged as expired in sig->status or sig->summary. + 2008-06-28 20:33 -0700 Brendan Cully (1492c24f2a4e) * mutt_ssl_gnutls.c: Extract CN from client certificate in gnutls. diff --git a/copy.c b/copy.c index 34272e02..27b6dfcb 100644 --- a/copy.c +++ b/copy.c @@ -572,7 +572,9 @@ _mutt_copy_message (FILE *fpout, FILE *fpin, HEADER *hdr, BODY *body, if (new_lines <= 0) new_lines = 0; else - fprintf (fpout, "Lines: %d\n\n", new_lines); + fprintf (fpout, "Lines: %d\n", new_lines); + + putc ('\n', fpout); if (ferror (fpout) || feof (fpout)) return -1; new_offset = ftello (fpout);