]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
quota: Rename quota_over_status_value to quota_over_status_mask
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Fri, 16 Aug 2024 11:56:33 +0000 (14:56 +0300)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Fri, 17 Jan 2025 08:40:00 +0000 (10:40 +0200)
src/plugins/quota/quota.c

index 23cbfe36bdfd4dd262d8c6f25e932155184e032f..1337b2b08fba62a173a31404119ebb409e638a97 100644 (file)
@@ -1127,8 +1127,8 @@ quota_over_status_init_root(struct quota_root *root,
                return FALSE;
        }
 
-       /* e.g.: quota_over_status_value=TRUE or quota_over_status_value=*  */
-       name = t_strconcat(root->set->set_name, "_over_status_value", NULL);
+       /* e.g.: quota_over_status_mask=TRUE or quota_over_status_mask=*  */
+       name = t_strconcat(root->set->set_name, "_over_status_mask", NULL);
        mask = mail_user_plugin_getenv(root->quota->user, name);
        if (mask == NULL) {
                e_debug(root->quota->event, "quota_over_status check: "
@@ -1137,7 +1137,7 @@ quota_over_status_init_root(struct quota_root *root,
        }
 
        /* compare quota_over_status_current's value (that comes from userdb) to
-          quota_over_status_value and save the result. */
+          quota_over_status_mask and save the result. */
        name = t_strconcat(root->set->set_name, "_over_status_current", NULL);
        *quota_over_status_current_r =
                mail_user_plugin_getenv(root->quota->user, name);