Fix CVE-2016-1531
[exim.git] / test / confs / 0414
CommitLineData
afda344b
PH
1# Exim test configuration 0414
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
14primary_hostname = mail.test.ex
15qualify_domain = test.ex
16
17domainlist A = lsearch;DIR/aux-fixed/TESTNUM.list1
18domainlist B = lsearch;DIR/aux-fixed/TESTNUM.list2
19domainlist C = +A : +B
20
21
22# ----- Routers -----
23
24begin routers
25
26r1:
27 driver = accept
28 transport = t1
29 domains = !+C
30 debug_print = domain_data=$domain_data
31
32r2:
33 driver = accept
34 transport = t1
35 domains = +B
36 debug_print = domain_data=$domain_data
37
38r3:
39 driver = accept
40 transport = t1
41 domains = +A
42 debug_print = domain_data=$domain_data
43
44# ----- Transports -----
45
46begin transports
47
48t1:
49 driver = appendfile
50 file = /dev/null
51 user = CALLER
52
53# End