[Dovecot] domain quota dictionary
Hi
I just configure dovecot with the second dictionary for the domain quota
dict { quotadict = mysql:/usr/local/etc/dovecot-quota.conf quota_domain = mysql:/usr/local/etc/dovecot-quota-domain.conf }
plugin { quota = dict:user::proxy::quotadict quota2 = dict:domain:%d:proxy::quota_domain }
and the dovecot-quota-domain.conf looks like this :
connect = host=xxx dbname=xxx user=xxxx password=xxxx map { pattern = priv/quota/storage table = domain_quota username_field = domain value_field = used_quota }
map { pattern = priv/quota/messages table = domain_quota username_field = domain value_field = messages }
The problem is that the dictionary table gets updated only with the first mailbox informations (quota and messages for the first mailbox within domain that is accessed). I suppose that have something to do with the pattern but I can't find any docs for what the pattern must look in the case of a domain quota dictionary. Can anybody help me with a working example or some docs.
Alex
On Wed, 2010-07-14 at 13:38 +0300, alex wrote:
and the dovecot-quota-domain.conf looks like this :
Looks ok.
What exactly do you mean by this? That the initial quota is calculated only from the first user that accesses it? Yes, that's expected. The domain quota support is somewhat of a hack right now, and initial quota calculation or quota recalculation isn't possible easily.
Or do you mean that even when other users later do changes, the domain quota won't be updated?
On 07/14/2010 05:20 PM, Timo Sirainen wrote:
That exact : other users don't trigger domain quota modification. This is how I reproduce this behavior :
clear both tables : delete from domain_quota where domain like '%example.com'; delete from quota where email like '%example.com';
login with the first user
select * from quota where email like '%example.com'; +-------------------+------------+----------+---------------------+ | email | used_quota | messages | last_update | +-------------------+------------+----------+---------------------+ | me@example.com | 123996992 | 21820 | 2010-07-14 17:33:26 | +-------------------+------------+----------+---------------------+
select * from domain_quota where domain like '%example.com'; +----------------+------------+----------+---------------------+ | domain | used_quota | messages | last_update | +----------------+------------+----------+---------------------+ | example.com | 123996992 | 21820 | 2010-07-14 17:33:03 | +----------------+------------+----------+---------------------+
..so far so good
- login with the second user
select * from quota where email like '%example.com'; +---------------------+------------+----------+---------------------+ | email | used_quota | messages | last_update | +---------------------+------------+----------+---------------------+ | me@example.com | 123996992 | 21820 | 2010-07-14 17:33:26 | | radu@example.com | 1798426 | 2 | 2010-07-14 17:33:58 | +---------------------+------------+----------+---------------------+
select * from domain_quota where domain like '%example.com'; +----------------+------------+----------+---------------------+ | domain | used_quota | messages | last_update | +----------------+------------+----------+---------------------+ | example.com | 123996992 | 21820 | 2010-07-14 17:33:03 | +----------------+------------+----------+---------------------+
..domain quota usage is unchange and messages the same.
On 07/14/2010 05:55 PM, Timo Sirainen wrote:
Ok, I have send a mail to the second user:
select * from domain_quota where domain like '%example.com'; +----------------+------------+----------+---------------------+ | domain | used_quota | messages | last_update | +----------------+------------+----------+---------------------+ | example.com | 124042046 | 21831 | 2010-07-14 17:57:37 | +----------------+------------+----------+---------------------+
select * from quota where email like '%example.com'; +---------------------+------------+----------+---------------------+ | email | used_quota | messages | last_update | +---------------------+------------+----------+---------------------+ | me@example.com | 124038256 | 21830 | 2010-07-14 17:56:03 | | radu@example.com | 1802216 | 3 | 2010-07-14 17:57:37 | +---------------------+------------+----------+---------------------+
The domain_quota is updated only with the new message. The two messages and sizes, that already exists are not added to the domain quota.
On Wed, 2010-07-14 at 18:07 +0300, alex wrote:
The domain_quota is updated only with the new message. The two messages and sizes, that already exists are not added to the domain quota.
Yes, that's what I tried to say in my previous mail. There is no easy (automatic) way to initialize or recalculate domain quota.
participants (2)
-
alex
-
Timo Sirainen