f46ba25a75b92fe2c988ed7cc21b873680090478
[exim.git] / test / confs / 5000
1 # Exim test configuration 5000
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
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
14 # ----- Routers -----
15
16 begin routers
17
18 localuser:
19   driver = accept
20   local_parts = userx
21   transport = $h_maildir:appendfile
22
23
24 # ----- Transports -----
25
26 begin transports
27
28 maildir_appendfile:
29   driver = appendfile
30   directory = DIR/test-mail
31   maildir_format
32   quota = 10K
33   user = CALLER
34
35 maildir_tagged_appendfile:
36   driver = appendfile
37   directory = DIR/test-mail
38   envelope_to_add
39   maildir_format
40   maildir_tag = ${expand:$h_tag:}
41   message_prefix =
42   quota = 20K
43   quota_size_regex = S=(\d+)$
44   message_suffix =
45   user = CALLER
46
47 maildir_taggedX_appendfile:
48   driver = appendfile
49   directory = DIR/test-mail
50   envelope_to_add
51   maildir_format
52   maildir_tag = ${expand:$h_tag:}
53   message_prefix =
54   quota = 20K
55   quota_size_regex = ,S=(\d+):
56   message_suffix =
57   user = CALLER
58
59
60 # ----- Retry -----
61
62
63 begin retry
64
65 * * F,5d,1d
66
67
68 # End