Fix broken doc links and http→https where possible
[exim.git] / test / confs / 0099
... / ...
CommitLineData
1# Exim test configuration 0099
2
3RETRY =
4
5.include DIR/aux-var/std_conf_prefix
6
7
8# ----- Main settings -----
9
10primary_hostname = primary.test.ex
11qualify_domain = test.ex
12retry_data_expire = 2s
13log_selector = +received_recipients
14
15
16# ----- Routers -----
17
18begin routers
19
20bydns:
21 driver = dnslookup
22 domains = mxt2.test.ex : mxnonexist.test.ex
23 transport = smtp
24 fail_defer_domains = *
25
26all:
27 driver = manualroute
28 route_list = simple thishost.test.ex byname \
29 ; complex thisloop.test.ex byname \
30 ; nonexist nonexist.test.ex byname \
31 ; * 127.0.0.1 byname
32 self = send
33 host_find_failed = defer
34 transport = smtp
35
36
37# ----- Transports -----
38
39begin transports
40
41smtp:
42 driver = smtp
43 port = 999
44 RETRY
45
46
47# ----- Retry -----
48
49begin retry
50
51* * senders=: G,1d,1m,1.5
52* * senders = "a@b.c : d@e.f" G,2d,2m,1.5
53
54rcpt45x.test.ex rcpt_45x F,10d,2m
55rcpt463.test.ex rcpt_463 F,10d,3m
56rcpt4xx.test.ex rcpt_4xx F,10d,1m
57* lookup F,10d,30m
58
59*@\N^\d * F,5d,1m
60*@*.abcd.ex * F,5d,2m
61*@literal.ex * F,5d,3m
62*@lsearch;DIR/aux-fixed/TESTNUM.rlist2 * F,5d,4m
63*@@[] * F,5d,5m
64*@@ * F,5d,6m
65lsearch*@;DIR/aux-fixed/TESTNUM.rlist * F,1d,3m
66*.star.ex * F,3d,10m
67!*.not.ex * F,2d,15m
68* * F,12d,150m
69
70# End