Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 0209
1 # Exim test configuration 0209
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 acl_smtp_rcpt = check_recipient
9 domainlist local_domains = test.ex
10 qualify_domain = test.ex
11 queue_run_in_order
12
13 # ----- ACL -----
14
15 begin acl
16
17 check_recipient:
18 accept hosts = :
19 accept domains = +local_domains
20 deny message = relay not permitted
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 others:
28 driver = manualroute
29 domains = ! +local_domains
30 route_list = * 127.0.0.1 byname
31 self = send
32 transport = smtp
33 no_more
34
35 # ----- Transports -----
36
37 begin transports
38
39 smtp:
40 driver = smtp
41 port = PORT_S
42 hosts_try_fastopen = :
43
44
45 # ----- Retry -----
46
47 begin retry
48
49 * * F,5d,8h
50
51
52 # End