Skip to content

Commit 336ae2d

Browse files
committed
5.11.6
- Remove inaccurate warning about SMTP-STS policy line endings - Clarify DMARC `none` policy warnings
1 parent 50c3c66 commit 336ae2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

checkdmarc/dmarc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,11 +921,11 @@ def parse_dmarc_record(
921921
allowed_values = dmarc_tags[tag]["values"]
922922
if tag == "p" and tag_value == "none":
923923
warnings.append(
924-
f"A p tag value of none makes DMARC ineffective on email sent as {domain}."
924+
f"A p tag value of none makes DMARC unenforced on email sent as {domain}."
925925
)
926926
if tag == "sp" and tag_value == "none" and explicit:
927927
warnings.append(
928-
f"An sp tag value of none makes DMARC ineffective on email sent as a subdomain of {domain}."
928+
f"An sp tag value of none makes DMARC unenforced on email sent as a subdomain of {domain}."
929929
)
930930
if tag == "fo":
931931
tag_value = tag_value.split(":")

0 commit comments

Comments
 (0)