Merge branch 'master' into 4.next
[exim.git] / test / confs / 0499
... / ...
CommitLineData
1# Exim test configuration 0499
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9domainlist anymx = @mx_any
10disable_ipv6
11
12
13# ----- Routers -----
14
15begin routers
16
17r1:
18 driver = accept
19 domains = +anymx
20 condition = ${if match_domain{$domain}{+anymx}{yes}}
21 transport = t1
22
23
24# ----- Transports -----
25
26begin transports
27
28t1:
29 driver = smtp
30
31
32# End