Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: timreichhart on May 22, 2009, 12:01:40 AM

Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 22, 2009, 12:01:40 AM
Hi Guys
I wanted to know the reason why my quota is not showing up on the webmail and I was the one who setup the email server is there a setting I need to change?

also my system information is Ubuntu 9.04 with postfix+dovecot imap+mysql.

and how I installed was by doing this sudo apt-get install roundcube from command line.
Title: why isnt my quota showing on webmail?
Post by: waster2009 on May 22, 2009, 02:09:49 AM
Dovecot should be configured with quota plugins and quota mechanism should work. Something like this (please check dovecot docs):

protocol imap {
  mail_plugins = quota imap_quota
}

If you use mysql to get/store quota then configure dovecot quota plugin accordingly.
Title: why isnt my quota showing on webmail?
Post by: Asterix on May 22, 2009, 04:34:49 AM
And I think that your local delivery agent should also be quota enabled. I use the LDA of Dovecot instead of the postfix one and therefor the quota file (maildirsize) is written by the Dovecot LDA.
Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 22, 2009, 11:19:35 AM
well my dovecot is setup for mysql so what would i need to put in for that?

alright I got the plugin in there but now when I login to webmail its showing disk:unlimited but in sql I set the quota @ 1024kb  is there something else I have to do?
Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 22, 2009, 04:03:51 PM
also I am having problems with spam its not getting marked or moved to junk. so I need to find out why why the quota dont work and why spam is not moving to junk or getting marked as spam.
Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 22, 2009, 09:41:48 PM
may I please get some help with this webmail problem thanks.
Title: why isnt my quota showing on webmail?
Post by: rosali on May 23, 2009, 12:00:02 AM
I'm quite sure it isn't a RoundCube Problem. When establishing IMAP connection RoundCube asks for QUOTA Capabilitity. If the IMAP server does not response to have quota extension, the quota image is not shown. Look here IMAP Server with QUOTA Extension capability - HowtoForge Forums | HowtoForge - Linux Howtos and Tutorials (http://www.howtoforge.com/forums/showthread.php?t=13030).
Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 23, 2009, 01:54:53 AM
the quota is working but my problem is I get the quota from mysql so I need to know what plugin to use to get it from mysql.
Title: why isnt my quota showing on webmail?
Post by: rosali on May 24, 2009, 12:54:50 AM
AFAIK, it works only for quota by IMAP server. I'm not aware of a plugin for mysql.
Title: why isnt my quota showing on webmail?
Post by: timreichhart on May 24, 2009, 02:13:48 PM
then it sounds like roundcube needs to be updated for this setup.
Title: why isnt my quota showing on webmail?
Post by: corbosman on May 25, 2009, 03:06:56 PM
You can probably write a plugin to handle your situation.
Title: why isnt my quota showing on webmail?
Post by: sysadm on July 25, 2009, 02:11:46 AM
that cools:)
Title: why isnt my quota showing on webmail?
Post by: Martian on February 01, 2010, 10:37:08 AM
Sorry for digging up and old thread perhaps this will help someone via search:

Dovecot pulls the quota information from the mysql tables and that data is then provided to the IMAP client via the IMAP QUOTA command.  There is no need for Roundcube to talk to the SQL server at all for this to happen.  So long as Dovecot is reports QUOTA support in it's header Roundcube will use it.

Martian