Logging: add I= element to transport-defer lines. Bug 2675
[exim.git] / test / confs / 0594
1 # Exim test configuration 0594
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9
10
11 # ----- Routers -----
12
13 begin routers
14
15 r2:
16   driver = redirect
17   local_part_prefix = pipe-
18   local_part_suffix = =*
19   caseful_local_part = true
20   data = |${substr_1:$local_part_suffix}
21   pipe_transport = t2
22
23
24 # ----- Transports -----
25
26 begin transports
27
28 t2:
29   driver = pipe
30   user = CALLER
31   batch_max = 10
32
33 # End