Re: [Dbmail-dev] idle or not?

2009-04-16 Thread Paul J Stevens

That was an experiment to send status updates for *all* subscribed
mailbox while idle. That is something else than sending mailbox status
updates for the selected mailbox only.

Sending status updates for all subscribed mailboxes turned out to be
invalid. Those comments should be removed from dbmail.conf.

Uwe Kiewel wrote:
 Hi,
 
 what does it mean:
 
 # Send '* STATUS mailbox (MESSAGES x RECENT x UNSEEN x NEXTUID x)'
 # for all subscribed mailboxes during IDLE (default: no)
 # note: EXPERIMENTAL (and most likely disabled in the code)
 
 I have enabled idle, my client is thunderbird 2.0.0.21. It works for me 
 with an email account with many subfolders.
 
 Thanks,
   Uwe
 ___
 Dbmail-dev mailing list
 Dbmail-dev@dbmail.org
 http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev
 


-- 
  
  Paul Stevens  paul at nfg.nl
  NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31
  The Netherlandshttp://www.nfg.nl
___
Dbmail-dev mailing list
Dbmail-dev@dbmail.org
http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev


Re: [Dbmail-dev] idle or not?

2009-04-16 Thread Jonathan Feally
idle_status = (yes/no) will change the behavior of what is sent to the 
client when the idle timeout hits and the client has said idle. Normal 
output is to only send information about the SELECTed mailbox. This 
option will check all subscribed mailboxes, and send information about 
any mailbox that was update since last check. Thus message insertion 
from sieve scripts into sub folders would notify your T-Bird that a new 
message was there. I am not sure if this currently enabled or working 
correctly. I'll check into it a bit later. This option does not disable 
idle completely. If you want to keep clients from using idle, then you 
need to set a custom capability with out IDLE in it. Clients should 
respect this capability and not issue an idle command when IDLE is not 
listed.

-Jon

Uwe Kiewel wrote:
 Hi,

 what does it mean:

 # Send '* STATUS mailbox (MESSAGES x RECENT x UNSEEN x NEXTUID x)'
 # for all subscribed mailboxes during IDLE (default: no)
 # note: EXPERIMENTAL (and most likely disabled in the code)

 I have enabled idle, my client is thunderbird 2.0.0.21. It works for me 
 with an email account with many subfolders.

 Thanks,
   Uwe
 ___
 Dbmail-dev mailing list
 Dbmail-dev@dbmail.org
 http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev

   


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
Dbmail-dev mailing list
Dbmail-dev@dbmail.org
http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev


Re: [Dbmail-dev] idle or not?

2009-04-16 Thread Uwe Kiewel
Jonathan Feally schrieb:
 idle_status = (yes/no) will change the behavior of what is sent to the 
 client when the idle timeout hits and the client has said idle. Normal 
 output is to only send information about the SELECTed mailbox. This 
 option will check all subscribed mailboxes, and send information about 
 any mailbox that was update since last check. Thus message insertion 
 from sieve scripts into sub folders would notify your T-Bird that a new 
 message was there. I am not sure if this currently enabled or working 

That's my scenario. Sieve puts messages to subfolders and T-Bird 
recognizes all new messages in all subfolders.

I'm pretty sure it is working correctly (for me).

 correctly. I'll check into it a bit later. This option does not disable 
 idle completely. If you want to keep clients from using idle, then you 
 need to set a custom capability with out IDLE in it. Clients should 
 respect this capability and not issue an idle command when IDLE is not 
 listed.

I do *not want to disable idle. It was just a question of understanding.

Thanks,
Uwe

 
 -Jon
 
 Uwe Kiewel wrote:
 Hi,

 what does it mean:

 # Send '* STATUS mailbox (MESSAGES x RECENT x UNSEEN x NEXTUID x)'
 # for all subscribed mailboxes during IDLE (default: no)
 # note: EXPERIMENTAL (and most likely disabled in the code)

 I have enabled idle, my client is thunderbird 2.0.0.21. It works for me 
 with an email account with many subfolders.

 Thanks,
  Uwe
 ___
 Dbmail-dev mailing list
 Dbmail-dev@dbmail.org
 http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev

   
 
 

___
Dbmail-dev mailing list
Dbmail-dev@dbmail.org
http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev


Re: [Dbmail-dev] idle or not?

2009-04-16 Thread Jonathan Feally
I have been using trunk as is since you applied my last patch. I haven't 
been able to catch the 100% load issue since then, but I have also been 
restarting every 2 hours via cron just in case it happens when I'm out 
and about. So far its working good with no issues on T-Bird.

-Jon

Paul J Stevens wrote:
 Uwe Kiewel wrote:
   
 I'm pretty sure it is working correctly (for me).
 

 Glad to hear it. The one invasive change that needs real-world testing -
 which I can't do myself currently - is single-instance headerstorage. If
 that works correctly (or at least: no regressions) 2.3.6 is pretty much
 in the box. There are still some things I think need more work:

 - loops: sometimes imapd (and the other daemons most likely as well)
 gets into a 100% cpu load. This doesn't block connections: things keep
 working fine. But it's a waste of cpu to say the least. Jon has been
 looking into this one as well.
 - large messages: in 2.3.5 downloading (and uploading) large blocks of
 data is broken. There is a fix in my master tree that needs more
 testing. Is this still a problem? The unit-tests in my development
 setups are in working shape. Is this still a problem?

 But those are just _my_ remaining issues.


   
 I do *not want to disable idle. It was just a question of understanding.
 

 Well, do you now? :-)


   


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
Dbmail-dev mailing list
Dbmail-dev@dbmail.org
http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev


Re: [Dbmail-dev] idle or not?

2009-04-16 Thread Paul J Stevens
Jonathan Feally wrote:
 I have been using trunk as is since you applied my last patch. I haven't 
 been able to catch the 100% load issue since then, but I have also been 
 restarting every 2 hours via cron just in case it happens when I'm out 
 and about. So far its working good with no issues on T-Bird.

fingers crossed.


-- 
  
  Paul Stevens  paul at nfg.nl
  NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31
  The Netherlandshttp://www.nfg.nl
___
Dbmail-dev mailing list
Dbmail-dev@dbmail.org
http://mailman-new.icns.fastxs.net/cgi-bin/mailman/listinfo/dbmail-dev