Fix CVE-2016-1531
[exim.git] / test / confs / 3409
1 # Exim test configuration 3409
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10 tls_advertise_hosts =
11
12 # ----- Main settings -----
13
14 acl_smtp_etrn = accept
15 log_selector =  \
16               +smtp_syntax_error \
17               +smtp_protocol_error
18 recipients_max = 5
19 smtp_max_synprot_errors = 1000
20
21
22 # ----- Authentication -----
23
24 begin authenticators
25
26 plain:
27   driver = plaintext
28   public_name = PLAIN
29   server_condition = "\
30     ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
31   server_set_id = $2
32
33 # End