iredmail-doc/html/howto/recalculate.mailbox.quota.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2014-09-17 08:37:38 -05:00
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> Force Dovecot to recalculate mailbox quota </title>
2014-09-17 08:37:38 -05:00
<link href="../css/markdown.css" rel="stylesheet"></head>
</head>
<body>
<h1 id="force-dovecot-to-recalculate-mailbox-quota">Force Dovecot to recalculate mailbox quota</h1>
2014-09-17 08:37:38 -05:00
<p>iRedMail enables dict quota since iRedMail-0.7.0, dict quota is recalculated
only if the quota goes below zero</p>
<ul>
<li>For MySQL and PostgreSQL backend:</li>
</ul>
<pre>
mysql> USE vmail;
mysql> DELETE FROM used_quota WHERE username='user@domain.ltd';
</pre>
<ul>
<li>For OpenLDAP backend:</li>
</ul>
<pre>
mysql> USE iredadmin;
mysql> DELETE FROM used_quota WHERE username='user@domain.ltd';
</pre>
<p>Re-login via POP3/IMAP (or webmail) will trigger Dovecot to recalculate mailbox
quota.</p>
<p><strong>TIP</strong>: it's safe to delete records in SQL table <code>used_quota</code> if mail user
was deleted in table <code>vmail.mailbox</code> or LDAP. iRedAdmin-Pro will handle this
for you automatically.</p></body></html>