Fix dcc_header content corruption.
[exim.git] / test / confs / 9901
CommitLineData
afda344b
PH
1# Exim test configuration 9901
2
3COM=
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = accept
18qualify_domain = test.ex
19queue_run_in_order
20smtp_receive_timeout = 1s
21
22
23# ----- Routers -----
24
25begin routers
26
27# These are commented out for the server
28
29COM r1:
30COM driver = accept
31COM domains = no.delay
32COM transport = t1
33
34COM r2:
35COM driver = dnslookup
36COM transport = t1
37
38# This is the only one available for the server
39
40r3:
41 driver = accept
42 transport = t2
43
44
45# ----- Transports -----
46
47begin transports
48
49t1:
50 driver = smtp
51 allow_localhost
52 hosts = 127.0.0.1
53 hosts_override
54 port = PORT_D
55
56t2:
57 driver = appendfile
58 file = /dev/null
59 user = CALLER
60
61
62# ----- Retry -----
63
64begin retry
65
66* * F,1d,10m
67
68
69# End