]> git.madduck.net Git - etc/offlineimap.git/blob - .offlineimap/helper.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

migrate to offlineimap 6.5
[etc/offlineimap.git] / .offlineimap / helper.py
1 # -*- coding: utf-8 -*-
2
3 import re
4
5 base_excludes = ['delayed', 'outgoing', 'Trash', 'Sent', 'Queue', 'sent', 'inbox']
6 full_excludes_re = ['discard', 'spool', 'spam', 'store\..+']
7 prioritised = ['outgoing','resubmit','drafts','INBOX','ardex','immo','debian','sudetia','admin','retrain']
8 deprioritised = ['discard','spam','store','spool']
9
10 def py_foldersort_main(x, y):
11     for prefix in prioritised:
12         if x.name.startswith(prefix):
13             return -1
14         elif y.name.startswith(prefix):
15             return +1
16     for prefix in deprioritised:
17         if x.name.startswith(prefix):
18             return +1
19         elif y.name.startswith(prefix):
20             return -1
21     return cmp(x, y)
22
23 def py_nametrans(x):
24     return re.sub('^INBOX', 'inbox', x)
25
26 def py_folderfilter_main(x):
27     if x in base_excludes:
28         return False
29
30     elif re.search('^(' + '|'.join(full_excludes_re) + ')', x):
31         return False
32
33     return True
34
35 def py_foldersort_bulk(x, y):
36     if x == 'spool': return -1
37     if y == 'spool': return  1
38     if x in ('discard', 'spam'): return 1
39     if y in ('discard', 'spam'): return -1
40
41 def py_folderfilter_bulk(x):
42     if re.search('^(' + '|'.join(full_excludes_re) + ')', x):
43         return True
44
45     return False
46
47 def py_folderfilter_mbnames(acct, x):
48     full_excludes_re_mbnames = ['retrain/(sp|h)am'] + full_excludes_re
49     return acct in ['madduck.net', 'madduck.net_bulk'] \
50             and not re.search('^(' + '|'.join(full_excludes_re_mbnames) + ')', x)