Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[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 log_selector = +pipelining
9
10 # ----- Main settings -----
11
12 qualify_domain = test.ex
13 ignore_bounce_errors_after = 0s
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 bounce:
21   driver = redirect
22   allow_defer
23   allow_fail
24   data = :fail: just discard
25   retry_use_local_part
26   senders = :
27
28 client:
29   driver = accept
30   retry_use_local_part
31   transport = send_to_server
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 send_to_server:
39   driver = smtp
40   allow_localhost
41   command_timeout = 1s
42   hosts = 127.0.0.1
43   port = PORT_S
44   hosts_try_fastopen = :
45   HAP
46   max_rcpt = 1000
47
48 # ----- Retry -----
49
50
51 begin retry
52
53 * *             F,5d,10s
54
55
56 # End