Another small test tweak.
[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
7befa435
PH
18tls_advertise_hosts = *
19tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
20tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
21
22tls_verify_hosts = HOSTIPV4
23tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
24
ef85a786
PH
25
26# ----- ACL -----
27
28begin acl
29
30check_recipient:
31 deny message = authentication required
32 !authenticated = *
33 accept
34
35
36# ----- Authentication -----
37
38begin authenticators
39
40dovecot:
41 driver = dovecot
42 public_name = PLAIN
43 server_socket = /var/run/dovecot/auth-client
44 server_set_id = $auth1
45
46# End