Re: [Dbmail-dev] Firebird backend

2004-09-11 Thread Dominik Faessler
Hi The advantage is, that we can initalize more resultsets, not have to allocate memory and not have to query count(*) statements. Please never use 'SELECT COUNT(*)', the performance of Postgres' count(*) is horrible. 'explain analyze select count(*) from dbmail_messages' takes 600ms for my 6

Re: [Dbmail-dev] Firebird backend

2004-09-11 Thread Thomas Mueller
Hi, > >A numrows() solution will be the quick way to a first version, but we may > >discover that the performance is terrible and 'SELECT COUNT(*)' is needed. [..] > The advantage is, that we can initalize more resultsets, not have to > allocate memory and not have to query count(*) statements. P

Re: [Dbmail-dev] Firebird backend

2004-09-11 Thread Dominik Faessler
*Aaron Stone wrote: likely that libdbi is adding this functionality. More likely, it's just faking it somehow by retrieving all of the rows, counting them, and caching them with the hope that they'll be requested later on anyways. A numrows() solution will be the quick way to a first version, b

[Dbmail-dev] ACLs: anyone user

2004-09-11 Thread Thomas Mueller
Hi, I have a problem with anyone ACLs: using mutt I can change to: imaps://server/#Users/myuser/INBOX/mailbox When I try to select the folder in Thunderbirds 'manage folder subscriptions' the user isn't even listed. So 'anyone' ACLs seems to work, but 'anyone' folders aren't listed if a client as

[Dbmail-dev] [DBMail 0000086]: quota exceeded causes forwards to fail

2004-09-11 Thread bugtrack
A BUGNOTE has been added to this bug. == http://www.dbmail.org/mantis/bug_view_advanced_page.php?bug_id=086 == Reported By:jnorell Assigned To

Re: [Dbmail-dev] Firebird backend

2004-09-11 Thread Aaron Stone
Dominik Fässler <[EMAIL PROTECTED]> said: >>I've read that 'select count(*)...' is faster only if you aren't then >>selecting all of the rows two lines later, in which case there's no >>benefit. Which is to say, there won't be any drawback to eliminating our >>use of num_rows() style functions, ex