diff options
-rw-r--r-- | changes/VERSION_COMPAT | 1 | ||||
-rw-r--r-- | changes/bug_4925_close_imap_session | 1 | ||||
-rw-r--r-- | src/leap/bitmask/services/mail/conductor.py | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/changes/VERSION_COMPAT b/changes/VERSION_COMPAT index cc00ecf7..1f523ccd 100644 --- a/changes/VERSION_COMPAT +++ b/changes/VERSION_COMPAT @@ -8,3 +8,4 @@ # # BEGIN DEPENDENCY LIST ------------------------- # leap.foo.bar>=x.y.z +leap.mail>=0.3.9 diff --git a/changes/bug_4925_close_imap_session b/changes/bug_4925_close_imap_session new file mode 100644 index 00000000..f70b3e2b --- /dev/null +++ b/changes/bug_4925_close_imap_session @@ -0,0 +1 @@ +- Properly reset imap session on logout. Closes: #4925 diff --git a/src/leap/bitmask/services/mail/conductor.py b/src/leap/bitmask/services/mail/conductor.py index c16801d4..fc53923c 100644 --- a/src/leap/bitmask/services/mail/conductor.py +++ b/src/leap/bitmask/services/mail/conductor.py @@ -109,6 +109,7 @@ class IMAPControl(object): # Stop listening on the IMAP port self.imap_port.stopListening() # Stop the protocol + self.imap_factory.theAccount.closed = True self.imap_factory.doStop() def fetch_incoming_mail(self): |