summaryrefslogtreecommitdiff
path: root/src/leap/mail/mail.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-09-14 23:19:58 -0400
committerRuben Pollan <meskio@sindominio.net>2015-09-16 02:00:27 +0200
commit0a03c0a014b1874114eabb855705ca79f09d1982 (patch)
treeea10d37ba6b21a91636daf96163c79f62ac73179 /src/leap/mail/mail.py
parentcf7906eda74ad73d026f1a2a29b3581d72abb473 (diff)
[feat] use async events api
in this way, we're using twisted reactor instead of having another thread with zmq's own copy of tornado ioloop. Resolves: #7274
Diffstat (limited to 'src/leap/mail/mail.py')
-rw-r--r--src/leap/mail/mail.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/leap/mail/mail.py b/src/leap/mail/mail.py
index 540a493..258574e 100644
--- a/src/leap/mail/mail.py
+++ b/src/leap/mail/mail.py
@@ -28,7 +28,7 @@ from twisted.internet import defer
from twisted.python import log
from leap.common.check import leap_assert_type
-from leap.common.events import emit, catalog
+from leap.common.events import emit_async, catalog
from leap.common.mail import get_email_charset
from leap.mail.adaptors.soledad import SoledadMailAdaptor
@@ -736,8 +736,7 @@ class MessageCollection(object):
:param unseen: number of unseen messages.
:type unseen: int
"""
- # TODO change name of the signal, independent from imap now.
- emit(catalog.MAIL_UNREAD_MESSAGES, str(unseen))
+ emit_async(catalog.MAIL_UNREAD_MESSAGES, str(unseen))
def copy_msg(self, msg, new_mbox_uuid):
"""