]> 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:

add poor man's priorities to bulk account
authormartin f. krafft <madduck@madduck.net>
Mon, 13 Sep 2010 17:41:13 +0000 (19:41 +0200)
committermartin f. krafft <madduck@madduck.net>
Mon, 13 Sep 2010 17:41:13 +0000 (19:41 +0200)
.offlineimap/helper.py
.offlineimaprc

index 840896febcd4e5d3f666281cf719d348ca681c4c..78636983b4162f8c04084803c2fc90b80ab24d09 100644 (file)
@@ -32,6 +32,12 @@ def py_folderfilter_main(x):
 
     return True
 
 
     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
 def py_folderfilter_bulk(x):
     if re.search('^(' + '|'.join(full_excludes_re) + ')', x):
         return True
index 4bb5f3bcfae9a9b52d2ebd3ed7e19409da113b86..adbb2adb0c02f473a54d20c84b7eecc1a9e8039d 100644 (file)
@@ -47,11 +47,12 @@ idlefolders = ['inbox', 'mass', 'debian', 'ul', 'phd', 'admin']
 
 [Repository madduck.net-bulk]
 type = IMAP
 
 [Repository madduck.net-bulk]
 type = IMAP
-maxconnections = 3
+maxconnections = 1
 holdconnectionopen = yes
 preauthtunnel = SSH_AUTH_SOCK= ssh -TCaxS ~/.var/offlineimap/ssh_ctl_sock -o "ControlMaster auto" -o "ProtocolKeepAlives 10" -o "ConnectTimeout 60" -i ~/.offlineimap/id_rsa.imap@seamus imap.madduck.net
 expunge = yes
 folderfilter = py_folderfilter_bulk
 holdconnectionopen = yes
 preauthtunnel = SSH_AUTH_SOCK= ssh -TCaxS ~/.var/offlineimap/ssh_ctl_sock -o "ControlMaster auto" -o "ProtocolKeepAlives 10" -o "ConnectTimeout 60" -i ~/.offlineimap/id_rsa.imap@seamus imap.madduck.net
 expunge = yes
 folderfilter = py_folderfilter_bulk
+foldersort = py_foldersort_main
 
 [Account logcheck]
 localrepository = local-logcheck
 
 [Account logcheck]
 localrepository = local-logcheck