summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2016-02-02 18:10:26 +0100
committerKali Kaneko <kali@leap.se>2016-02-28 14:49:00 -0400
commitb962e9bc7973f3a826dccfa9aa417b0139b94104 (patch)
tree19eefb4e9bd1943edd12c1bec03b3f49aef876dc
parentf2fa5804879f6d7614d05537b042be3586958e7f (diff)
[bug] Use the right succeed function for passthrough encrypted email
- Resolves #7861
-rw-r--r--changes/next-changelog.rst3
-rw-r--r--src/leap/mail/outgoing/service.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/changes/next-changelog.rst b/changes/next-changelog.rst
index 7979246..67bf940 100644
--- a/changes/next-changelog.rst
+++ b/changes/next-changelog.rst
@@ -20,9 +20,10 @@ Features
Bugfixes
~~~~~~~~
-- `#1235 <https://leap.se/code/issues/1235>`_: Description for the fixed stuff corresponding with issue #1235.
+- `#7861 <https://leap.se/code/issues/7861>`_: Use the right succeed function for passthrough encrypted email.
- Fix the get_body logic for corner-cases in which body is None (yet-to-be synced docs, mainly).
+- `#1235 <https://leap.se/code/issues/1235>`_: Description for the fixed stuff corresponding with issue #1235.
- Bugfix without related issue number.
Misc
diff --git a/src/leap/mail/outgoing/service.py b/src/leap/mail/outgoing/service.py
index 8d7c0f8..8e06bd4 100644
--- a/src/leap/mail/outgoing/service.py
+++ b/src/leap/mail/outgoing/service.py
@@ -254,7 +254,7 @@ class OutgoingMail(object):
origmsg = Parser().parsestr(raw)
if origmsg.get_content_type() == 'multipart/encrypted':
- return defer.success((origmsg, recipient))
+ return defer.succeed((origmsg, recipient))
from_address = validate_address(self._from_address)
username, domain = from_address.split('@')