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

initial checkin
authormartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 10:13:51 +0000 (11:13 +0100)
committermartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 10:13:51 +0000 (11:13 +0100)
.offlineimap/helper.py [new file with mode: 0644]
.offlineimaprc [new file with mode: 0644]

diff --git a/.offlineimap/helper.py b/.offlineimap/helper.py
new file mode 100644 (file)
index 0000000..09cec66
--- /dev/null
@@ -0,0 +1,61 @@
+def py_foldersort_seamus(x, y):
+    prioritised = ('outgoing','resubmit','drafts','inbox','ul','debian','sudetia','admin','retrain')
+    deprioritised = ('discard','spam','store','spool')
+    for prefix in prioritised:
+        if x.startswith(prefix):
+            return -1
+        elif y.startswith(prefix):
+            return +1
+    for prefix in deprioritised:
+        if x.startswith(prefix):
+            return +1
+        elif y.startswith(prefix):
+            return -1
+    return cmp(x, y)
+
+import re
+
+def py_nametrans_seamus(x):
+    return re.sub('^INBOX', 'inbox', x)
+
+def should_do_full_sync():
+    import os, stat, time
+    FILE = os.path.expanduser('~/.var/offlineimap/lastrun')
+    INTERVAL = 30
+    now = int(time.time())
+
+    try:
+        mtime = os.stat(FILE)[stat.ST_MTIME]
+    except OSError:
+        mtime = 0
+
+    since = now - mtime
+    print 'now=%d mtime=%d since=%d INTERVAL=%d' \
+            % (now, mtime, since, INTERVAL)
+    if since > INTERVAL:
+        file(FILE, 'wb').close()
+        print 'Running a full sync...'
+        return True
+
+    print 'Running a partial sync, next full sync in %d seconds...' \
+            % (INTERVAL - since)
+    return False
+
+#do_full = should_do_full_sync()
+do_full = True
+def py_folderfilter_seamus(x):
+    base_excludes = ['delayed', 'outgoing']
+
+    if do_full:
+        return x not in base_excludes
+    else:
+        if x in base_excludes:
+            return False
+        if x in ('spool', 'discard', 'spam'):
+            return False
+        if re.search('^store\..+', x):
+            return False
+    return True
+
+def py_folderfilter_mbnames(acct, x):
+    return not re.search('^(store(/.+)?|retrain/.+|spool|discard|spam)', x)
diff --git a/.offlineimaprc b/.offlineimaprc
new file mode 100644 (file)
index 0000000..fa580f1
--- /dev/null
@@ -0,0 +1,44 @@
+[general]
+metadata = ~/.var/offlineimap
+
+accounts = seamus.madduck.net
+
+ui = Noninteractive.Basic, Noninteractive.Quiet
+
+ignore-readonly = no
+socktimeout = 30
+
+pythonfile = ~/.offlineimap/helper.py
+
+[mbnames]
+enabled = yes
+filename = ~/.var/offlineimap/mailboxes
+header = '# generated by offlineimap\n'
+peritem = mailboxes =%(foldername)s
+sep = '\n'
+footer = '\n'
+folderfilter = py_folderfilter_mbnames
+
+[Account seamus.madduck.net]
+localrepository = local-seamus
+remoterepository = seamus.madduck.net
+autorefresh = 15
+quick = 16
+
+[Repository local-seamus]
+type = Maildir
+localfolders = ~/mail
+sep = /
+
+[Repository seamus.madduck.net]
+type = IMAP
+remotehost = seamus.maduck.net
+ssl = no
+maxconnections = 1
+holdconnectionopen = yes
+remoteuser = madduck
+preauthtunnel = ssh -CaxS none -o "KeepAlive = yes" -o "ProtocolKeepAlives = 10" -o "ConnectTimeout 20" -o "ControlMaster no" -i ~/.etc/offlineimap/id_dsa.imap seamus.madduck.net 'MAIL=$HOME/.maildir/ /usr/lib/dovecot/imap'
+expunge = yes
+foldersort = py_foldersort_seamus
+nametrans = py_nametrans_seamus
+folderfilter = py_folderfilter_seamus