From: Brendan Cully Date: Wed, 24 Aug 2005 15:17:43 +0000 (+0000) Subject: Don't treat PGP inline signature verification errors as fatal. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=632578256c51aff0af6ada7dff1a8a486f82f582;p=neomutt Don't treat PGP inline signature verification errors as fatal. --- diff --git a/pgp.c b/pgp.c index f7fcccf29..fae3ecd38 100644 --- a/pgp.c +++ b/pgp.c @@ -387,7 +387,7 @@ int pgp_application_pgp_handler (BODY *m, STATE *s) c = fgetc (pgpout); ungetc (c, pgpout); } - if (!pgpout || c == EOF) + if (!clearsign && (!pgpout || c == EOF)) { mutt_error _("Could not decrypt PGP message"); mutt_sleep (1);