Hi I am running dovecot  with quota. as show in this part of dovecot.conf
.
protocols = imap pop3
protocol imap {
  mail_plugins = quota imap_quota
  imap_client_workarounds = outlook-idle delay-newmail
}
protocol pop3 {
  mail_plugins = quota
  pop3_client_workarounds = outlook-no-nuls oe-ns-eoh
  pop3_uidl_format = %08Xu%08Xv
}
protocol lda {
  mail_plugins = quota
  log_path = /var/log/dovecot-deliver.log
  info_log_path = /var/log/dovecot-deliver.log
}
Now  I want to see the users's use of quota in postfixadmin, wich
demende the use of dict quota. That is wath I do not understang.
Can I have dict quota and mail_plugins=quota  at the same time?
How do I do?
Thanks
On Wed, 2009-02-18 at 17:06 +0100, Osvaldo Alvarez Pozo wrote:> Now I want to see the users's use of quota in postfixadmin, wich > demende the use of dict quota. That is wath I do not understang. > > Can I have dict quota and mail_plugins=quota at the same time?You have to use mail_plugins=quota to get dict quota working. Since you didn't post your entire config (use dovecot -n), I'm assuming you're currently using Maildir++ quota. You can't really use both Maildir++ quota and dict quota at the same time. But there's really no point in doing that anyway. You also didn't specify your Dovecot version. If you're using v1.1 you could enable dict quota pretty easily by just changing the quota=maildir to quota=dict and setting up other dict quota settings right. With v1.0 you don't really want to use dict quota, it's pretty broken. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part URL: <http://dovecot.org/pipermail/dovecot/attachments/20090220/a75a8b72/attachment-0002.bin>
Hi.
Ok my file is :
mail_location = maildir:/var/vmail/%d/%u/Maildir
mail_extra_groups = mail
first_valid_uid = 5000
last_valid_uid = 5000
maildir_copy_with_hardlinks = yes
disable_plaintext_auth = no
dotlock_use_excl=yes
protocols = imap pop3
protocol imap {
  mail_plugins = quota imap_quota
  imap_client_workarounds = outlook-idle delay-newmail
protocol pop3 {
  mail_plugins = quota
  pop3_client_workarounds = outlook-no-nuls oe-ns-eoh
  pop3_uidl_format = %08Xu%08Xv
}
protocol lda {
  mail_plugins = quota
  log_path = /var/log/dovecot-deliver.log
  info_log_path = /var/log/dovecot-deliver.log
}
auth default {
mechanisms = plain login
  passdb sql {
    args = /usr/dovecot/etc/sql.conf
  }
# userdb prefetch {
#  }
  userdb sql {
    args = /usr/dovecot/etc/sql.conf
  }
dict {
}
plugin {
}
My dovecot version is 1.1 .
I use dovecot with maildir
Thanks very much.
On Sat, Feb 21, 2009 at 12:12 AM, Timo Sirainen <tss at iki.fi>
wrote:> On Wed, 2009-02-18 at 17:06 +0100, Osvaldo Alvarez Pozo wrote:
>
>> Now  I want to see the users's use of quota in postfixadmin, wich
>> demende the use of dict quota. That is wath I do not understang.
>>
>> Can I have dict quota and mail_plugins=quota  at the same time?
>
> You have to use mail_plugins=quota to get dict quota working. Since you
> didn't post your entire config (use dovecot -n), I'm assuming
you're
> currently using Maildir++ quota. You can't really use both Maildir++
> quota and dict quota at the same time. But there's really no point in
> doing that anyway.
>
> You also didn't specify your Dovecot version. If you're using v1.1
you
> could enable dict quota pretty easily by just changing the quota=maildir
> to quota=dict and setting up other dict quota settings right. With v1.0
> you don't really want to use dict quota, it's pretty broken.
>
>