Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0194
1 # Exim test configuration 0194
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 bounce:
17   driver = accept
18   retry_use_local_part
19   senders = :
20   transport = local_delivery
21
22 all:
23   driver = accept
24   retry_use_local_part
25   transport = pipe${if def:h_ret:{ret}}
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 local_delivery:
33   driver = appendfile
34   file = DIR/test-mail/$local_part
35   create_file = DIR/test-mail
36   user = CALLER
37
38 pipe:
39   driver = pipe
40   batch_max = 3
41   command = /bin/echo This is some returned text.
42   return_output
43   user = CALLER
44
45 piperet:
46   driver = pipe
47   batch_max = 100
48   command = DIR/aux-fixed/TESTNUM.ret "${if inlist {$h_ret:} {75:99} {$value}}"
49   return_fail_output
50   user = CALLER
51
52
53 # ----- Retry -----
54
55
56 begin retry
57
58 * * F,5d,1d
59
60
61 # End