We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50c3c66 commit 336ae2dCopy full SHA for 336ae2d
checkdmarc/dmarc.py
@@ -921,11 +921,11 @@ def parse_dmarc_record(
921
allowed_values = dmarc_tags[tag]["values"]
922
if tag == "p" and tag_value == "none":
923
warnings.append(
924
- f"A p tag value of none makes DMARC ineffective on email sent as {domain}."
+ f"A p tag value of none makes DMARC unenforced on email sent as {domain}."
925
)
926
if tag == "sp" and tag_value == "none" and explicit:
927
928
- f"An sp tag value of none makes DMARC ineffective on email sent as a subdomain of {domain}."
+ f"An sp tag value of none makes DMARC unenforced on email sent as a subdomain of {domain}."
929
930
if tag == "fo":
931
tag_value = tag_value.split(":")
0 commit comments