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