Mercurial > public > weighmail
comparison sample-weighmail.ini @ 11:330b4c283a09
Added a sample .ini file.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 May 2012 13:16:24 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
10:8a523e580854 | 11:330b4c283a09 |
---|---|
1 [options] | |
2 # This section is optional. If not provided the following defaults will be | |
3 # used: | |
4 # | |
5 # folder = [Gmail]/All Mail | |
6 | |
7 [auth] | |
8 # This section is optional. If not provided you will be prompted for this | |
9 # information. | |
10 # | |
11 # user = username | |
12 # password = password | |
13 | |
14 [connection] | |
15 # This section is optional. If not provided the following defaults will be | |
16 # used: | |
17 # | |
18 # host = imap.gmail.com | |
19 # ssl = True | |
20 # port = 993 | |
21 # | |
22 | |
23 ############################################################################### | |
24 # Label definitions | |
25 # | |
26 # You must now list the labels you want applied. At least one must be | |
27 # specified. | |
28 # | |
29 # To specify a label, create a section with two attributes, min & max. The | |
30 # name of the section will be the label name. Min & max define the minimum | |
31 # and maximum bounds for the label. These sizes are in bytes. You can use | |
32 # suffixes GB, MB, KB for gigabytes, megabytes, and kilobytes, respectively. | |
33 # Leaving min or max blank means there is no minimum or maximum for that | |
34 # label. The suffixes are not case sensitive. | |
35 # | |
36 # The label will be applied when an email's size is | |
37 # | |
38 # min < size < max | |
39 # | |
40 # For example, to specify a label of "big" that will be applied when an email | |
41 # is at least 1 megabyte but less than 5, and a label of "huge" for when the | |
42 # email is at least 5 MB (and greater): | |
43 # | |
44 # [big] | |
45 # min = 1MB | |
46 # max = 5MB | |
47 # | |
48 # [huge] | |
49 # min = 5MB | |
50 # max = | |
51 # | |
52 # The ranges on labels may overlap. | |
53 # | |
54 ############################################################################### | |
55 [big] | |
56 min = 1MB | |
57 max = 5MB | |
58 | |
59 [huge] | |
60 min = 5MB | |
61 max = 20MB | |
62 | |
63 [gargantuan] | |
64 min = 20MB | |
65 max = |