Fix CVE-2016-1531
[exim.git] / test / confs / 0164
CommitLineData
afda344b
PH
1# Exim test configuration 0164
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
afda344b 5host_lookup_order = bydns
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
23f3dc67 10tls_advertise_hosts =
afda344b
PH
11
12# ----- Main settings -----
13
14domainlist local_domains = test.ex
15qualify_domain = test.ex
16
17system_filter = DIR/aux-var/TESTNUM.F
18system_filter_pipe_transport = address_pipe
19system_filter_user = CALLER
20
21
22# ----- Routers -----
23
24begin routers
25
26user:
27 driver = accept
28 retry_use_local_part
29 transport = local_delivery
30
31
32# ----- Transports -----
33
34begin transports
35
36local_delivery:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 user = CALLER
40
41address_pipe:
42 driver = pipe
43 return_output
44
45
46# End