Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0531
1 # Exim test configuration 0531
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10 log_selector =  +sender_on_delivery
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 bounces:
18   driver = accept
19   senders = :
20   transport = t1
21
22 smartuser:
23   driver = accept
24   retry_use_local_part
25   transport = lmtp
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 t1:
33   driver = appendfile
34   file = DIR/test-mail/$local_part
35   create_file = DIR/test-mail
36   user = CALLER
37
38 lmtp:
39   driver = smtp
40   allow_localhost
41   hosts = 127.0.0.1
42   port = PORT_S
43   hosts_try_fastopen = :
44   protocol = LMTP
45
46
47 # ----- Retry -----
48
49
50 begin retry
51
52 retry.test.ex * F,1s,1s
53
54
55 # End