B. Johannessen wrote:
> If you have an IMAP server accessing the mailbox, this will also need to
> support such quotas. For example, I've seen Courier have a nervous
> breakdown when asked to handle quotas larger the 2G on 32bit Linux.
A glance at the Courier source seems to reveal that it has the same
limits as Exim. courier-imap-4.0.6/maildir/maildirquota.h line 30:
struct maildirquota {
off_t nbytes; /* # of bytes, 0 - unlimited */
int nmessages; /* # of messages, 0 - unlimited */
};
Bob