Fix CVE-2016-1531
[exim.git] / test / confs / 3460
1 # Exim test configuration 3460
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 domainlist local_domains = test.ex
16 hostlist auth_over_tls_hosts = 127.0.0.1
17
18 acl_smtp_auth = check_auth
19
20 tls_advertise_hosts = *
21 tls_certificate = DIR/aux-fixed/cert1
22 tls_privatekey = DIR/aux-fixed/cert1
23
24
25 # ----- ACL -----
26
27 begin acl
28 check_auth:
29   accept  hosts = +auth_over_tls_hosts
30           endpass
31           message = STARTTLS required before AUTH
32           encrypted = *
33   accept
34
35
36 # ----- Authenticators -----
37
38
39 begin authenticators
40
41 plain:
42   driver = plaintext
43   public_name = PLAIN
44   server_condition = "\
45     ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
46   server_set_id = $2
47
48 # End