blob: b041a9c8a41c30b6bd34228c708ee7b6bcc9554c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Exim test configuration 1151
.include DIR/aux-var/tls_conf_prefix
primary_hostname = myhost.test.ex
# ----- Main settings -----
tls_advertise_hosts = *
tls_certificate = DIR/tmp/certs/servercert
tls_privatekey = DIR/tmp/certs/serverkey
tls_try_verify_hosts = *
tls_verify_certificates = DIR/aux-fixed/exim-ca/example.org/server2.example.org/ca_chain.pem
queue_only
log_selector = +millisec
# --- ACL ---
acl_smtp_rcpt = accept
# ----
begin routers
all:
driver = accept
transport = smtp
begin transports
smtp:
driver = smtp
hosts = 127.0.0.1
allow_localhost
port = PORT_D
hosts_try_fastopen = :
tls_certificate = DIR/aux-fixed/exim-ca/example.org/server2.example.org/server2.example.org.pem
tls_privatekey = DIR/aux-fixed/exim-ca/example.org/server2.example.org/server2.example.org.unlocked.key
tls_verify_certificates = DIR/aux-fixed/cert1
tls_verify_cert_hostnames = :
# End
|