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