Drop mistakenly-added test config
[exim.git] / test / confs / 2102
CommitLineData
afda344b
PH
1# Exim test configuration 2102
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
6rfc1413_query_timeout = 0s
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = check_recipient
15
16log_selector = +tls_peerdn
17
18queue_only
19queue_run_in_order
20
21tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
22
23tls_certificate = DIR/aux-fixed/cert1
24tls_privatekey = DIR/aux-fixed/cert1
25
26tls_verify_hosts = HOSTIPV4
27tls_verify_certificates = DIR/aux-fixed/cert2
28
29
30# ------ ACL ------
31
32begin acl
33
34check_recipient:
35 accept hosts = :
36 deny hosts = HOSTIPV4
37 !encrypted = AES256-SHA : \
6bf5d8f2 38 AES256-GCM-SHA384 : \
afda344b
PH
39 IDEA-CBC-MD5 : \
40 DES-CBC3-SHA : \
b265a59b 41 DHE-RSA-AES256-SHA : \
1508acb8 42 DHE-RSA-AES256-GCM-SHA384 : \
afda344b
PH
43 DHE_RSA_AES_256_CBC_SHA1 : \
44 DHE_RSA_3DES_EDE_CBC_SHA
45 accept
46
47
48# ----- Routers -----
49
50begin routers
51
52abc:
53 driver = accept
54 retry_use_local_part
55 transport = local_delivery
56 headers_add = tls-certificate-verified: $tls_certificate_verified
57
58
59# ----- Transports -----
60
61begin transports
62
63local_delivery:
64 driver = appendfile
65 file = DIR/test-mail/$local_part
66 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
67 user = CALLER
68
69# End