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