mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-25 07:47:05 +00:00
bug fix for displaying quotas
This commit is contained in:
parent
3cd14bd4b8
commit
587f33b6c0
@ -129,7 +129,7 @@ def get_mail_users_ex(env, with_archived=False):
|
|||||||
active_accounts = set()
|
active_accounts = set()
|
||||||
c = open_database(env)
|
c = open_database(env)
|
||||||
c.execute('SELECT email, privileges, quota FROM users')
|
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)
|
active_accounts.add(email)
|
||||||
|
|
||||||
user = {
|
user = {
|
||||||
|
Loading…
Reference in New Issue
Block a user