Routers: make retry_use_local_part default true when any non-domain condition is...
[exim.git] / test / confs / 3209
1 # Exim test configuration 3209
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6 qualify_domain = test.ex
7
8 # ----- Main settings -----
9
10 domainlist local_domains = test.ex
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 lookuphost:
18 driver = dnslookup
19 domains = ! +local_domains
20 mx_domains = localhost : testdb;defer
21 transport = smtp
22 no_more
23
24
25 # ----- Transports -----
26
27 begin transports
28
29 smtp:
30 driver = smtp
31 connect_timeout = 1s
32
33
34 # ----- Retry -----
35
36
37 begin retry
38
39 * * F,1h,10m
40
41
42 # End