Dovecot test needs renumbering (shouldn't be run automatically).
[exim.git] / test / confs / 0461
CommitLineData
afda344b
PH
1# Exim test configuration 0461
2
3FALLBACK=fallback_hosts = 127.0.0.1
4ROUTE_DATA=V4NET.0.0.1
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/%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15
16# ----- Main settings -----
17
18qualify_domain = test.ex
19
20
21# ----- Routers -----
22
23begin routers
24
25r0:
26 driver = accept
27 senders = :
28 transport = t2
29
30r1:
31 driver = manualroute
32 route_data = ROUTE_DATA
33 transport = t1
34 FALLBACK
35
36# ----- Transports -----
37
38begin transports
39
40t1:
41 driver = smtp
42 port = PORT_S
43 connect_timeout = 1s
44 allow_localhost
45
46t2:
47 driver = appendfile
48 file = DIR/test-mail/$local_part
49 user = CALLER
50
51
52# ----- Retry -----
53
54begin retry
55
56V4NET.0.0.1 * F,1s,1s
57V4NET.0.0.2 * F,1s,2s
58* * F,1d,1s
59
60
61# End