]> granicus.if.org Git - mutt/commitdiff
When deleting attachments, always print newline separating header from body.
authorrtc <rtc@gmx.de>
Tue, 1 Jul 2008 08:10:24 +0000 (01:10 -0700)
committerrtc <rtc@gmx.de>
Tue, 1 Jul 2008 08:10:24 +0000 (01:10 -0700)
Closes #3085.

ChangeLog
copy.c

index b8e5e6af39ebe9a29a97f319d006090601ffbc6f..271860dc21ae1024400519f5a783df40d3d5529a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2008-06-29 01:09 -0700  Brendan Cully  <brendan@kublai.com>  (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  <brendan@kublai.com>  (1492c24f2a4e)
 
        * mutt_ssl_gnutls.c: Extract CN from client certificate in gnutls.
diff --git a/copy.c b/copy.c
index 34272e02c3795601d39719785d7310bf86d74eab..27b6dfcbd1ca0c5373ca415d73e5608f32fac504 100644 (file)
--- 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);