Allow relative file names in .include lines (Closes 1971)
[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 max_rcpt = 1
34 connection_max_messages = 1
35 serialize_hosts = 127.0.0.1
36
37
38 # ----- Retry -----
39
40
41 begin retry
42
43 * * F,1h,10m
44
45
46 # End