Testsuite: unbreak testcase
[exim.git] / test / confs / 0288
1 # Exim test configuration 0288
2 # serialize_hosts option on smtp transport
3
4 .include DIR/aux-var/std_conf_prefix
5
6 primary_hostname = myhost.test.ex
7
8 # ----- Main settings -----
9
10 qualify_domain = test.ex
11 queue_run_in_order
12 remote_max_parallel = 2
13
14
15 # ----- Routers -----
16
17 begin routers
18
19 all:
20 driver = manualroute
21 route_list = * 127.0.0.1
22 self = send
23 transport = smtp
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 smtp:
31 driver = smtp
32 port = PORT_S
33 hosts_try_fastopen = :
34 max_rcpt = 1
35 connection_max_messages = 1
36 serialize_hosts = 127.0.0.1
37
38
39 # ----- Retry -----
40
41
42 begin retry
43
44 * * F,1h,10m
45
46
47 # End