From: Thomas Roessler Date: Mon, 22 Feb 1999 10:19:30 +0000 (+0000) Subject: Currently, PGP signing messages will force quoted-printable encoding X-Git-Tag: mutt-0-96-1-rel~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b99ab9ba88f0bb71504705f1a0c23d765e0de164;p=mutt Currently, PGP signing messages will force quoted-printable encoding even if we should use base64. --- diff --git a/pgp.c b/pgp.c index e476c29d..5a8ea234 100644 --- a/pgp.c +++ b/pgp.c @@ -1102,7 +1102,9 @@ static void convert_to_7bit (BODY *a) a->encoding = ENCQUOTEDPRINTABLE; else if (a->encoding == ENCBINARY) a->encoding = ENCBASE64; - else if (a->content && (a->content->from || (a->content->space && option (OPTPGPSTRICTENC)))) + else if (a->content && a->encoding != ENCBASE64 && + (a->content->from || (a->content->space && + option (OPTPGPSTRICTENC)))) a->encoding = ENCQUOTEDPRINTABLE; a = a->next; }