<<< Date Index >>>     <<< Thread Index >>>

Re: Problems with IMAP



On Wed, Aug 19, 2009 at 08:45:46AM -0500, Kyle Wheeler wrote:
 
> But that's not the sort of IMAP conversation I was thinking of,
> because to someone untrained in the art of reading mutt debug logs,
> that doesn't mean a whole lot. Here's the sort of IMAP transcript I
> was thinking of:
> http://www.memoryhole.net/~kyle/newwebsite/IMAP.html

Coolness! But now it's too late, as i managed to fix the problem 
by deleting all the rotten messages from my inbox. I used the patch
to detect the message id's and deleted them using python:

----
import imaplib

s = imaplib.IMAP4_SSL("imap.gmail.com")
s.login('user@xxxxxxxxx', 'password')
s.select() #select INBOX
bad = [ 50880, 51939, 52954, 55056, 55226, 56663, 57104 ]
for n in bad:
    s.store(n, '+FLAGS', '\\Deleted')
s.expunge()
s.logout()
----

Now i'm happy again... When this bug hits me next time i'll record the
IMAP session and try my luck with google support.

-- Aviv