Fix CVE-2016-1531
[exim.git] / test / confs / 4950
... / ...
CommitLineData
1# Exim test configuration 4950
2
3exim_path = EXIM_PATH
4keep_environment =
5host_lookup_order = bydns
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10tls_advertise_hosts =
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_recipient
15acl_smtp_data = check_message
16
17domainlist local_domains = test.ex
18qualify_domain = test.ex
19
20
21# ----- Routers -----
22
23begin routers
24
25lookuphost:
26 driver = dnslookup
27 domains = ! +local_domains
28 translate_ip_address = "\
29 ${if eq {${mask:$host_address/24}}{V4NET.11.12.0/24}{1.2.3.4}\
30 {${lookup{${mask:$host_address/27}}lsearch{DIR/aux-var/TESTNUM.tr}{$value}fail}}}"
31 transport = smtp
32 no_more
33
34
35# ----- Transports -----
36
37begin transports
38
39smtp:
40 driver = smtp
41
42
43# End