We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38a3d4e commit 98342ecCopy full SHA for 98342ec
CHANGELOG.md
@@ -1,6 +1,11 @@
1
Changelog
2
=========
3
4
+8.19.1
5
+------
6
+
7
+- Ignore HTML content type in report email parsing (#626)
8
9
8.19.0
10
------
11
parsedmarc/__init__.py
@@ -1207,6 +1207,8 @@ def parse_report_email(
1207
payload = payload[0].__str__()
1208
if content_type.startswith("multipart/"):
1209
continue
1210
+ if content_type == "text/html":
1211
+ continue
1212
elif content_type == "message/feedback-report":
1213
try:
1214
if "Feedback-Type" in payload:
parsedmarc/constants.py
@@ -1,2 +1,2 @@
-__version__ = "8.19.0"
+__version__ = "8.19.1"
USER_AGENT = f"parsedmarc/{__version__}"
0 commit comments