8da6c6e1b1e8fe213c5e4eedd16799ecfce4f146
[exim.git] / test / confs / 5009
1 # Exim test configuration 5009
2
3 SUB=
4
5 exim_path = EXIM_PATH
6 host_lookup_order = bydns
7 primary_hostname = myhost.test.ex
8 spool_directory = DIR/spool
9 log_file_path = DIR/spool/log/%slog
10 gecos_pattern = ""
11 gecos_name = CALLER_NAME
12
13
14 # ----- Main settings -----
15
16 qualify_domain = test.ex
17
18
19 # ----- Routers -----
20
21 begin routers
22
23 r1:
24   driver = accept
25   transport = t1
26
27 # ----- Transports -----
28
29 begin transports
30
31 t1:
32   driver = appendfile
33   directory = DIR/test-mail/SUB
34   user = CALLER
35   maildir_format
36   maildir_use_size_file
37   maildir_quota_directory_regex = ^(?:cur|new|\.(?!Trash).*)$
38   maildirfolder_create_regex = /\.[^/]+$
39   quota = 1M
40
41
42 # ----- Retry -----
43
44 begin retry
45
46 * * F,1d,1d
47
48
49 # End