Skip to content

Commit d84a008

Browse files
authored
Fix #882 - Include mx_nameservers in results_technical (#887)
1 parent 5fbd6f6 commit d84a008

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Changelog.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
## 1.7
44

5-
This release has API version 2.3.0, The `securitytxt_errors` and
6-
`securitytxt_recommendations` types were changed, and the
7-
`record_org_domain` was added for DMARC.
5+
This release has API version 2.3.0:
6+
- The `record_org_domain` was added for DMARC.
7+
- An issue was fixed where the `mx_nameservers` field was not included in results.
8+
- The `securitytxt_errors` and `securitytxt_recommendations` types were changed.
89

910
## 1.6.3
1011

interface/batch/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,7 @@ def _get_mail_details(cls, report_table):
677677
details = {}
678678
details["domain"] = cls._get_mail_domain(report_table)
679679
details["nameservers"] = cls._get_mail_nameservers(report_table)
680+
details["mx_nameservers"] = cls._get_mail_mx_nameservers(report_table)
680681
details["receiving_mailservers"] = cls._get_mail_mailservers(report_table)
681682
return details
682683

0 commit comments

Comments
 (0)