iredmail-doc/html_bk/ignore.trash.folder.in.quot...

75 lines
3.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2015-08-14 08:25:15 -05:00
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>在邮箱配额中忽略垃圾箱目录</title>
<link rel="stylesheet" type="text/css" href="./css/markdown.css" />
2015-08-14 08:25:15 -05:00
</head>
<body>
2015-08-14 08:25:15 -05:00
<div id="navigation">
2017-11-16 21:48:44 -06:00
<a href="https://www.iredmail.org" target="_blank">
<img alt="iRedMail web site"
src="./images/logo-iredmail.png"
style="vertical-align: middle; height: 30px;"
/>&nbsp;
<span>iRedMail</span>
</a>
&nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><div class="admonition note">
<p class="admonition-title">This tutorial is available in other languages. <a href="https://github.com/iredmail/docs">Help translate more</a></p>
2016-04-24 09:21:04 -05:00
<p><a href="./ignore.trash.folder.in.quota.html">English</a> /</p>
</div>
<h1 id="_1">在邮箱配额中忽略垃圾箱目录</h1>
2015-08-14 08:25:15 -05:00
<p>在 Dovecot 中,针对单个用户的邮箱配额限制定义在下列文件之一:</p>
<ul>
<li><code>/etc/dovecot/dovecot-mysql.conf</code>: MySQL 后端</li>
<li><code>/etc/dovecot/dovecot-pgsql.conf</code>: PostgreSQL 后端</li>
</ul>
<p>如果没有针对单个用户的邮箱配额限制Dovecot 将使用 <code>/etc/dovecot/dovecot.conf</code>
文件中的 <code>quota_rule[X]</code> 设置。例如:</p>
<pre><code># File: /etc/dovecot/dovecot.conf
2019-09-18 23:30:03 -05:00
plugin {
2015-08-14 08:25:15 -05:00
quota = dict:user::proxy::quotadict
quota_rule = *:storage=1G
#quota_rule2 = *:messages=0
#quota_rule3 = Trash:storage=1G
#quota_rule4 = Junk:ignore
...
}
</code></pre>
<p>因此,要忽略 <code>Trash</code> 目录的邮箱容量,可以在 <code>/etc/dovecot/dovecot.conf</code>
<code>/etc/dovecot/dovecot-{mysql,pgsql,ldap}.conf</code> 中增加新的配额规则quota_rule</p>
<ul>
<li>配置示例 1</li>
</ul>
<pre><code># File: /etc/dovecot/dovecot.conf
2019-09-18 23:30:03 -05:00
plugin {
2015-08-14 08:25:15 -05:00
quota = dict:user::proxy::quotadict
quota_rule = *:storage=1G
quota_rule2 = Trash:ignore # &lt;- 新配额规则:忽略 Trash 目录
...
}
</code></pre>
<ul>
<li>配置示例 2:</li>
</ul>
<p>OpenLDAP 后端:</p>
<pre><code># File: /etc/dovecot/dovecot-ldap.conf
user_attrs = ...,mailQuota=quota_rule=*:bytes=%$,=quota_rule2=Trash:ignore
</code></pre>
<p>MySQL 或 PostgreSQL 后端:</p>
<h1 id="file-etcdovecotdovecot-mysqlconf-or-dovecot-pgsqlconf">File: /etc/dovecot/dovecot-mysql.conf, or dovecot-pgsql.conf</h1>
<p>user_query = SELECT ... \
CONCAT('<em>:bytes=', mailbox.quota</em>1048576) AS quota_rule \
'Trash:ignore' AS quota_rule2 \ -- 新配额规则:忽略 Trash 目录
FROM ...
```</p><div class="footer">
2019-12-31 00:07:48 -06:00
<p style="text-align: center; color: grey;">All documents are available in <a href="https://github.com/iredmail/docs/">GitHub repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://github.com/iredmail/docs/archive/master.zip">download the latest version</a> for offline reading. If you found something wrong, please do <a href="https://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
2021-07-11 23:36:15 -05:00
</div></body></html>