Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 0294
1 # Exim test configuration 0294
2
3 .include DIR/aux-var/std_conf_prefix
4
5 trusted_users = CALLER
6 primary_hostname = myhost.test.ex
7
8 # ----- Main settings -----
9
10 acl_smtp_rcpt = deny local_parts = reject\n accept
11
12 smtp_ratelimit_mail = 1,1s,5,2s
13 smtp_ratelimit_rcpt = 1, 0.25s, 1.05, 1s
14 smtp_ratelimit_hosts = : V4NET.9.8.7
15
16
17 # ------ Routers ------
18
19 begin routers
20
21 r1:
22 driver = accept
23 transport = t1
24
25
26 # ------ Transports ------
27
28 begin transports
29
30 t1:
31 driver = appendfile
32 file = /dev/null
33 user = CALLER
34
35 # End