From: Thomas Roessler Date: Tue, 13 Jun 2000 09:09:59 +0000 (+0000) Subject: Only display PGP signature verification status if verification was X-Git-Tag: mutt-1-3-4-rel~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75116fc242758f98e0c0b6154ae202ed23c756cc;p=mutt Only display PGP signature verification status if verification was tried. --- diff --git a/commands.c b/commands.c index d32e4647..c8264f4d 100644 --- a/commands.c +++ b/commands.c @@ -143,7 +143,7 @@ int mutt_display_message (HEADER *cur) pager_t info; #ifdef HAVE_PGP - if (cur->pgp) + if (cmflags & M_CM_VERIFY) mutt_message ((cur->pgp & PGPGOODSIGN) ? _("PGP signature successfully verified.") : _("PGP signature could NOT be verified."));