Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0140
1 # Exim test configuration 0140
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 caller:
16   driver = accept
17   local_parts = CALLER
18   retry_use_local_part
19   transport = local_delivery
20
21 reply:
22   driver = accept
23   retry_use_local_part
24   senders = !
25   transport = ${if eq {reply1}{$local_part} {reply1}{reply2}}
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 reply1:
33   driver = autoreply
34   text = "Test auto reply to $h_subject:\nthis is another line"
35   to = Reply Person <$sender_address>
36   user = EXIMUSER
37
38 reply2:
39   driver = autoreply
40   subject = "Re: $h_subject:"
41   to = $reply_address
42   user = EXIMUSER
43
44 local_delivery:
45   driver = appendfile
46   delivery_date_add
47   envelope_to_add
48   file = DIR/test-mail/$local_part
49   create_file = DIR/test-mail
50   return_path_add
51   user = CALLER
52
53
54 # End