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