Fix dkim_verify_signers option. Bug 2366
[exim.git] / test / confs / 5000
1 # Exim test configuration 5000
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9
10 # ----- Routers -----
11
12 begin routers
13
14 localuser:
15 driver = accept
16 local_parts = userx
17 transport = $h_maildir:appendfile
18
19
20 # ----- Transports -----
21
22 begin transports
23
24 maildir_appendfile:
25 driver = appendfile
26 directory = DIR/test-mail
27 maildir_format
28 quota = 10K
29 user = CALLER
30
31 maildir_tagged_appendfile:
32 driver = appendfile
33 directory = DIR/test-mail
34 envelope_to_add
35 maildir_format
36 maildir_tag = ${expand:$h_tag:}
37 message_prefix =
38 quota = 20K
39 quota_size_regex = S=(\d+)$
40 message_suffix =
41 user = CALLER
42
43 maildir_taggedX_appendfile:
44 driver = appendfile
45 directory = DIR/test-mail
46 envelope_to_add
47 maildir_format
48 maildir_tag = ${expand:$h_tag:}
49 message_prefix =
50 quota = 20K
51 quota_size_regex = ,S=(\d+):
52 message_suffix =
53 user = CALLER
54
55
56 # ----- Retry -----
57
58
59 begin retry
60
61 * * F,5d,1d
62
63
64 # End