Logging: support +outgoing_port on defer lines and per-host error lines
[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
ef85a786
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/SERVER%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = check_recipient
16
7befa435
PH
17tls_advertise_hosts = *
18tls_certificate = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
19tls_privatekey = ${if eq {SERVER}{server}{DIR/aux-fixed/cert1}fail}
20
21tls_verify_hosts = HOSTIPV4
22tls_verify_certificates = ${if eq {SERVER}{server}{DIR/aux-fixed/cert2}fail}
23
ef85a786
PH
24
25# ----- ACL -----
26
27begin acl
28
29check_recipient:
30 deny message = authentication required
31 !authenticated = *
32 accept
33
34
35# ----- Authentication -----
36
37begin authenticators
38
39dovecot:
40 driver = dovecot
41 public_name = PLAIN
42 server_socket = /var/run/dovecot/auth-client
43 server_set_id = $auth1
44
45# End