Webmail doesn't show real email quota

fcalderon

New member
Joined
Aug 4, 2009
Messages
1
Location
Lima, Peru
I've been using DirectAdmin for some time now. But have a detected a problem:

I've given a user 210 MB of space using the Reseller profile. Then turned to user profile and created three accounts with 60MB, 120MB, 30MB for email use only.

And when I sign in using the Clean Webmail from the DirectAdmin and go to the Folders option, it says the user only has 20MB of email quota. And this happens to all three email accounts.

What could be the problem here?

Thanks in advance for any help regarding this,
Franco
 
There's probably a limit inside the code for the webmail program.

If you control your own server you can check in the webmail's configuration file. If you don't control your own server, then you should contact your hosting provider.

Jeff
 
if u use uebimail the path is:

Code:
/var/www/html/webmail/inc

edit file config.php and modify

Code:
$quota_limit = 20000;  //  in KB, eg. 4096 Kb = 4MB

to

Code:
$quota_limit = 0;  //  in KB, eg. 4096 Kb = 4MB

that should fix webmail quota to unlimited and base ur real quota of work by directadmin.
 
Back
Top