Difference between revisions of "Zpanel Mailbox Resize"

From MS Computech
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''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>
 
Running a Zpanel on a Linux server and you want to resize the users mailboxes? This is how to do that.<br>
  
Line 16: Line 15:
 
<pre>use zpanel_postfix;</pre>
 
<pre>use zpanel_postfix;</pre>
 
<pre>update  mailbox set quota = 600 where username like "[email protected]"</pre>
 
<pre>update  mailbox set quota = 600 where username like "[email protected]"</pre>
 +
Restart Postfix
 +
<pre>/etc/init.d/postfix restart</pre>
 
That's all
 
That's all
  
 
OR Use phpmyadmin change mailbox quota to the space you want.
 
OR Use phpmyadmin change mailbox quota to the space you want.

Latest revision as of 09:53, 23 July 2016

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]"

Restart Postfix

/etc/init.d/postfix restart

That's all

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