Fix CVE-2016-1531
[exim.git] / test / confs / 2126
CommitLineData
afda344b
PH
1# Exim test configuration 2126
2
3SERVER=
4
5exim_path = EXIM_PATH
bc3c7bb7 6keep_environment =
afda344b
PH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = check_rcpt
17log_selector = +tls_peerdn
18
19tls_advertise_hosts = HOSTIPV4
20tls_certificate = DIR/aux-fixed/cert1
21tls_privatekey = DIR/aux-fixed/cert1
22
23
24# ----- ACLs -----
25
26begin acl
27
28check_rcpt:
29 accept local_parts = userx
30
31 defer local_parts = usery
32 hosts = 127.0.0.1
33
eb963db2 34 accept delay = 1s
afda344b
PH
35
36
37# ----- Routers -----
38
39begin routers
40
41r0:
42 driver = accept
43 condition = ${if !eq {$sender_host_address}{}}
44 transport = t2
45
46r1:
47 driver = accept
48 transport = t1
49
50
51# ----- Transports -----
52
53begin transports
54
55t1:
56 driver = smtp
57 hosts = 127.0.0.1 : HOSTIPV4
58 port = PORT_D
59 allow_localhost
610ff438 60 tls_try_verify_hosts = :
afda344b
PH
61
62t2:
63 driver = appendfile
64 file = /dev/null
65 user = CALLER
66
67# End