Fix CVE-2016-1531
[exim.git] / test / confs / 9350
1 # Exim test configuration 3650
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = check_recipient
17
18 tls_advertise_hosts = *
19 tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
20 tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
21
22 tls_verify_hosts = HOSTIPV4
23 tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
24
25
26 # ----- ACL -----
27
28 begin acl
29
30 check_recipient:
31   deny     message = authentication required
32           !authenticated = *
33   accept
34
35
36 # ----- Authentication -----
37
38 begin authenticators
39
40 dovecot:
41   driver = dovecot
42   public_name = PLAIN
43   server_socket = /var/run/dovecot/auth-client
44   server_set_id = $auth1
45
46 # End