Guard loadable module vars with LOOKUP_MODULE_DIR.
[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
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = accept
15
16
17# ----- Authentication -----
18
19begin authenticators
20
21plain1:
22 driver = plaintext
23 public_name = PLAIN
24 server_condition = \
25 ${if or {\
26 {and {{eq{$2}{userx}}{eq{$3}{secret}}}}\
27 {and {{eq{$2}{usery}}{eq{$3}{ab?}}}}\
28 }\
29 {yes}{no}}
30 server_set_id = $2
31 server_mail_auth_condition = ${if eq{$authenticated_id}{userx}{yes}}
32
33# End