Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0530
1 # Exim test configuration 0530
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 control = suppress_local_fixups
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 r1:
17   driver = accept
18   senders = :
19   transport = t1
20
21 r2:
22   driver = accept
23   transport = t2
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 t1:
31   driver = appendfile
32   file = DIR/test-mail/$local_part
33   create_file = DIR/test-mail
34   user = CALLER
35
36 t2:
37   driver = autoreply
38   to = $sender_address
39   subject = Re: $h_subject:
40   text = This is the text of the autoreply.
41   user = CALLER
42
43 # End