Displaying 2 results from an estimated 2 matches for "quota_size".
2014 Mar 25
1
Getting second quota limit out of database
Hello there,
I am working with dovecot v2.2.12, and have setup a user and domain
quota by using a quota/quota_rule for user and quota2/quota2_rule for
the domain.
This works fine when the limit configuration for both is stored inside
dovecot configuration files. However, I would like to have the limits
configurable on a user and domain base, and that data is stored inside
my SQL database.
2013 Dec 19
2
Does quota-status respect quota_grace?
...= fs:Mailbox quota:user:inode_per_mail
quota2_grace = 18%%
quota_grace = 18%%
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
Quota rules are read from PostgreSQL (snippet)
user_query = ...
'*:bytes=' || domains.quota_size || 'M:messages=' ||
domains.quota_files as quota_rule, \
'*:bytes=' || mailboxes.quota_size || 'M:messages=' ||
mailboxes.quota_files as quota2_rule, \
...
As far as I can tell, quota enforcing in dovecot-lda works correctly.
User is allowed one message which bring...