]> git.madduck.net Git - etc/offlineimap.git/commitdiff

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:

improved exludes
authormartin f. krafft <madduck@madduck.net>
Mon, 1 Oct 2012 12:41:37 +0000 (14:41 +0200)
committermartin f. krafft <madduck@madduck.net>
Mon, 1 Oct 2012 12:41:37 +0000 (14:41 +0200)
.offlineimap/helper.py

index c1290b24e8f574a5a4b2871ba1e179a6da01882a..3eb23460ac41442d16f7d6ff042deb40e1e414be 100644 (file)
@@ -2,8 +2,9 @@
 
 import re
 
-base_excludes = ['delayed', 'outgoing', 'Trash', 'Sent', 'Queue', 'sent', 'inbox']
-full_excludes_re = ['discard', 'spool', 'spam', '(store|[Ss]ent)/.+']
+base_excludes = ['delayed', 'outgoing', 'Trash', 'Queue', 'inbox']
+base_excludes_re = [ '[Ss]ent.*' ]
+full_excludes_re = ['discard', 'spool', 'spam', 'store/.+']
 prioritised = ['outgoing','resubmit','drafts','INBOX','ardex','kbkg','toni','immo','uniwh','mkch','debian','sudetia','admin','retrain']
 deprioritised = ['discard','spam','store','spool']
 
@@ -27,6 +28,9 @@ def py_folderfilter_main(x):
     if x in base_excludes:
         return False
 
+    elif re.search('^(' + '|'.join(base_excludes_re) + ')', x):
+        return False
+
     elif re.search('^(' + '|'.join(full_excludes_re) + ')', x):
         return False