24 Mar
2015
24 Mar
'15
12:24 a.m.
On 2015-03-23, at 1:43 AM, Gedalya gedalya@gedalya.net wrote:
The imap_quota plugin is relevant only under protocol imap {}. It reports quota usage via the IMAP protocol. Under lmtp and any other protocol that can change quota usage, you need to load only the quota plugin, which does the actual work of accounting and enforcing the quota.
Thank you for the hint. So what I need to do is remove $mail_plugins from each "mail_plugins =“ (I think the information I found was wrong in using $mail_plugins on each mail_plugins =, based on what you said above) , and only set the correct corresponding mail plugins? Is my example below, correct?
e.g. :
protocol imap {
mail_plugins = zlib quota imap_quota imap_zlib antispam
}
protocol lmtp {
mail_plugins = zlib quota
}
protocol lda {
mail_plugins =
}
--