Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0504
1 # Exim test configuration 0504
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9
10 # ----- Routers -----
11
12 begin routers
13
14 r1:
15   driver = accept
16   transport = OPT
17
18
19 # ----- Transports -----
20
21 begin transports
22
23 t1:
24   driver = appendfile
25   file = DIR/test-mail/$local_part
26   create_file = DIR/test-mail
27   user = CALLER
28   transport_filter = /non/existent/file
29
30 t2:
31   driver = pipe
32   command = /bin/sh -c '/bin/cat > /dev/null'
33   transport_filter = /non/existent/file
34
35 t3:
36   driver = smtp
37   hosts = 127.0.0.1
38   port = PORT_S
39   hosts_try_fastopen =  :
40   allow_localhost
41   transport_filter = /non/existent/file
42
43
44 # ----- Retry -----
45
46 begin retry
47
48 * *  F,1d,1d
49
50 # End