X-Git-Url: https://git.madduck.net/etc/offlineimap.git/blobdiff_plain/d6533cdd1e4f42895b2569e979ad9987ba8d7454..7f6aec793e90c72cb6699191e01ed412b6ceb3b7:/.offlineimap/helper.py diff --git a/.offlineimap/helper.py b/.offlineimap/helper.py index 25d59c3..47b9825 100644 --- a/.offlineimap/helper.py +++ b/.offlineimap/helper.py @@ -20,7 +20,7 @@ def py_foldersort_main(x, y): return -1 return cmp(x, y) -def py_nametrans_main(x): +def py_nametrans(x): return re.sub('^INBOX', 'inbox', x) def py_folderfilter_main(x): @@ -46,5 +46,5 @@ def py_folderfilter_bulk(x): def py_folderfilter_mbnames(acct, x): full_excludes_re_mbnames = ['retrain/(sp|h)am'] + full_excludes_re - return acct in ['madduck.net', 'madduck.net-bulk'] \ + return acct in ['madduck.net', 'madduck.net_bulk'] \ and not re.search('^(' + '|'.join(full_excludes_re_mbnames) + ')', x)