Merge from master into 4.next
[exim.git] / test / confs / 0131
CommitLineData
afda344b
PH
1# Exim test configuration 0131
2
4fab92fb
HSHR
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8domainlist local_domains = test.ex
9qualify_domain = test.ex
10
11
12# ----- Routers -----
13
14begin routers
15
16islocal:
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
24forward:
25 driver = redirect
26 allow_filter
27 no_check_local_user
28 file = DIR/aux-fixed/TESTNUM.$local_part
29 retry_use_local_part
30 user = CALLER
31 address_data = $address_data-forward
32
33local:
34 driver = accept
35 retry_use_local_part
36 transport = appendfile
37 address_data = $address_data-local
38
39
40# ----- Transports -----
41
42begin transports
43
44appendfile:
45 driver = appendfile
46 file = DIR/test-mail/$local_part
47 user = CALLER
48 headers_add = Address-Data: >$address_data<
49
50
51# ----- Retry -----
52
53
54begin retry
55
56* * F,1d,15m
57
58
59# End