Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0517
1 # Exim test configuration 0517
2
3 ERROR_DETAILS=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = a1
12
13
14 # ----- ACL ------
15
16 begin acl
17
18 a1:
19   accept  local_parts = usery
20           control = suppress_local_fixups
21   accept
22
23
24 # ----- Routers -----
25
26 begin routers
27
28 r1:
29   driver = accept
30   transport = t1
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 t1:
38   driver = appendfile
39   file = DIR/test-mail/$local_part
40   create_file = DIR/test-mail
41   user = CALLER
42
43 # End