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

60 lines
2.5 KiB
HTML
Raw Normal View History

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Force Dovecot to recalculate mailbox quota</title>
<link href="./css/markdown.css" rel="stylesheet"></head>
</head>
<body>
<div id="navigation">
<a href="http://www.iredmail.org" target="_blank">iRedMail web site</a>
// <a href="./index.html">Document Index</a>
</div><h1 id="force-dovecot-to-recalculate-mailbox-quota">Force Dovecot to recalculate mailbox quota</h1>
<h2 id="dovecot-2x">Dovecot-2.x</h2>
<p>Dovecot provides command line tool <code>doveadm</code> to recalcuate mailbox quota.
Sample usage:</p>
<ul>
2015-05-10 08:03:53 -05:00
<li>Recalculate one mailbox:</li>
</ul>
2015-05-10 08:03:53 -05:00
<pre><code># doveadm quota recalc -u user@domain.ltd
</code></pre>
<ul>
2015-05-10 08:03:53 -05:00
<li>Recalculate ALL mail accounts:</li>
</ul>
2015-05-10 08:03:53 -05:00
<pre><code># doveadm quota recalc -A
</code></pre>
2015-05-10 08:03:53 -05:00
<p>Reference: <a href="http://wiki2.dovecot.org/Tools/Doveadm/Quota">Doveadm-Quota</a></p>
<h2 id="dovecot-1x-and-dovecot-2x">Dovecot-1.x and Dovecot-2.x</h2>
<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><code>mysql&gt; USE vmail;
mysql&gt; DELETE FROM used_quota WHERE username='user@domain.ltd';
</code></pre>
<ul>
<li>For OpenLDAP backend:</li>
</ul>
<pre><code>mysql&gt; USE iredadmin;
mysql&gt; DELETE FROM used_quota WHERE username='user@domain.ltd';
</code></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><p style="text-align: center; color: grey;">Document published under a <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">CC BY-ND 3.0</a> license. If you found something wrong, please do <a href="http://www.iredmail.org/contact.html">contact us</a> to fix it.<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3293801-21', 'auto');
ga('send', 'pageview');
2014-10-13 19:28:43 -05:00
</script>
</body></html>