Resize Mailbox Zpanel

From MS Computech
Jump to: navigation, search

How-To Resize mailbox in 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!

To change the size of existing mailbox you have to make the changes in the database zpanel_postfix.

Login in as root in MySql. The root password is in /root/passwords.txt cat /root/passwords.txt 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

Source