Dovecot auth: inet socket. Bug 2280
[exim.git] / test / confs / 9350
CommitLineData
7d2f2d36 1# Exim test configuration 9350
ef85a786
PH
2
3SERVER=
4
d4dc049f
JH
5.include DIR/aux-var/std_conf_prefix
6
ef85a786 7primary_hostname = myhost.test.ex
ef85a786
PH
8
9# ----- Main settings -----
10
11acl_smtp_rcpt = check_recipient
12
7befa435
PH
13tls_advertise_hosts = *
14tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
15tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
16
17tls_verify_hosts = HOSTIPV4
18tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
19
ef85a786
PH
20
21# ----- ACL -----
22
23begin acl
24
25check_recipient:
26 deny message = authentication required
27 !authenticated = *
28 accept
29
30
31# ----- Authentication -----
32
33begin authenticators
34
35dovecot:
36 driver = dovecot
37 public_name = PLAIN
38 server_socket = /var/run/dovecot/auth-client
39 server_set_id = $auth1
40
41# End