X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2Fconfs%2F4500;h=502de4a1972dcecab3d0523ac126b44f503571c1;hb=ddd15fc7507e08ec7aad7a538c5ca236435c55ca;hp=e452bc09150dff3d281344399813d087c75d0c60;hpb=6a11a9e618a72b8d96aecb2ad9aa300b98f8d991;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/confs/4500 b/test/confs/4500 index e452bc091..502de4a19 100644 --- a/test/confs/4500 +++ b/test/confs/4500 @@ -2,20 +2,42 @@ 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 +acl_smtp_data = check_data + +log_selector = +dkim_verbose queue_only 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}} + logwrite = NOTE: forcing dkim verify fail (was pass) + set dkim_verify_status = fail + set dkim_verify_reason = hash too weak +.endif + warn + logwrite = signer: $dkim_cur_signer bits: $dkim_key_length +.ifndef STRICT + accept +.endif + +check_data: + accept logwrite = ${authresults {$primary_hostname}} + # End