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