Disable identd (rfc1413) lookups by default
[exim.git] / test / confs / 0285
CommitLineData
afda344b
PH
1# Exim test configuration 0285
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13qualify_domain = test.ex
14remote_max_parallel = 1
15
16
17# ----- Routers -----
18
19begin routers
20
21bounces:
22 driver = redirect
23 senders = :
24 data = :blackhole:
25
26all:
27 driver = manualroute
28 route_list = * 127.0.0.1 byname
29 self = send
30 transport = smtp
31
32
33# ----- Transports -----
34
35begin transports
36
37smtp:
38 driver = smtp
39 port = PORT_S
40 max_rcpt = 2
41 connection_max_messages = 3
42
43
44# ----- Retry -----
45
46
47begin retry
48
49* * F,1h,10m
50
51
52# End