6dbc06d64242e5e48765e17c35e69dd79110d48c
[exim.git] / test / confs / 0580
1 # Exim test configuration 0580
2
3 OPT =
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = check_rcpt
12
13 log_selector = +received_recipients
14 OPT
15
16 # ----- ACLs -----
17
18 begin acl
19
20 check_rcpt:
21   accept  verify = recipient/callout=use_sender,hold
22
23
24 # ----- Routers -----
25
26 begin routers
27
28 r1:
29   driver = manualroute
30   route_list = * 127.0.0.1
31   self = send
32   transport = t1
33
34
35 begin transports
36
37 t1:
38   driver = smtp
39   port =   PORT_S
40   hosts_try_fastopen = :
41
42
43 # ----- Retry -----
44 begin retry
45
46 * * F,5d,10s
47 # End