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