X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/6a11a9e618a72b8d96aecb2ad9aa300b98f8d991..626810b928939e375f83b0f234a854d69339227c:/test/confs/4500 diff --git a/test/confs/4500 b/test/confs/4500 index e452bc091..f2e44beff 100644 --- a/test/confs/4500 +++ b/test/confs/4500 @@ -2,20 +2,30 @@ SERVER= -exim_path = EXIM_PATH -host_lookup_order = bydns +.include DIR/aux-var/std_conf_prefix + primary_hostname = myhost.test.ex -spool_directory = DIR/spool -log_file_path = DIR/spool/log/SERVER%slog -gecos_pattern = "" -gecos_name = CALLER_NAME -tls_advertise_hosts = # ----- Main settings ----- acl_smtp_rcpt = accept +acl_smtp_dkim = check_dkim queue_only queue_run_in_order + +begin acl + +check_dkim: +.ifdef OPTION + warn condition = ${if eq {$dkim_algo}{rsa-sha1}} + condition = ${if eq {$dkim_verify_status}{pass}} + logwrite = NOTE: forcing dkim verify fail (was pass) + set dkim_verify_status = fail + set dkim_verify_reason = hash too weak +.endif + accept + logwrite = signer: $dkim_cur_signer bits: $dkim_key_length + # End