Testsuite: output changes resulting
[exim.git] / test / confs / 0160
... / ...
CommitLineData
1# Exim test configuration 0160
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex : *.test.ex
10
11ignore_bounce_errors_after = 0s
12queue_only
13
14# ----- Routers -----
15
16begin routers
17
18all:
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
29begin transports
30
31smtp:
32 driver = smtp
33 port = PORT_S
34 hosts_try_fastopen = :
35
36
37# ----- Retry -----
38
39
40begin retry
41
42* * F,2s,1s
43
44
45# End