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