diff options
author | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-08-23 15:04:09 -0400 |
---|---|---|
committer | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-08-25 07:43:13 -0400 |
commit | 5795004d6df9b1e87aae464f8f3e933f9d6272ca (patch) | |
tree | f19ff556e7ff2ba541e378b8f614517411ccf3ca | |
parent | Added .devscripts (diff) |
Added .offlineimap.py used by offlineimaprc
Diffstat (limited to '')
-rw-r--r-- | .offlineimap.py | 13 | ||||
-rwxr-xr-x | dm | 1 |
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) @@ -32,6 +32,7 @@ GLOBAL_FILES = \ .mutt/ \ .muttrc \ .notmuch-config \ + .offlineimap.py \ .pythonrc.py \ .quiltrc-dpkg \ .screenlayout/ \ |