testsuite: abstract out common conf settings
[exim.git] / test / confs / 0217
1 # Exim test configuration 0217
2
3 HAP=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 qualify_domain = test.ex
12 ignore_bounce_errors_after = 0s
13
14
15 # ----- Routers -----
16
17 begin routers
18
19 bounce:
20   driver = redirect
21   allow_defer
22   allow_fail
23   data = :fail: just discard
24   retry_use_local_part
25   senders = :
26
27 client:
28   driver = accept
29   retry_use_local_part
30   transport = send_to_server
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 send_to_server:
38   driver = smtp
39   allow_localhost
40   command_timeout = 1s
41   hosts = 127.0.0.1
42   port = PORT_S
43   HAP
44   max_rcpt = 1000
45
46 # ----- Retry -----
47
48
49 begin retry
50
51 * * F,5d,10s
52
53
54 # End