From: Kevin McCarthy Date: Thu, 8 Aug 2019 16:18:53 +0000 (-0700) Subject: Enabled writing protected subject with autocrypt too. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0ef8c32ee2805ca2fe68db51c0ff82b834efb4a;p=mutt Enabled writing protected subject with autocrypt too. --- diff --git a/crypt.c b/crypt.c index 1d5f9c5f..7eff2d19 100644 --- a/crypt.c +++ b/crypt.c @@ -974,7 +974,7 @@ static void crypt_fetch_signatures (BODY ***signatures, BODY *a, int *n) int mutt_should_hide_protected_subject (HEADER *h) { if (option (OPTCRYPTPROTHDRSWRITE) && - (h->security & ENCRYPT) && + (h->security & (ENCRYPT | AUTOCRYPT)) && !(h->security & INLINE) && ProtHdrSubject) return 1;