Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0478
CommitLineData
afda344b
PH
1# Exim test configuration 0478
2
3SERVER=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/SERVER%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_smtp_rcpt = accept
15deliver_drop_privilege
16
17
18# ----- Routers -----
19
20begin routers
21
22r1:
23 driver = accept
24 transport = t1
25
26
27# ----- Transports -----
28
29begin transports
30
31t1:
32 driver = smtp
33 port = PORT_D
34 hosts = ${if eq {$sender_host_address}{}{$local_part}{V4NET.0.0.2}}
35 allow_localhost
36 connect_timeout = 1s
37
38
39# ----- Retry -----
40
41begin retry
42
43* * F,1d,2h
44
45
46# End