Logging: add I= element to transport-defer lines. Bug 2675
[exim.git] / test / confs / 0131
1 # Exim test configuration 0131
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = test.ex
9 qualify_domain = test.ex
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 islocal:
17   driver = manualroute
18   domains = ! +local_domains
19   route_list = * localhost byname
20   self = pass
21   no_more
22   address_data = $address_data-islocal
23
24 forward:
25   driver = redirect
26   allow_filter
27   no_check_local_user
28   file = DIR/aux-fixed/TESTNUM.${bless:$local_part}
29   retry_use_local_part
30   user = CALLER
31   address_data = $address_data-forward
32
33 local:
34   driver = accept
35   retry_use_local_part
36   transport = appendfile
37   address_data = $address_data-local
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 appendfile:
45   driver = appendfile
46   file = DIR/test-mail/${bless:$local_part}
47   user = CALLER
48   headers_add = Address-Data: >$address_data<
49
50
51 # ----- Retry -----
52
53
54 begin retry
55
56 * * F,1d,15m
57
58
59 # End