summaryrefslogtreecommitdiff
path: root/test/confs/3700
blob: 94bd26ebdf3c0ab7107effbcfcaf3317e5fc7243 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Exim test configuration 3700

SERVER=

.include DIR/aux-var/tls_conf_prefix

primary_hostname = myhost.test.ex
log_selector = +received_recipients +outgoing_port

# ----- Main settings -----

acl_smtp_mail = check_authd
acl_smtp_rcpt = check_authd
queue_only
queue_run_in_order
trusted_users = CALLER

tls_on_connect_ports = PORT_S
tls_advertise_hosts = *
tls_certificate = DIR/aux-fixed/cert1

tls_verify_hosts = *
tls_verify_certificates = DIR/aux-fixed/cert2


# ----- ACL -----

begin acl

check_authd:
  deny     message = authentication required
          !authenticated = *
  accept


# ----- Authentication -----

begin authenticators

tls:
  driver = tls
  server_debug_print = +++TLS \$auth1="$auth1"
  server_param1 =    ${quote:${certextract {subject,CN,>:} \
                                  {$tls_in_peercert}}}
  server_condition = ${if def:auth1}
  server_set_id =    $auth1


# ----- Routers -----

begin routers

r1:
  driver = accept
  transport = ${if eq {$local_part}{smtps} {t2}{t1}}


# ----- Transports -----

begin transports

t1:
  driver = smtp
  hosts = 127.0.0.1
  port = PORT_D
  allow_localhost
  tls_certificate =         DIR/aux-fixed/cert2
  tls_verify_certificates = DIR/aux-fixed/cert1
  tls_verify_cert_hostnames = :

t2:
  driver = smtp
  hosts = 127.0.0.1
  port = PORT_S
  protocol = smtps
  allow_localhost
  tls_certificate =         DIR/aux-fixed/cert2
  tls_verify_certificates = DIR/aux-fixed/cert1
  tls_verify_cert_hostnames = :

# End