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