Guard loadable module vars with LOOKUP_MODULE_DIR.
[exim.git] / test / confs / 3450
CommitLineData
afda344b
PH
1# Exim test configuration 3450
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
14domainlist local_domains = test.ex
15hostlist auth_over_tls_hosts = 127.0.0.1
16
17acl_smtp_auth = check_auth
18
19tls_advertise_hosts = *
20tls_certificate = DIR/aux-fixed/cert1
21tls_privatekey = DIR/aux-fixed/cert1
22
23
24# ----- ACL -----
25
26begin acl
27check_auth:
28 accept hosts = +auth_over_tls_hosts
29 endpass
30 message = STARTTLS required before AUTH
31 encrypted = *
32 accept
33
34
35# ----- Authenticators -----
36
37
38begin authenticators
39
40plain:
41 driver = plaintext
42 public_name = PLAIN
43 server_condition = "\
44 ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
45 server_set_id = $2
46
47# End