X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2Fconfs%2F4010;h=f01baf3cf2c322d4f2c39dc0f2b047f4ac2cdf62;hb=755c0d877b344620e1980f5349fa9f9dcac533ae;hp=eb888846016ad35b20b0bc1f75c9585c44cb9a4d;hpb=a108e3eae2841ec938041460bcb201e15131c17f;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/confs/4010 b/test/confs/4010 deleted file mode 120000 index eb8888460..000000000 --- a/test/confs/4010 +++ /dev/null @@ -1 +0,0 @@ -4009 \ No newline at end of file diff --git a/test/confs/4010 b/test/confs/4010 new file mode 100644 index 000000000..f01baf3cf --- /dev/null +++ b/test/confs/4010 @@ -0,0 +1,53 @@ +# Exim test configuration 0568: ACL regex= + +.include DIR/aux-var/std_conf_prefix + +primary_hostname = myhost.test.ex +rfc1413_query_timeout = 0s + + +# ----- Main settings ----- + +acl_smtp_rcpt = check_rcpt +acl_smtp_data = check_data +acl_not_smtp = check_data + + +# ----- ACL ----- + +begin acl + +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 + +r1: + driver = accept + transport = t1 + +# ----- Transports ----- + +begin transports + +t1: + driver = appendfile + file = DIR/test-mail/$local_part + user = CALLER + + +# End