update to pre-4.87 master
[exim.git] / test / confs / 0553
CommitLineData
4c590bd1
PH
1# Exim test configuration 0553
2
3DCF =
4SERVER =
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
4c590bd1
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/SERVER%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
bfe645c1 13tls_advertise_hosts =
4c590bd1
PH
14
15# ----- Main settings -----
16
17acl_smtp_rcpt = check_recipient
18
19queue_only
20
21# ----- ACL -----
22
23begin acl
24
25check_recipient:
26 # Callouts accepted with a delay
27 accept senders = :
28 delay = 1s
29
30 # Non-callouts do the callout
31 accept verify = recipient/callout
32 DCF
33
34
35# ----- Routers -----
36
37begin routers
38
39t1:
40 driver = manualroute
41 route_list = * 127.0.0.1 byname
42 self = send
43 transport = smtp
44
45
46# ----- Transports -----
47
48begin transports
49
50smtp:
51 driver = smtp
52 port = PORT_D
53 command_timeout = 2s
54
55
56# ----- Retry -----
57
58begin retry
59
60* * F,5d,10s
61
62
63# End