summaryrefslogtreecommitdiff
path: root/test/confs
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-09-08 23:05:20 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-09-08 23:05:20 +0100
commitf38917cc94ab337c15ff70c254dd564ee2dcafe7 (patch)
tree616248bb073b2883f74896ad0ef2bc07a063a770 /test/confs
parent5980e62829e10336b008f861c938bfca799d488a (diff)
Capture substrings in ACL regex= . Bug 425.
Diffstat (limited to 'test/confs')
-rw-r--r--test/confs/056858
1 files changed, 58 insertions, 0 deletions
diff --git a/test/confs/0568 b/test/confs/0568
new file mode 100644
index 000000000..d5a8049c1
--- /dev/null
+++ b/test/confs/0568
@@ -0,0 +1,58 @@
+# Exim test configuration 0568: ACL regex=
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = check_rcpt
+acl_smtp_data = check_data
+acl_not_smtp = check_data
+acl_smtp_mime = check_mime
+
+
+# ----- 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