diff -ru mutt-1.4.1/PATCHES mutt-1.4.1.new/PATCHES --- mutt-1.4.1/PATCHES 2001-11-26 14:16:52.000000000 -0500 +++ mutt-1.4.1.new/PATCHES 2003-08-18 11:01:33.000000000 -0400 @@ -0,0 +1 @@ +patch-1.4.0.ddm.pgp-always-check-traditional.2 diff -ru mutt-1.4.1/curs_main.c mutt-1.4.1.new/curs_main.c --- mutt-1.4.1/curs_main.c 2002-01-16 15:44:25.000000000 -0500 +++ mutt-1.4.1.new/curs_main.c 2003-08-18 11:03:25.000000000 -0400 @@ -1050,6 +1050,9 @@ CHECK_MSGCOUNT; CHECK_VISIBLE; +#ifdef HAVE_PGP + mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw); +#endif /* * toggle the weeding of headers so that a user can press the key * again while reading the message. @@ -1697,6 +1700,9 @@ CHECK_VISIBLE; CHECK_READONLY; CHECK_ATTACH; +#ifdef HAVE_PGP + mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw); +#endif #ifdef USE_POP if (Context->magic == M_POP) @@ -1737,6 +1743,9 @@ CHECK_MSGCOUNT; CHECK_VISIBLE; CHECK_ATTACH; +#ifdef HAVE_PGP + mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw); +#endif ci_send_message (SENDREPLY|SENDGROUPREPLY, NULL, NULL, Context, tag ? NULL : CURHDR); menu->redraw = REDRAW_FULL; break; @@ -1746,6 +1755,9 @@ CHECK_ATTACH; CHECK_MSGCOUNT; CHECK_VISIBLE; +#ifdef HAVE_PGP + mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw); +#endif ci_send_message (SENDREPLY|SENDLISTREPLY, NULL, NULL, Context, tag ? NULL : CURHDR); menu->redraw = REDRAW_FULL; break; @@ -1867,6 +1879,9 @@ CHECK_ATTACH; CHECK_MSGCOUNT; CHECK_VISIBLE; +#ifdef HAVE_PGP + mutt_check_traditional_pgp (tag ? NULL : CURHDR, &menu->redraw); +#endif ci_send_message (SENDREPLY, NULL, NULL, Context, tag ? NULL : CURHDR); menu->redraw = REDRAW_FULL; break;