Skip to content

Commit ee65219

Browse files
committed
5.8.7
- Fix downloading of mta-sts policies (PR #166 closes #165) - Fix DMARC policy checks for parked domains/subdomains (PR #167)
1 parent 62e3207 commit ee65219

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@
5959
"console": "integratedTerminal",
6060
"justMyCode": true
6161
},
62+
{
63+
"name": "checkdmarc --skip-tls google.com",
64+
"type": "python",
65+
"request": "launch",
66+
"module": "checkdmarc._cli",
67+
"args": [
68+
"--skip-tls",
69+
"gmail.com"
70+
],
71+
"console": "integratedTerminal",
72+
"justMyCode": true
73+
},
6274
{
6375
"name": "checkdmarc --skip-tls m11‍.‍email‍.‍samsung‍.‍com",
6476
"type": "python",

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
5.8.7
5+
-----
6+
7+
- Fix downloading of mta-sts policies (PR #166 closes #165)
8+
- Fix DMARC policy checks for parked domains/subdomains (PR #167)
9+
410
5.8.6
511
-----
612

checkdmarc/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
See the License for the specific language governing permissions and
1919
limitations under the License."""
2020

21-
__version__ = "5.8.6"
21+
__version__ = "5.8.7"
2222

2323
OS = platform.system()
2424
OS_RELEASE = platform.release()

0 commit comments

Comments
 (0)