Docs: fix option name. Bug 2471
[exim.git] / test / confs / 0216
1 # Exim test configuration 0216
2
3 SERVER=
4 HAP=
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9 log_selector = +pipelining
10
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept
15 queue_only
16 queue_run_in_order
17
18
19 # ----- Routers -----
20
21 begin routers
22
23 client:
24 driver = accept
25 condition = ${if eq {SERVER}{server}{no}{yes}}
26 retry_use_local_part
27 transport = send_to_server
28
29
30 # ----- Transports -----
31
32 begin transports
33
34 send_to_server:
35 driver = smtp
36 allow_localhost
37 hosts = 127.0.0.1
38 port = PORT_D
39 max_rcpt = 0
40 HAP
41
42
43 # ----- Retry -----
44
45
46 begin retry
47
48 * * F,5d,10s
49
50
51 # End