sender verify callout
[exim.git] / test / confs / 5401
CommitLineData
528fde2a
JH
1# Exim test configuration 5401
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
528fde2a
JH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex : *.test.ex
14
15acl_smtp_rcpt = acl_rcpt
16
17# ----- ACLs -------
18
19begin acl
20
21acl_rcpt:
22 accept control = cutthrough_delivery
23 verify = recipient
24
25
26# ----- Routers -----
27
28begin routers
29
30all:
31 driver = manualroute
32 domains = ! +local_domains
33 route_list = * 127.0.0.1
34 self = send
35 transport = smtp
36 no_more
37
38
39# ----- Transports -----
40
41begin transports
42
43smtp:
44 driver = smtp
45 interface = HOSTIPV4
46 port = PORT_S
47
48
49# End