Add variables for wildcard portion of local-part affix. Bug 281
[exim.git] / test / confs / 0432
CommitLineData
afda344b
PH
1# Exim test configuration 0432
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9# This isn't relevant - it's just here to test that -odi
10# can override it.
11
12acl_smtp_mail = mail
13
14
15# ----- ACLs -----
16
17begin acl
18
19mail:
20 accept verify = sender/callout=1s,maxwait=1s
21
22
23# ----- Routers -----
24
25begin routers
26
27r1:
28 driver = accept
29 transport = t1
30
31
32# ----- Transports -----
33
34begin transports
35
36t1:
37 driver = smtp
38 hosts = <; 127.0.0.1 ;
39 port = PORT_S
277b9979 40 hosts_try_fastopen = :
afda344b
PH
41 allow_localhost
42
43# End