--- mutt-1.3.27/PATCHES.orig Tue Jan 15 10:03:20 2002 +++ mutt-1.3.27/PATCHES Sun Feb 24 20:10:04 2002 @@ -0,0 +1 @@ +Feature patch: pgp_shorten 1.3.27 by Stefan `Sec` Zehl --- mutt-1.3.27/pgp.c.orig Wed Jan 9 16:37:50 2002 +++ mutt-1.3.27/pgp.c Sun Feb 24 20:13:07 2002 @@ -139,7 +139,7 @@ t = time (NULL); setlocale (LC_TIME, ""); strftime (p, sizeof (p), - _("[-- PGP output follows (current time: %c) --]\n"), + _("[-- PGP output follows -- %c --]\n"), localtime (&t)); setlocale (LC_TIME, "C"); state_attach_puts (p, s); @@ -746,7 +746,7 @@ dprint (1, (debugfile, "pgp_verify_one: mutt_wait_filter returned %d.\n", rv)); } - state_attach_puts (_("[-- End of PGP output --]\n\n"), s); + state_attach_puts (_("[-- End of PGP output "), s); mutt_unlink (sigfile); mutt_unlink (pgperrfile); @@ -844,7 +844,7 @@ dprint (2, (debugfile, "pgp_signed_handler: goodsig = %d\n", goodsig)); /* Now display the signed body */ - state_attach_puts (_("[-- The following data is signed --]\n\n"), s); + state_attach_puts (_("-- The following data is signed --]\n\n"), s); safe_free((void **) &signatures); @@ -1049,7 +1049,7 @@ rewind (pgperr); if (pgp_copy_checksig (pgperr, s->fpout) == 0 && p) p->goodsig = 1; - state_attach_puts (_("[-- End of PGP output --]\n\n"), s); + state_attach_puts (_("[-- End of PGP output "), s); } fclose (pgperr); @@ -1137,7 +1137,7 @@ if ((tattach = pgp_decrypt_part (a, s, fpout, p)) != NULL) { if (s->flags & M_DISPLAY) - state_attach_puts (_("[-- The following data is PGP/MIME encrypted --]\n\n"), s); + state_attach_puts (_("-- The following data is PGP/MIME encrypted --]\n\n"), s); fpin = s->fpin; s->fpin = fpout;