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