Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0073
1 # Exim test configuration 0073
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 qualify_domain = test.ex
9
10
11 # ----- Routers -----
12
13 begin routers
14
15 reply:
16   driver = accept
17   retry_use_local_part
18   senders = !
19   transport = reply
20
21 localuser:
22   driver = accept
23   check_local_user
24   transport = local_delivery
25
26
27 # ----- Transports -----
28
29 begin transports
30
31 reply:
32   driver = autoreply
33   once = DIR/spool/autolog
34   once_repeat = ${if eq {0}{0}{4s}fail}
35   text = "Test auto reply to $h_subject:"
36   to = $reply_address
37   user = EXIMUSER
38
39 local_delivery:
40   driver = appendfile
41   delivery_date_add
42   envelope_to_add
43   file = DIR/test-mail/$local_part
44   create_file = DIR/test-mail
45   return_path_add
46
47
48 # End