Re: [Postfixadmin-devel] Unable to display mailboxes.
Brought to you by:
christian_boltz,
gingerdog
From: David G. <da...@co...> - 2009-04-28 05:10:01
|
>> >> Hmm. Would it be possible for me to get a DB dump? >> >> (Specifically the alias and mailbox tables) > > Sure. I have attached 3 tables, mailbox, alias, and quota. > > I did a little more investigation and found that if I set $CONF['used_quotas'] > to no then the mailbox data shows up. If I reset it to yes then the mailbox > data goes away. Ah. That's interesting. > > While I am talking about quotas, assuming a reasonable dovecot config, is it > reasonable to expect that dovecot v1.2+ quotas will work with pfa? > http://wiki.dovecot.org/Quota/Dict indicates that the 1.2+ quotas are > different. If I use something like below to create the quota table, will > pfa know how to use the data that gets put in there? > As much as PFA can use the data in there; I suspect so. > CREATE TABLE quota ( > username varchar(100) not null, > bytes bigint not null default 0, > messages integer not null default 0, > primary key (username) > ); > > When I created the quota table I attached, I used what is in the DOVECOT.txt > file included with pfa. My intent is to use pfa with dove 1.2 so if I can do > something to get quotas working, that would be a good thing. > I've never used dovecot; or quotas... so I don't really know anything about it. I'm guessing that table is used to keep a track of the current quota usage - as opposed to the limit (which is all PFA cares about). Thanks David. |