Fix CVE-2016-1531
[exim.git] / test / confs / 3463
1 # Exim test configuration 3463
2
3 REMEMBER=false
4
5 exim_path = EXIM_PATH
6 keep_environment =
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 rfc1413_query_timeout = 0s
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 domainlist local_domains = test.ex
18
19 tls_advertise_hosts = *
20 tls_certificate = DIR/aux-fixed/cert1
21 tls_privatekey = DIR/aux-fixed/cert1
22 tls_remember_esmtp = REMEMBER
23
24
25 # ----- Authenticators -----
26
27 begin authenticators
28
29 plain:
30   driver = plaintext
31   public_name = PLAIN
32   server_condition = "\
33     ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
34   server_set_id = $2
35
36 # End