comment out code generating errors

When the `maildirsize` file does not exist it causes the script to fail.
The IOError is not caught by the execpt
This commit is contained in:
John Supplee 2019-01-29 19:41:54 +02:00
parent f68ef70b94
commit b3f9063ae7
1 changed files with 9 additions and 9 deletions

View File

@ -136,15 +136,15 @@ def get_mail_users_ex(env, with_archived=False):
box_size = 0 box_size = 0
box_count = 0 box_count = 0
box_quota = '' box_quota = ''
try: # try:
with open('/home/user-data/mail/mailboxes/%s/%s/maildirsize' % (domain, user), 'r') as f: # with open('/home/user-data/mail/mailboxes/%s/%s/maildirsize' % (domain, user), 'r') as f:
box_quota = f.readline() # box_quota = f.readline()
for line in f.readlines(): # for line in f.readlines():
(size, count) = line.split(' ') # (size, count) = line.split(' ')
box_size += int(size) # box_size += int(size)
box_count += int(count) # box_count += int(count)
except: # except:
box_size = '?' # box_size = '?'
user = { user = {
"email": email, "email": email,