testsuite: abstract out common conf settings
[exim.git] / test / confs / 0211
CommitLineData
afda344b
PH
1# Exim test configuration 0211
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8domainlist local_domains = test.ex
9
10acl_smtp_rcpt = check_recipient
11
12log_selector = +sender_on_delivery
13qualify_domain = test.ex
14
15
16# ----- ACLs -----
17
18begin acl
19
20check_recipient:
21 accept hosts = :
22 accept domains = +local_domains
23 deny message = relay not permitted
24
25
26# ----- Routers -----
27
28begin routers
29
30others:
31 driver = manualroute
32 domains = ! +local_domains
5980e628 33 route_list = * localhost4.test.ex byname
afda344b
PH
34 self = send
35 transport = smtp
36 no_more
37
38all:
39 driver = accept
40 retry_use_local_part
41 transport = local_delivery
42
43
44# ----- Transports -----
45
46begin transports
47
48smtp:
49 driver = smtp
50 port = PORT_S
51
52local_delivery:
53 driver = appendfile
54 file = DIR/test-mail/$local_part
55 return_path_add
56 user = CALLER
57
58
59# ----- Retry -----
60
61
62begin retry
63
64* * F,5d,8h
65
66
67# End