X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2Fconfs%2F4002;h=d9a12a36826b38fcf6d1dd0e0ddea773d70e1f1a;hb=18d243312bf3a23bd0f464fac44797e2720e03ec;hp=c7d27b811abe03ce789d67f61f38dbbf8b1472b5;hpb=23f3dc67a13f71bb8fdf2930052d3fdce85e9774;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/confs/4002 b/test/confs/4002 index c7d27b811..d9a12a368 100644 --- a/test/confs/4002 +++ b/test/confs/4002 @@ -1,35 +1,54 @@ -# Exim test configuration 4002 -# Content-scan: aveserver interface +# Exim test configuration 4001: ACL regex= + +.include DIR/aux-var/std_conf_prefix -exim_path = EXIM_PATH -host_lookup_order = bydns primary_hostname = myhost.test.ex -spool_directory = DIR/spool -log_file_path = DIR/spool/log/%slog -gecos_pattern = "" -gecos_name = CALLER_NAME -log_selector = +subject -tls_advertise_hosts = +rfc1413_query_timeout = 0s -av_scanner = aveserver : DIR/eximdir/aveserver_sock # ----- Main settings ----- -acl_smtp_rcpt = accept -acl_smtp_data = c_data +acl_smtp_rcpt = check_rcpt +acl_smtp_data = check_data +acl_not_smtp = check_data + + +# ----- ACL ----- begin acl -c_data: - accept !malware = * OPT - deny logwrite = malware_name $malware_name +check_rcpt: + accept + +check_data: + warn regex = \N(THIS\s((\w+)\s)?REGEX)\N + message = X-Regex: Regex matched <$regex1> <$regex3> + + warn condition = ${if !eq{$h_fakereject:}{}} + control = fakereject + + warn condition = ${if !eq{$h_fakedefer:}{}} + control = fakedefer + + accept # ----- Routers ----- begin routers -r: - driver = redirect - data = :blackhole: +r1: + driver = accept + transport = t1 + +# ----- Transports ----- + +begin transports + +t1: + driver = appendfile + file = DIR/test-mail/$local_part + create_file = DIR/test-mail + user = CALLER + # End