summaryrefslogtreecommitdiff
path: root/test/confs/4528
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-08-10 17:36:03 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2021-08-11 00:07:45 +0100
commit15a44d749b2f4097d43c2d887b6c5bca2d0d8b4a (patch)
treedf0805bee0bef45d5299af7257de47941d5b2bd1 /test/confs/4528
parent5078e5337323159ff8c293e7ae335a974fd0371e (diff)
Testsuite: testcases for DKIM under TLS
Diffstat (limited to 'test/confs/4528')
-rw-r--r--test/confs/452833
1 files changed, 33 insertions, 0 deletions
diff --git a/test/confs/4528 b/test/confs/4528
new file mode 100644
index 000000000..3b3d3c5ef
--- /dev/null
+++ b/test/confs/4528
@@ -0,0 +1,33 @@
+# Exim test configuration 4528
+
+SERVER=
+
+.include DIR/aux-var/tls_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = accept encrypted = *
+acl_smtp_dkim = check_dkim
+acl_smtp_data = check_data
+
+log_selector = +dkim_verbose
+dkim_verify_signers = DYNAMIC_OPTION
+
+queue_only
+queue_run_in_order
+
+# ----- ACL ---------
+
+begin acl
+
+check_dkim:
+ accept
+ logwrite = DKIM: acl called - signer: $dkim_cur_signer bits: $dkim_key_length
+
+check_data:
+ accept logwrite = overall \$dkim_verify_status: $dkim_verify_status
+ logwrite = ${authresults {$primary_hostname}}
+
+# End