More new test committing.
[exim.git] / test / confs / 0131
1 # Exim test configuration 0131
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 domainlist local_domains = test.ex
14 qualify_domain = test.ex
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 islocal:
22   driver = manualroute
23   domains = ! +local_domains
24   route_list = * localhost byname
25   self = pass
26   no_more
27   address_data = $address_data-islocal
28
29 forward:
30   driver = redirect
31   allow_filter
32   no_check_local_user
33   file = DIR/aux-fixed/TESTNUM.$local_part
34   retry_use_local_part
35   user = CALLER
36   address_data = $address_data-forward
37
38 local:
39   driver = accept
40   retry_use_local_part
41   transport = appendfile
42   address_data = $address_data-local
43
44
45 # ----- Transports -----
46
47 begin transports
48
49 appendfile:
50   driver = appendfile
51   file = DIR/test-mail/$local_part
52   user = CALLER
53   headers_add = Address-Data: >$address_data<
54
55
56 # ----- Retry -----
57
58
59 begin retry
60
61 * * F,1d,15m
62
63
64 # End