testsuite: abstract out common conf settings
[exim.git] / test / confs / 0160
1 # Exim test configuration 0160
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10
11 ignore_bounce_errors_after = 0s
12 queue_only
13
14 # ----- Routers -----
15
16 begin routers
17
18 all:
19 driver = manualroute
20 domains = ! +local_domains
21 route_list = * 127.0.0.1 byname
22 self = send
23 transport = smtp
24 no_more
25
26
27 # ----- Transports -----
28
29 begin transports
30
31 smtp:
32 driver = smtp
33 port = PORT_S
34
35
36 # ----- Retry -----
37
38
39 begin retry
40
41 * * F,2s,1s
42
43
44 # End