Displaying 3 results from an estimated 3 matches for "quota_root_recalculate_relative_rul".
Did you mean:
quota_root_recalculate_relative_rules
2014 Nov 21
2
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
...ex adbd70d..8e4d7e0 100644
--- a/src/plugins/quota/quota.c
+++ b/src/plugins/quota/quota.c
@@ -1163,6 +1163,8 @@ static void quota_warnings_execute(struct
quota_transaction_context *ctx,
&count_current, &count_limit) < 0)
return;
+ quota_root_recalculate_relative_rules(root->set, bytes_limit,
count_limit);
+
bytes_before = bytes_current - ctx->bytes_used;
count_before = count_current - ctx->count_used;
for (i = 0; i < count; i++) {
2015 Mar 23
1
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
...gt;> +++ b/src/plugins/quota/quota.c
>> @@ -1163,6 +1163,8 @@ static void quota_warnings_execute(struct
>> quota_transaction_context *ctx,
>> &count_current, &count_limit) < 0)
>> return;
>>
>> + quota_root_recalculate_relative_rules(root->set, bytes_limit,
>> count_limit);
>> +
>> bytes_before = bytes_current - ctx->bytes_used;
>> count_before = count_current - ctx->count_used;
>> for (i = 0; i < count; i++) {
> Hi,
> this patch realy fix the bug in quo...
2015 Feb 17
0
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
.../src/plugins/quota/quota.c
> +++ b/src/plugins/quota/quota.c
> @@ -1163,6 +1163,8 @@ static void quota_warnings_execute(struct
> quota_transaction_context *ctx,
> &count_current, &count_limit) < 0)
> return;
>
> + quota_root_recalculate_relative_rules(root->set, bytes_limit,
> count_limit);
> +
> bytes_before = bytes_current - ctx->bytes_used;
> count_before = count_current - ctx->count_used;
> for (i = 0; i < count; i++) {
Hi,
this patch realy fix the bug in quota_warning. Is it possible to...