Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0282
1 # Exim test configuration 0282
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 = accept
10 local_interfaces = <; 127.0.0.1.PORT_D ; [127.0.0.1]:PORT_D2 ; HOSTIPV4 ; 127.0.0.1.PORT_D4
11 log_selector = +incoming_interface+incoming_port
12 queue_only
13 queue_run_in_order
14
15 # ----- Routers -----
16
17 begin routers
18
19 all:
20   driver = accept
21   transport = local_delivery
22
23 # ----- Transports -----
24
25 begin transports
26
27 local_delivery:
28   driver = appendfile
29   file = DIR/test-mail/$local_part
30   create_file = DIR/test-mail
31   user = CALLER
32   headers_add = interface-port: $interface_port\n\
33                 received-port:  $received_port
34
35 # End