aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.offlineimap.py13
-rwxr-xr-xdm1
2 files changed, 14 insertions, 0 deletions
diff --git a/.offlineimap.py b/.offlineimap.py
new file mode 100644
index 0000000..7250170
--- /dev/null
+++ b/.offlineimap.py
@@ -0,0 +1,13 @@
+prioritized = ['INBOX', 'QueensU.INBOX']
+
+def mycmp(x, y):
+ for prefix in prioritized:
+ xsw = x.startswith(prefix)
+ ysw = y.startswith(prefix)
+ if xsw and ysw:
+ return cmp(x, y)
+ elif xsw:
+ return -1
+ elif ysw:
+ return +1
+ return cmp(x, y)
diff --git a/dm b/dm
index e63bd16..45431c7 100755
--- a/dm
+++ b/dm
@@ -32,6 +32,7 @@ GLOBAL_FILES = \
.mutt/ \
.muttrc \
.notmuch-config \
+ .offlineimap.py \
.pythonrc.py \
.quiltrc-dpkg \
.screenlayout/ \