Re: [Postfixadmin-devel] Unable to display mailboxes.
Brought to you by:
christian_boltz,
gingerdog
From: <me...@td...> - 2009-04-27 19:37:34
|
Hi David, On Mon, 27 Apr 2009, David Goodwin wrote: >>> 2) It seems to work for me - see attached .jpg. >> >> OK, I agree it is working for you but please look at the attached screen shot. >> As you can see, the info in the green bar says there is 1 mailbox but the gray >> bar that normally says mailboxes is missing as well as the mailbox info. >> >> Do you have any idea how I can troubleshoot this problem? Is there anything in >> the config.inc.php that I could be setting that would cause this? I do not see >> anything but I am not a programmer. >> > > 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. 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? 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. Thanks for the help, Regards, -- Tom me...@td... Spamtrap address me...@td... |