Zpanel Mailbox Resize

From MS Computech
Revision as of 12:05, 30 July 2014 by Snifer (talk | contribs) (Created page with " '''Resize Mailbox Zpanel'''<Br> Running a Zpanel on a Linux server and you want to resize the users mailboxes? This is how to do that.<br> The standard size of mailboxes in ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Resize Mailbox Zpanel

Running a Zpanel on a Linux server and you want to resize the users mailboxes? This is how to do that.

The standard size of mailboxes in Zpanel is 200Mb

You can change the size of new mailboxes in:
Admin -> module admin -> Mail Config -> Max Mailbox Size
Remember that only new created mailboxes will have this size!

Login in MySql:

mysql -p ROOTPASSWORD

In the MySql client

use zpanel_postfix;
update  mailbox set quota = 600 where username like "[email protected]"

That's all

OR Use phpmyadmin change mailbox quota to the space you want.