Add new errors mail_4xx, data_4xx, lost_connection, tls_required.
[exim.git] / test / confs / 0414
CommitLineData
afda344b
PH
1# Exim test configuration 0414
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5rfc1413_query_timeout = 0s
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13primary_hostname = mail.test.ex
14qualify_domain = test.ex
15
16domainlist A = lsearch;DIR/aux-fixed/TESTNUM.list1
17domainlist B = lsearch;DIR/aux-fixed/TESTNUM.list2
18domainlist C = +A : +B
19
20
21# ----- Routers -----
22
23begin routers
24
25r1:
26 driver = accept
27 transport = t1
28 domains = !+C
29 debug_print = domain_data=$domain_data
30
31r2:
32 driver = accept
33 transport = t1
34 domains = +B
35 debug_print = domain_data=$domain_data
36
37r3:
38 driver = accept
39 transport = t1
40 domains = +A
41 debug_print = domain_data=$domain_data
42
43# ----- Transports -----
44
45begin transports
46
47t1:
48 driver = appendfile
49 file = /dev/null
50 user = CALLER
51
52# End