New ${env {NAME}} expansion. Bug 1604
[exim.git] / test / confs / 2119
CommitLineData
afda344b
PH
1# Exim test configuration 2119
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
13acl_smtp_rcpt = check_recipient
14
15log_selector = +tls_peerdn
16
17queue_only
18queue_run_in_order
19
20tls_advertise_hosts = *
21
22tls_certificate = DIR/aux-fixed/cert1
23tls_privatekey = DIR/aux-fixed/cert1
24
25tls_verify_hosts = HOSTIPV4
26tls_verify_certificates = DIR/aux-fixed/cert2
27
28
29# ------ ACL ------
30
31begin acl
32
33check_recipient:
34 accept hosts = :
35 deny hosts = HOSTIPV4
36 !encrypted = AES256-SHA:\
6bf5d8f2 37 AES256-GCM-SHA384:\
b770cfbe 38 AES128-GCM-SHA256:\
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
57
58# ----- Transports -----
59
60begin transports
61
62local_delivery:
63 driver = appendfile
64 file = DIR/test-mail/$local_part
65 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
66 user = CALLER
67
68# End