Restrict line lengths in bounces. Bug 1760
[exim.git] / test / confs / 2003
CommitLineData
afda344b
PH
1# Exim test configuration 2003
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
14
15queue_only
16queue_run_in_order
17
18tls_certificate = DIR/aux-fixed/cert1
19tls_privatekey = DIR/aux-fixed/cert1
20
21tls_advertise_hosts = *
22
23
24# ------ ACL ------
25
26begin acl
27
28check_recipient:
29 deny message = unacceptable cipher $tls_cipher
30 !encrypted = ${if eq {$sender_host_address}{HOSTIPV4}{IDEA-CBC-MD5}{*}}
31 accept
32
33
34# ----- Routers -----
35
36begin routers
37
38abc:
39 driver = accept
40 retry_use_local_part
41 transport = local_delivery
42
43
44# ----- Transports -----
45
46begin transports
47
48local_delivery:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
52 user = CALLER
53
54
55# ----- Retry -----
56
57
58begin retry
59
60* * F,5d,10s
61
62
63# End