Another small test tweak.
[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
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 = *
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:\
38 IDEA-CBC-MD5:\
39 DES-CBC3-SHA:\
40 DHE_RSA_AES_256_CBC_SHA1:\
41 DHE_RSA_3DES_EDE_CBC_SHA
42 accept
43
44
45# ----- Routers -----
46
47begin routers
48
49abc:
50 driver = accept
51 retry_use_local_part
52 transport = local_delivery
53
54
55# ----- Transports -----
56
57begin transports
58
59local_delivery:
60 driver = appendfile
61 file = DIR/test-mail/$local_part
62 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
63 user = CALLER
64
65# End