Fix CVE-2016-1531
[exim.git] / test / confs / 3464
1 # Exim test configuration 3464
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
17 log_selector = +smtp_no_mail
18
19 tls_advertise_hosts = *
20 tls_certificate = DIR/aux-fixed/cert1
21 tls_privatekey = DIR/aux-fixed/cert1
22
23
24 # ----- Authenticators -----
25
26 begin authenticators
27
28 plain:
29   driver = plaintext
30   public_name = PLAIN
31   server_condition = "\
32     ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
33   server_set_id = $2
34
35 # End