033082e892dbdc9d135f2d7adbcb503202f0e6a5
[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 RETRY1=1s
6 RETRY2=2s
7
8 exim_path = EXIM_PATH
9 host_lookup_order = bydns
10 primary_hostname = myhost.test.ex
11 spool_directory = DIR/spool
12 log_file_path = DIR/spool/log/%slog
13 gecos_pattern = ""
14 gecos_name = CALLER_NAME
15
16
17 # ----- Main settings -----
18
19 qualify_domain = test.ex
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 r0:
27   driver = accept
28   senders = :
29   transport = t2
30
31 r1:
32   driver = manualroute
33   route_data = ROUTE_DATA
34   transport = t1
35   FALLBACK
36
37 # ----- Transports -----
38
39 begin transports
40
41 t1:
42   driver = smtp
43   port = PORT_S
44   connect_timeout = 1s
45   allow_localhost
46
47 t2:
48   driver = appendfile
49   file = DIR/test-mail/$local_part
50   user = CALLER
51
52
53 # ----- Retry -----
54
55 begin retry
56
57 V4NET.0.0.1  * F,1s,RETRY1
58 V4NET.0.0.2  * F,1s,RETRY2
59 *            * F,1d,1s
60
61
62 # End