diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-03-18 19:07:50 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-03-18 22:22:32 +0000 |
commit | 55997e6c4457d48140d2c7b3919bf98a46374ac7 (patch) | |
tree | 4e69fb70778dc9c0124925bdac86d98b5a08f461 /test/confs | |
parent | d7b5f2ab122c3de70f1f6672fe07b87e011338c6 (diff) |
DMARC: tescase
Extremely basic; we have no control of the DNS use of the dmarc library
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/4650 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/confs/4650 b/test/confs/4650 new file mode 100644 index 000000000..e6c788436 --- /dev/null +++ b/test/confs/4650 @@ -0,0 +1,28 @@ +# Exim test configuration 4650 + +.include DIR/aux-var/std_conf_prefix + +primary_hostname = myhost.test.ex + +# ----- Main settings ----- + +dmarc_tld_file = DIR/aux-fixed/TESTNUM.tldfile + +acl_smtp_rcpt = accept +acl_smtp_data = check_data + +queue_only + +begin acl + +check_data: + accept hosts = HOSTIPV4 + spf = pass : !pass + dmarc_status = none : !none + logwrite = dmarc_status <$dmarc_status> + logwrite = dmarc_status_text <$dmarc_status_text> + logwrite = dmarc_used_domain <$dmarc_used_domain> + logwrite = dmarc_domain_policy <$dmarc_domain_policy> + logwrite = ${authresults {$primary_hostname}} + +# End |