blob: 55592bf3b13d79048e7ead4ae8a59e6712a4e2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Exim test configuration 0632
.include DIR/aux-var/std_conf_prefix
primary_hostname = myhost.test.ex
queue_only
# ----- Main settings -----
acl_smtp_rcpt = chk_rcpt
# ----- ACL -----
begin acl
chk_rcpt:
# We're doing these to see what REs the daemon compiles, in stderr
warn domains = ^nomatch_list
logwrite = should not match RE in list
warn condition = ${if match {a_random_string} {static_RE}}
logwrite = should not match RE in match cond
warn condition = ${if match {a_random_string} {tricky_static_RE\$}}
logwrite = should not match RE in match cond
warn condition = ${if match {a_random_string} {pid=${pid} uncacheable_RE}}
logwrite = should not match RE in match cond
accept
# ----- Routers -----
begin routers
r0:
driver = redirect
data = :blackhole:
#
# End
|