Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 3402
CommitLineData
afda344b
PH
1# Exim test configuration 3402
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13acl_smtp_rcpt = accept
14
15
16# ----- Authentication -----
17
18begin authenticators
19
20plain1:
21 driver = plaintext
22 public_name = PLAIN
23 server_condition = \
24 ${if or {\
25 {and {{eq{$2}{userx}}{eq{$3}{secret}}}}\
26 {and {{eq{$2}{usery}}{eq{$3}{ab?}}}}\
27 }\
28 {yes}{no}}
29 server_set_id = $2
30 server_mail_auth_condition = ${if eq{$authenticated_id}{userx}{yes}}
31
32# End