From 587f33b6c03eb8e31dd27100e99a01e104be2be7 Mon Sep 17 00:00:00 2001 From: John Supplee Date: Mon, 28 Jan 2019 16:34:34 +0200 Subject: [PATCH] bug fix for displaying quotas --- management/mailconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/mailconfig.py b/management/mailconfig.py index 469a33a3..d9c89eb2 100755 --- a/management/mailconfig.py +++ b/management/mailconfig.py @@ -129,7 +129,7 @@ def get_mail_users_ex(env, with_archived=False): active_accounts = set() c = open_database(env) c.execute('SELECT email, privileges, quota FROM users') - for email, privileges in c.fetchall(): + for email, privileges, quota in c.fetchall(): active_accounts.add(email) user = {