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