[Dovecot] Fix type of last_notification
parent
24432b0d9d
commit
3aef412669
|
@ -94,7 +94,7 @@ def notify_rcpt(rcpt, msg_count):
|
|||
records = query_mysql('SELECT count(id) AS counter, rcpt FROM quarantine WHERE notified = 0 GROUP BY rcpt')
|
||||
|
||||
for record in records:
|
||||
last_notification = int(r.hget('Q_LAST_NOTIFIED', record['rcpt'])) or 0
|
||||
last_notification = int(r.hget('Q_LAST_NOTIFIED', record['rcpt']) or 0)
|
||||
attrs_json = query_mysql('SELECT attributes FROM mailbox WHERE username = "%s"' % (record['rcpt']))
|
||||
attrs = json.loads(str(attrs_json[0]['attributes']))
|
||||
if attrs['quarantine_notification'] == 'hourly':
|
||||
|
|
|
@ -164,7 +164,7 @@ services:
|
|||
- sogo
|
||||
|
||||
dovecot-mailcow:
|
||||
image: mailcow/dovecot:1.56
|
||||
image: mailcow/dovecot:1.57
|
||||
build: ./data/Dockerfiles/dovecot
|
||||
cap_add:
|
||||
- NET_BIND_SERVICE
|
||||
|
|
Loading…
Reference in New Issue