diff --git a/docs/config.c b/docs/config.c index 58df57278d..d872ebc718 100644 --- a/docs/config.c +++ b/docs/config.c @@ -873,7 +873,7 @@ ** (Crypto only) */ -{ "crypt_protected_headers_write", DT_BOOL, false }, +{ "crypt_protected_headers_write", DT_BOOL, true }, /* ** .pp ** When set, NeoMutt will generate protected headers for signed and encrypted diff --git a/docs/manual.xml.head b/docs/manual.xml.head index f94ea9c941..362d5031ed 100644 --- a/docs/manual.xml.head +++ b/docs/manual.xml.head @@ -13505,8 +13505,6 @@ set pgp_default_key = "1111111111111111111111111111111111111111" set crypt_autosign = yes # Encrypt mail if all recipients have valid public keys set crypt_opportunistic_encrypt = yes -# Sign/encrypt protected headers (Subject) -set crypt_protected_headers_write = yes # Self encrypt mail set crypt_self_encrypt = yes diff --git a/ncrypt/config.c b/ncrypt/config.c index b182b3750a..915565f4b3 100644 --- a/ncrypt/config.c +++ b/ncrypt/config.c @@ -123,7 +123,7 @@ static struct ConfigDef NcryptVars[] = { { "crypt_protected_headers_subject", DT_STRING, IP "...", 0, NULL, "Use this as the subject for encrypted emails" }, - { "crypt_protected_headers_write", DT_BOOL, false, 0, NULL, + { "crypt_protected_headers_write", DT_BOOL, true, 0, NULL, "Generate protected header (Memory Hole) for signed and encrypted emails" }, { "crypt_timestamp", DT_BOOL, true, 0, NULL,