Rey Tucker

Results 22 comments of Rey Tucker

This should be doable, and very useful! I will work on this the next chance I get. Thanks!

Technically speaking, [Gmail]/All Mail is documented as the default for the --remote-folder option, but I agree it's not entirely clear.  :-) Alas, I'm travelling and don't have the creds to...

Hmm, seems to work OK for me, at least directly using simpleimap. Here's a quick test program: ``` import simpleimap s = simpleimap.Server(hostname='a', username='b', password='c', port=d) imap = s.Get() f...

When you connect with a "normal" IMAP client, what is the folder named? I'm guessing "INBOX" is what you'll want for --remote-folder. The actual location on the server's filesystem doesn't...

The lack of UTF-8 would be a bug, most likely! I don't think I'm doing anything that should break it, but Python 2.x unicode support is painful at best. :-(...

Good call! This is in commit 5a8b6b5acffe95f26928211a63f5bf1ae8739349. Another user (in issue #10 I believe) suggested a change to quoted_re to improve a similar sort of thing. I couldn't reproduce the...

I've run into a couple cases where a specific message is "corrupted" on gmail's end, and trying to fetch it via IMAP fails. In simpleimap.py, putting a try/except around the...

Well. On my gmail mailbox of ~145,000 messages, Last night's run: about 3.75 hours With a cache: 7 minutes, 22 seconds Pull in the latest HEAD and let me know...

Well, at least it should be faster to test :-) I just pushed a patch that will spit out the UID it choked on. Once you have that UID, you...

Cool! I, unfortunately, haven't had a chance to look at this yet but that's probably where I was headed. I am not opposed to working around bugs in imaplib.py using...