sender verify callout
[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
13
14# ----- Main settings -----
15
16acl_smtp_rcpt = check_recipient
17
18queue_only
19
20# ----- ACL -----
21
22begin acl
23
24check_recipient:
25 # Callouts accepted with a delay
26 accept senders = :
27 delay = 1s
28
29 # Non-callouts do the callout
30 accept verify = recipient/callout
31 DCF
32
33
34# ----- Routers -----
35
36begin routers
37
38t1:
39 driver = manualroute
40 route_list = * 127.0.0.1 byname
41 self = send
42 transport = smtp
43
44
45# ----- Transports -----
46
47begin transports
48
49smtp:
50 driver = smtp
51 port = PORT_D
52 command_timeout = 2s
53
54
55# ----- Retry -----
56
57begin retry
58
59* * F,5d,10s
60
61
62# End