1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-06 16:07:22 +01:00

Fixes #2149 Append ; in policy strings for DMARC settings (#2151)

Signed-off-by: Sudheesh Singanamalla <sudheesh@cloudflare.com>
This commit is contained in:
Sudheesh Singanamalla
2022-08-19 18:23:42 +01:00
committed by GitHub
parent 3c3d62ac27
commit d7244ed920
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ def test(server, description):
(hostname, "TXT", "\"v=spf1 mx -all\""),
("mail._domainkey." + hostname, "TXT", "\"v=DKIM1; k=rsa; s=email; \" \"p=__KEY__\""),
#("_adsp._domainkey." + hostname, "TXT", "\"dkim=all\""),
("_dmarc." + hostname, "TXT", "\"v=DMARC1; p=quarantine\""),
("_dmarc." + hostname, "TXT", "\"v=DMARC1; p=quarantine;\""),
]
return test2(tests, server, description)