Expansions: new ${authresults {mch}} for an Authentication-Results header
[exim.git] / test / confs / 0538
1 # Exim test configuration 0538
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_mail = check_mail
10 acl_smtp_rcpt = check_rcpt
11
12
13 # ----- ACLs -----
14
15 begin acl
16
17 check_mail:
18 accept sender_domains = broken.example
19 endpass
20 verify = sender/callout
21 accept
22
23 check_rcpt:
24 accept verify = recipient/callout=use_sender
25
26
27 # ----- Routers -----
28
29 begin routers
30
31 r1:
32 driver = manualroute
33 route_list = * "<= 127.0.0.1:PORT_S"
34 self = send
35 verify_only
36 transport = t1
37
38
39 begin transports
40
41 t1:
42 driver = smtp
43
44
45 # End