Compare commits

...

1 Commits

Author SHA1 Message Date
Sean Whalen
98342ecac6 8.19.1 (#627)
- Ignore HTML content type in report email parsing (#626)
2025-11-29 11:37:31 -05:00
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__}"