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