Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0518
1 # Exim test configuration 0518
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_rcpt
10
11 queue_only
12
13
14 # ----- ACLs -----
15
16 begin acl
17
18 check_rcpt:
19   accept  verify = recipient/callout
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 r1:
27   driver = accept
28   local_part_prefix = *+
29   local_part_suffix = -*
30   local_part_prefix_optional
31   local_part_suffix_optional
32   transport = ${if eq {$domain}{include}{t1}{t2}}
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 t1:
40   driver = smtp
41   hosts = 127.0.0.1
42   port = PORT_S
43   hosts_try_fastopen =  :
44   allow_localhost
45   rcpt_include_affixes
46
47 t2:
48   driver = smtp
49   hosts = 127.0.0.1
50   port = PORT_S
51   hosts_try_fastopen =  :
52   allow_localhost
53
54 # End