Fix CVE-2016-1531
[exim.git] / test / confs / 0425
CommitLineData
afda344b
PH
1# Exim test configuration 0425
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
17acl_smtp_rcpt = a1
18
19
20# ----- ACLs -----
21
22begin acl
23
24a1:
25 warn !verify = recipient
26 warn verify = sender
27
28 accept
29
30
31# ----- Routers -----
32
33begin routers
34
35r1:
36 driver = accept
37 local_parts = ok
38 transport = t1
39
40
41# ----- Transports -----
42
43begin transports
44
45t1:
46 driver = smtp
47
48
49# End