Fix CVE-2016-1531
[exim.git] / test / confs / 2118
1 # Exim test configuration 2118
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 queue_only
16
17 tls_advertise_hosts = *
18 tls_certificate = DIR/aux-fixed/cert1
19 tls_privatekey = DIR/aux-fixed/cert1
20
21 acl_smtp_rcpt = acl_tls
22
23 # ------ ACLs ------
24
25 begin acl
26
27 acl_tls:
28   accept endpass
29          message = "You must encrypt"
30          encrypted = *
31
32 # End