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