- Ignore HTML content type in report email parsing (#626)
This commit is contained in:
Sean Whalen
2025-11-29 11:37:31 -05:00
committed by GitHub
parent 38a3d4eaae
commit 98342ecac6
3 changed files with 8 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
Changelog
=========
8.19.1
------
- Ignore HTML content type in report email parsing (#626)
8.19.0
------

View File

@@ -1207,6 +1207,8 @@ def parse_report_email(
payload = payload[0].__str__()
if content_type.startswith("multipart/"):
continue
if content_type == "text/html":
continue
elif content_type == "message/feedback-report":
try:
if "Feedback-Type" in payload:

View File

@@ -1,2 +1,2 @@
__version__ = "8.19.0"
__version__ = "8.19.1"
USER_AGENT = f"parsedmarc/{__version__}"