c4e1a8339a0845ac4f46fc920185b4c00bcaf231
[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 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 primary_hostname = primary.test.ex
15 qualify_domain = test.ex
16 retry_data_expire = 2s
17 log_selector = +received_recipients
18
19
20 # ----- Routers -----
21
22 begin routers
23
24 bydns:
25   driver = dnslookup
26   domains = mxt2.test.ex
27   transport = smtp
28   fail_defer_domains = *
29
30 all:
31   driver = manualroute
32   route_list = simple  thishost.test.ex  byname \
33              ; complex thisloop.test.ex  byname \
34              ; nonexist nonexist.test.ex byname \
35              ; *       127.0.0.1         byname
36   self = send
37   host_find_failed = defer
38   transport = smtp
39
40
41 # ----- Transports -----
42
43 begin transports
44
45 smtp:
46   driver = smtp
47   port = 999
48   RETRY
49
50
51 # ----- Retry -----
52
53 begin retry
54
55 *       *     senders=:                    G,1d,1m,1.5
56 *       *     senders = "a@b.c : d@e.f"    G,2d,2m,1.5
57
58 rcpt45x.test.ex              rcpt_45x      F,10d,2m
59 rcpt463.test.ex              rcpt_463      F,10d,3m
60 rcpt4xx.test.ex              rcpt_4xx      F,10d,1m
61 *                            lookup        F,10d,30m
62
63 *@\N^\d                      *             F,5d,1m
64 *@*.abcd.ex                  *             F,5d,2m
65 *@literal.ex                 *             F,5d,3m
66 *@lsearch;DIR/aux-fixed/TESTNUM.rlist2 *             F,5d,4m
67 *@@[]                        *             F,5d,5m
68 *@@                          *             F,5d,6m
69 lsearch*@;DIR/aux-fixed/TESTNUM.rlist  *             F,1d,3m
70 *.star.ex                    *             F,3d,10m
71 !*.not.ex                    *             F,2d,15m
72 *                            *             F,12d,150m
73
74 # End