Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0025
CommitLineData
afda344b
PH
1# Exim test configuration 0025
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
13domainlist local_domains = test.ex
14domainlist relay_domains = ten-1.test.ex
15
16acl_smtp_rcpt = acl_local
17
18# ------ ACLs ------
19
20begin acl
21
22acl_local:
23 # Pass on for non-remote input (should all be)
24 require message = this message should not occur
25 hosts = :
26
27 # The redundant hosts check is just to ensure it works
28 accept verify = sender
29 verify = recipient
30 hosts = :
31
32# ------ Routers ------
33
34begin routers
35
36r1:
37 driver = dnslookup
38 domains = ! +local_domains
39 transport = dev_null
40 no_more
41
42r2:
43 driver = accept
44 local_parts = userx : postmaster
45 transport = local_delivery
46
47
48# ------ Transports ------
49
50begin transports
51
52dev_null:
53 driver = appendfile
54 file = /dev/null
55 user = CALLER
56
57local_delivery:
58 driver = appendfile
59 file = DIR/test-mail/$local_part
60 user = CALLER
61
62# End