From 734d3ba8fc0ec7961f200223543b605d2bd41a0f Mon Sep 17 00:00:00 2001 From: TAKAHASHI Tamotsu Date: Sat, 30 Jul 2005 03:59:04 +0000 Subject: [PATCH] Don't refuse to delete attachments just because a message has been checked for "traditional" PGP encoding. (closes #2013) --- recvattach.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recvattach.c b/recvattach.c index 27cf94b4..c1653d9b 100644 --- a/recvattach.c +++ b/recvattach.c @@ -1069,7 +1069,7 @@ void mutt_view_attachments (HEADER *hdr) } #endif - if (WithCrypto && hdr->security) + if (WithCrypto && hdr->security & ~PGP_TRADITIONAL_CHECKED) { mutt_message _( "Deletion of attachments from encrypted messages is unsupported."); -- 2.50.1