update to pre-4.87 master
[exim.git] / test / confs / 0194
CommitLineData
afda344b
PH
1# Exim test configuration 0194
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
bfe645c1 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex : *.test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21bounce:
22 driver = accept
23 retry_use_local_part
24 senders = :
25 transport = local_delivery
26
27all:
28 driver = accept
29 retry_use_local_part
30 transport = pipe${if def:h_ret:{ret}}
31
32
33# ----- Transports -----
34
35begin transports
36
37local_delivery:
38 driver = appendfile
39 file = DIR/test-mail/$local_part
40 user = CALLER
41
42pipe:
43 driver = pipe
44 batch_max = 3
45 command = /bin/echo This is some returned text.
46 return_output
47 user = CALLER
48
49piperet:
50 driver = pipe
51 batch_max = 100
52 command = DIR/aux-fixed/TESTNUM.ret $h_ret:
53 return_fail_output
54 user = CALLER
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,1d
63
64
65# End