Try and disable IDLE by setting CAPABILITY in dbmail.conf without it. I've begun refactoring the event handling code. The problems with IDLE have revealed a problem with using bufferevent from libevent. The bufferevent api is too loose reading and writing on the network. This causes race conditions on the network filehandles where a new imap command is read from the client, *before* the results from the previous command has finished being written to the client. I can sequence command handling, but can't determine when data is actually written to the client. Thunderbird doesn't like this: once the LOGOUT command is written, thunderbird is in non-authenticated state and won't accept FETCH results from the penultimate command, triggering logout/login/select/fetch loops.
Quite possibly something similar is affecting OE. No saying it's IDLE related though. You can also try to rewind a couple of revisions. Before 2.3.3 I've been trying to find a sweetspot in bufferevent handling that may have introduced subtle timing problems. Like I said, I'm removing the higher level bufferevent api and falling back to the base libevent api which provides raw access to the filehandles. Jorge Bastos wrote: > Paul, > > There’s something not OK with the last SVN, using outlook express, when > i select a folder, it just stays “Connected”, and doesn’t show me nothing. > > > > > > > > *From:* [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] *On Behalf Of *Jake Anderson > *Sent:* domingo, 1 de Junho de 2008 2:43 > *To:* DBMAIL Developers Mailinglist > *Subject:* Re: [Dbmail-dev] RE: [Dbmail] Testing > > > > I'm migrating to a new server today. > Running 2.3.3 on debian "lenny?" (I'm an ubuntu man but all the deps > were out of date or unavailable urgh) > I' re-writing the mbox2dbmail tool so you can just let it loose in the > results of a dbmail-export of the whole system. > > I'd rather use imapsync but that requires knowing the users passwords > and i've had problems with it in the past crashing etc. > > Jorge Bastos wrote: > > Paul, > > > > Just to tell you that so far, no complain about it. > > > > > > > > > > -----Original Message----- > > From: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> [mailto:dbmail-dev- > > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>] On Behalf Of Jorge Bastos > > Sent: segunda-feira, 26 de Maio de 2008 21:51 > > To: 'DBMAIL Developers Mailinglist' > > Subject: RE: [Dbmail-dev] RE: [Dbmail] Testing > > > > Tell me when work about it get on to svn. > > > > > > > > > > -----Original Message----- > > From: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> [mailto:dbmail-dev- > > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>] On Behalf Of Paul J > Stevens > > Sent: segunda-feira, 26 de Maio de 2008 21:49 > > To: DBMAIL Developers Mailinglist > > Subject: Re: [Dbmail-dev] RE: [Dbmail] Testing > > > > Jorge Bastos wrote: > > > > Now that you say that, yesterday i had that behavior, but since I > > > > copyed the message from another account I didn't give it any relevant > > importance and thinked was normal. > > > > With outlook express the message displays OK in the preview and > > > > when > > > > it is opened. > > > > I'm on top of it. I can now reproduce it. > > > > -- > > ________________________________________________________________ > > Paul Stevens paul at nfg.nl > > NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31 > > The Netherlands________________________________http://www.nfg.nl > > _______________________________________________ > > Dbmail-dev mailing list > > [email protected] <mailto:[email protected]> > > http://twister.fastxs.net/mailman/listinfo/dbmail-dev > > > > _______________________________________________ > > Dbmail-dev mailing list > > [email protected] <mailto:[email protected]> > > http://twister.fastxs.net/mailman/listinfo/dbmail-dev > > > > > > _______________________________________________ > > Dbmail-dev mailing list > > [email protected] <mailto:[email protected]> > > http://twister.fastxs.net/mailman/listinfo/dbmail-dev > > > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Dbmail-dev mailing list > [email protected] > http://twister.fastxs.net/mailman/listinfo/dbmail-dev -- ________________________________________________________________ Paul Stevens paul at nfg.nl NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31 The Netherlands________________________________http://www.nfg.nl _______________________________________________ Dbmail-dev mailing list [email protected] http://twister.fastxs.net/mailman/listinfo/dbmail-dev
