Renumbered test.
[exim.git] / test / confs / 9350
CommitLineData
ef85a786
PH
1# Exim test configuration 3650
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
8rfc1413_query_timeout = 0s
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = check_recipient
17
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 deny message = authentication required
25 !authenticated = *
26 accept
27
28
29# ----- Authentication -----
30
31begin authenticators
32
33dovecot:
34 driver = dovecot
35 public_name = PLAIN
36 server_socket = /var/run/dovecot/auth-client
37 server_set_id = $auth1
38
39# End