X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/a79d883474c84fa2a286b7797a7664b599912fcd..e34f8ca2022e340d3c0e36260a0232fab306dfcc:/test/confs/4500 diff --git a/test/confs/4500 b/test/confs/4500 index f2e44beff..502de4a19 100644 --- a/test/confs/4500 +++ b/test/confs/4500 @@ -10,6 +10,9 @@ primary_hostname = myhost.test.ex acl_smtp_rcpt = accept acl_smtp_dkim = check_dkim +acl_smtp_data = check_data + +log_selector = +dkim_verbose queue_only queue_run_in_order @@ -18,6 +21,9 @@ queue_run_in_order begin acl check_dkim: +.ifdef BAD + warn logwrite = ${lookup dnsdb{defer_never,txt=_adsp._domainkey.$dkim_cur_signer}{$value}{unknown}} +.endif .ifdef OPTION warn condition = ${if eq {$dkim_algo}{rsa-sha1}} condition = ${if eq {$dkim_verify_status}{pass}} @@ -25,7 +31,13 @@ check_dkim: set dkim_verify_status = fail set dkim_verify_reason = hash too weak .endif - accept + warn logwrite = signer: $dkim_cur_signer bits: $dkim_key_length +.ifndef STRICT + accept +.endif + +check_data: + accept logwrite = ${authresults {$primary_hostname}} # End