Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 3450
CommitLineData
afda344b
PH
1# Exim test configuration 3450
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex
14hostlist auth_over_tls_hosts = 127.0.0.1
15
16acl_smtp_auth = check_auth
17
18tls_advertise_hosts = *
19tls_certificate = DIR/aux-fixed/cert1
20tls_privatekey = DIR/aux-fixed/cert1
21
22
23# ----- ACL -----
24
25begin acl
26check_auth:
27 accept hosts = +auth_over_tls_hosts
28 endpass
29 message = STARTTLS required before AUTH
30 encrypted = *
31 accept
32
33
34# ----- Authenticators -----
35
36
37begin authenticators
38
39plain:
40 driver = plaintext
41 public_name = PLAIN
42 server_condition = "\
43 ${if and {{eq{$2}{userx}}{eq{$3}{secret}}}{yes}{no}}"
44 server_set_id = $2
45
46# End