Drop mistakenly-added test config
[exim.git] / test / confs / 0566
CommitLineData
3c0a92dc 1# Exim test configuration 0566
2668ed87
TL
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
3c0a92dc 9log_selector = +8bitmime
2668ed87
TL
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15domainlist local_domains = test.ex
16
17acl_smtp_rcpt = acl_rcpt
18acl_smtp_data = acl_data
19
20
21# ------ ACLs ------
22
23begin acl
24
25acl_rcpt:
26 accept endpass
27 message = SIZE value too big
28 condition = ${if > {$message_size}{10000}{no}{yes}}
29
30acl_data:
31 accept endpass
32 message = message too big - \$recipients=$recipients ($recipients_count)
33 condition = ${if > {$message_size}{10000}{no}{yes}}
34
35
36# ------ Routers ------
37
38begin routers
39
40r1:
41 driver = dnslookup
42 domains = ! +local_domains
43 transport = dev_null
44 no_more
45
46r2:
47 driver = accept
48 local_parts = userx : postmaster
49 transport = local_delivery
50
51
52# ------ Transports ------
53
54begin transports
55
56dev_null:
57 driver = appendfile
58 file = /dev/null
59 user = CALLER
60
61local_delivery:
62 driver = appendfile
63 file = DIR/test-mail/$local_part
64 user = CALLER
65
66# End