aux/convert-mbox-maildir.py
author "Tomas Zeman <tzeman@volny.cz>"
Thu, 10 Jun 2010 08:34:23 +0200
changeset 66 bf3b55a54cff
parent 23 a42b9c661bc1
permissions -rw-r--r--
Added #a5d5a0: Attachments should be stored without path

import mailbox, glob, os.path, os
import artemis
from mercurial import ui, hg

repo = hg.repository(ui.ui())

issue_filenames = glob.glob(os.path.join(artemis.issues_dir, '*'))
for fn in issue_filenames:
    mb = mailbox.mbox(fn)
    messages = [m for m in mb]
    mb.close()
    os.unlink(fn)
    repo.remove([fn])
    md = mailbox.Maildir(fn)
    md.lock()
    keys = [md.add(m) for m in messages]
    md.close()
    for k in keys: repo.add([fn + '/new/' + k])