FIX: ignore PGP data in emails by MIME type
New version of Thunderbird email client reimplemented PGP support. Now the following attachments are added by default, if email signatures are enabled: * OpenPGP_0x(pgp key id).asc * OpenPGP_signature(.asc) The last one has `name="OpenPGP_signature.asc"` in `Content-Type` but `filename="OpenPGP_signature"` (without extension) in `Content-Disposition: attachment`. Since both the key and the signature have proper MIME types, filter them by default.
This commit is contained in:
parent
f2a17feb3a
commit
1031915b75
|
@ -1149,7 +1149,7 @@ email:
|
|||
max: 36500
|
||||
blocked_attachment_content_types:
|
||||
type: list
|
||||
default: "pkcs7|x-vcard"
|
||||
default: "pkcs7|x-vcard|pgp-keys|pgp-signature"
|
||||
list_type: compact
|
||||
blocked_attachment_filenames:
|
||||
type: list
|
||||
|
|
Loading…
Reference in New Issue