Displaying 4 results from an estimated 4 matches for "root_set".
Did you mean:
root_dev
2014 Nov 21
2
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
...ollowing are used:
1. percentage-based quota warnings, i.e.:
quota_warning = storage=1%% quota-warning 1 %u
2. filesystem quota backend (and probably others, except for quotas
configured directly in dovecot config)
Percentage-based quota warnings have rule.bytes_limit recalculated based
on root_set->default_rule.bytes_limit, however this value is zero when
FS quotas are in use. Real quota values (from quotactl) are fetched very
late, in quota_warnings_execute() but at that point no recalculation
happens. As the warning rules have bytes_limit==0, they're effectively
ignored.
The pa...
2013 Jan 17
0
possible: two private namespaces with different quota?
...the default one and the archive one. Furthermore the dict
records the quota of the archive namespace as user "ns=archive". Because
the quota_rules does not accept "*", I see no way to have two or more
private quota roots.
Could one improve
quota_root_rule_find(struct quota_root_settings *root_set, const char *name)
{
struct quota_rule *rule;
array_foreach_modifiable(&root_set->rules, rule) {
char *p = strchr(rule->mailbox_name, '\0');
if(p && p > rule->mailbox_name + 1 && p[-1] == '*' ) {
/* compare box* */
if...
2015 Mar 23
1
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
...t;
>> quota_warning = storage=1%% quota-warning 1 %u
>>
>> 2. filesystem quota backend (and probably others, except for quotas
>> configured directly in dovecot config)
>>
>> Percentage-based quota warnings have rule.bytes_limit recalculated
>> based on root_set->default_rule.bytes_limit, however this value is
>> zero when FS quotas are in use. Real quota values (from quotactl) are
>> fetched very late, in quota_warnings_execute() but at that point no
>> recalculation happens. As the warning rules have bytes_limit==0,
>> they...
2015 Feb 17
0
[PATCH] [dovecot 2.2.9] Quota warnings ignored with FS quotas
...sed quota warnings, i.e.:
>
> quota_warning = storage=1%% quota-warning 1 %u
>
> 2. filesystem quota backend (and probably others, except for quotas
> configured directly in dovecot config)
>
> Percentage-based quota warnings have rule.bytes_limit recalculated
> based on root_set->default_rule.bytes_limit, however this value is
> zero when FS quotas are in use. Real quota values (from quotactl) are
> fetched very late, in quota_warnings_execute() but at that point no
> recalculation happens. As the warning rules have bytes_limit==0,
> they're effectiv...