mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-02-17 07:03:58 +00:00
8.19.1 (#627)
- Ignore HTML content type in report email parsing (#626)
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
8.19.1
|
||||
------
|
||||
|
||||
- Ignore HTML content type in report email parsing (#626)
|
||||
|
||||
8.19.0
|
||||
------
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
__version__ = "8.19.0"
|
||||
__version__ = "8.19.1"
|
||||
USER_AGENT = f"parsedmarc/{__version__}"
|
||||
|
||||
Reference in New Issue
Block a user