Fix CVE-2016-1531
[exim.git] / test / confs / 2005
1 # Exim test configuration 2005
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 rfc1413_query_timeout = 0s
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = check_recipient
16
17 domainlist local_domains = test.ex
18 hostlist tls_relay_hosts = 127.0.0.1
19
20 queue_only
21 queue_run_in_order
22
23 tls_advertise_hosts = *
24
25 tls_certificate = DIR/aux-fixed/cert1
26 tls_privatekey = DIR/aux-fixed/cert1
27
28 # ----- ACL -----
29
30 begin acl
31
32 check_recipient:
33   accept  domains = +local_domains
34   accept  hosts = +tls_relay_hosts
35           endpass
36           message = encryption required
37           encrypted = *
38   deny    message = relay not permitted
39
40
41 # ----- Routers -----
42
43 begin routers
44
45 fail_remote_domains:
46   driver = redirect
47   domains = ! +local_domains
48   data = :fail: unrouteable mail domain "$domain"
49
50 abc:
51   driver = accept
52   retry_use_local_part
53   transport = local_delivery
54
55
56 # ----- Transports -----
57
58 begin transports
59
60 local_delivery:
61   driver = appendfile
62   file = DIR/test-mail/$local_part
63   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
64   user = CALLER
65
66 # End