Fix CVE-2016-1531
[exim.git] / test / confs / 4950
1 # Exim test configuration 4950
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = check_recipient
15 acl_smtp_data = check_message
16
17 domainlist local_domains = test.ex
18 qualify_domain = test.ex
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 lookuphost:
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
37 begin transports
38
39 smtp:
40   driver = smtp
41
42
43 # End