Comment 6 for bug 802836

Revision history for this message
C Fraire (cfraire) wrote :

Thomas, my version does not create mbox files by default, because I wanted a fast incremental backup. Also with my version, full backup and incremental backup are the same operation, and the program no longer deletes any backup data.

You can run with an additional flag to export mbox files:

    -m <mbox directory>

Regarding the 'AllMail' problem, I'm curious why this fails for your account. I had put in handling for Gmail's XLIST command in order to map special folders for internationalized clients.

If you wouldn't mind, would you respond back with your Gmail XLIST result. You can print this with this short python script:

#!/usr/bin/python

import imaplib
g = imaplib.IMAP4_SSL('imap.gmail.com', 993)
g.login('<username>', '<password>')
g.xatom('XLIST', '', '*')
print g.response('XLIST')[1]