CRL addition returns count of CRLs added
[exim.git] / test / confs / 2103
CommitLineData
afda344b
PH
1# Exim test configuration 2103
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
16queue_only
17queue_run_in_order
18
19tls_certificate = DIR/aux-fixed/cert1
20tls_privatekey = DIR/aux-fixed/cert1
21
22tls_advertise_hosts = *
23
24
25# ------ ACL ------
26
27begin acl
28
29check_recipient:
30 deny message = unacceptable cipher $tls_cipher
31 !encrypted = ${if eq {$sender_host_address}{HOSTIPV4}{IDEA-CBC-MD5}{*}}
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
56# ----- Retry -----
57
58
59begin retry
60
61* * F,5d,10s
62
63
64# End