]> git.madduck.net Git - etc/offlineimap.git/blobdiff - .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:

add poor man's priorities to bulk account
[etc/offlineimap.git] / .offlineimap / helper.py
index 840896febcd4e5d3f666281cf719d348ca681c4c..78636983b4162f8c04084803c2fc90b80ab24d09 100644 (file)
@@ -32,6 +32,12 @@ def py_folderfilter_main(x):
 
     return True
 
+def py_foldersort_bulk(x, y):
+    if x == 'spool': return -1
+    if y == 'spool': return  1
+    if x in ('discard', 'spam'): return 1
+    if y in ('discard', 'spam'): return -1
+
 def py_folderfilter_bulk(x):
     if re.search('^(' + '|'.join(full_excludes_re) + ')', x):
         return True