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