application/octet-stream is not necessary pgp-signature
This commit is contained in:
parent
5d8a7ab834
commit
f3ea2af897
@ -73,7 +73,7 @@ def check(msg, GNUPG_DIRECTORY, beta=False):
|
|||||||
# Looking for signed content
|
# Looking for signed content
|
||||||
for part in msg.walk():
|
for part in msg.walk():
|
||||||
payload = part.get_payload()
|
payload = part.get_payload()
|
||||||
if part.get_content_type() == "application/pgp-signature" or part.get_content_type() == "application/octet-stream" or (
|
if part.get_content_type() == "application/pgp-signature" or (
|
||||||
payload is not None and not part.is_multipart() and part.get_payload(decode=True).find(b"-----BEGIN PGP SIGNATURE-----") >= 0
|
payload is not None and not part.is_multipart() and part.get_payload(decode=True).find(b"-----BEGIN PGP SIGNATURE-----") >= 0
|
||||||
):
|
):
|
||||||
if part.get_content_type() != "application/pgp-signature":
|
if part.get_content_type() != "application/pgp-signature":
|
||||||
|
Reference in New Issue
Block a user