update to pre-4.87 master
[exim.git] / test / confs / 2104
CommitLineData
afda344b
PH
1# Exim test configuration 2104
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
14hostlist tls_hosts = 127.0.0.1
15
16queue_only
17queue_run_in_order
18
19tls_certificate = DIR/aux-fixed/cert1
20tls_privatekey = DIR/aux-fixed/cert1
21
22tls_advertise_hosts = 127.0.0.1 : HOSTIPV4
23
24# ----- ACL -----
25
26begin acl
27
28check_recipient:
29 deny hosts = +tls_hosts
30 message = encryption required
31 !encrypted = *
32 accept
33
34
35# ----- Routers -----
36
37begin routers
38
39abc:
40 driver = accept
41 retry_use_local_part
42 transport = local_delivery
43
44
45# ----- Transports -----
46
47begin transports
48
49local_delivery:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
53 user = CALLER
54
55# End