Disable identd (rfc1413) lookups by default
[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 all:
25 driver = manualroute
26 route_list = simple thishost.test.ex byname \
27 ; complex thisloop.test.ex byname \
28 ; * 127.0.0.1 byname
29 self = send
30 transport = smtp
31
32
33 # ----- Transports -----
34
35 begin transports
36
37 smtp:
38 driver = smtp
39 port = 999
40 RETRY
41
42
43 # ----- Retry -----
44
45 begin retry
46
47 * * senders=: G,1d,1m,1.5
48 * * senders = "a@b.c : d@e.f" G,2d,2m,1.5
49
50 rcpt45x.test.ex rcpt_45x F,10d,2m
51 rcpt463.test.ex rcpt_463 F,10d,3m
52 rcpt4xx.test.ex rcpt_4xx F,10d,1m
53
54 *@\N^\d * F,5d,1m
55 *@*.abcd.ex * F,5d,2m
56 *@literal.ex * F,5d,3m
57 *@lsearch;DIR/aux-fixed/TESTNUM.rlist2 * F,5d,4m
58 *@@[] * F,5d,5m
59 *@@ * F,5d,6m
60 lsearch*@;DIR/aux-fixed/TESTNUM.rlist * F,1d,3m
61 *.star.ex * F,3d,10m
62 !*.not.ex * F,2d,15m
63 * * F,12d,150m
64
65 # End