Testsuite: avoid ipv6 when testing retry data
[exim.git] / test / confs / 0099
1 # Exim test configuration 0099
2
3 RETRY =
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 rfc1413_query_timeout = 0s
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13 # ----- Main settings -----
14
15 primary_hostname = primary.test.ex
16 qualify_domain = test.ex
17 retry_data_expire = 2s
18 log_selector = +received_recipients
19
20
21 # ----- Routers -----
22
23 begin routers
24
25 all:
26   driver = manualroute
27   route_list = simple  thishost.test.ex  byname \
28              ; complex thisloop.test.ex  byname \
29              ; *       127.0.0.1         byname
30   self = send
31   transport = smtp
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 smtp:
39   driver = smtp
40   port = 999
41   RETRY
42
43
44 # ----- Retry -----
45
46 begin retry
47
48 *       *     senders=:                    G,1d,1m,1.5
49 *       *     senders = "a@b.c : d@e.f"    G,2d,2m,1.5
50
51 rcpt45x.test.ex              rcpt_45x      F,10d,2m
52 rcpt463.test.ex              rcpt_463      F,10d,3m
53 rcpt4xx.test.ex              rcpt_4xx      F,10d,1m
54
55 *@\N^\d                      *             F,5d,1m
56 *@*.abcd.ex                  *             F,5d,2m
57 *@literal.ex                 *             F,5d,3m
58 *@lsearch;DIR/aux-fixed/TESTNUM.rlist2 *             F,5d,4m
59 *@@[]                        *             F,5d,5m
60 *@@                          *             F,5d,6m
61 lsearch*@;DIR/aux-fixed/TESTNUM.rlist  *             F,1d,3m
62 *.star.ex                    *             F,3d,10m
63 !*.not.ex                    *             F,2d,15m
64 *                            *             F,12d,150m
65
66 # End