4938573d7306067ab494bd5626d95ce9b68e34da
[exim.git] / test / confs / 0478
1 # Exim test configuration 0478
2
3 SERVER=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/SERVER%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept
15 deliver_drop_privilege
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 r1:
23   driver = accept
24   transport = t1
25
26
27 # ----- Transports -----
28
29 begin transports
30
31 t1:
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
41 begin retry
42
43 * *  F,1d,2h
44
45
46 # End