Expansions: new ${authresults {mch}} for an Authentication-Results header
[exim.git] / test / confs / 5401
1 # Exim test configuration 5401
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10
11 acl_smtp_rcpt = acl_rcpt
12
13 # ----- ACLs -------
14
15 begin acl
16
17 acl_rcpt:
18 accept control = cutthrough_delivery
19 verify = recipient/callout=use_sender
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 all:
27 driver = manualroute
28 domains = ! +local_domains
29 route_list = * 127.0.0.1
30 self = send
31 transport = smtp
32 no_more
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 smtp:
40 driver = smtp
41 interface = HOSTIPV4
42 port = PORT_S
43
44
45 # End