This commit is contained in:
Sean Whalen
2024-03-25 06:26:45 -04:00
parent 62ad46b8ba
commit cdde9734ec
4 changed files with 9 additions and 3 deletions
+1
View File
@@ -109,6 +109,7 @@
"truststore",
"Übersicht",
"uids",
"Uncategorized",
"unparasable",
"uper",
"urllib",
+6 -1
View File
@@ -1,10 +1,15 @@
Changelog
=========
8.9.2
-----
- Use `Uncategorized` instead of `None` as the service type when a service cannot be identified
8.9.1
-----
- Fix broken CLI by removing opbsolete paramater from `cli_parse` call (PR #496 closes issue #495)
- Fix broken CLI by removing obsolete parameter from `cli_parse` call (PR #496 closes issue #495)
8.9.0
-----
+1 -1
View File
@@ -34,7 +34,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg
from parsedmarc.utils import parse_email
from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime
__version__ = "8.9.1"
__version__ = "8.9.2"
logger.debug("parsedmarc v{0}".format(__version__))
+1 -1
View File
@@ -319,7 +319,7 @@ def get_service_from_reverse_dns_base_domain(base_domain):
try:
service = service_map[base_domain]
except KeyError:
service = dict(name=base_domain, type=None)
service = dict(name=base_domain, type="Uncategorized")
return service