diff options
author | Kali Kaneko <kali@leap.se> | 2015-09-23 11:45:58 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-09-23 11:45:58 -0400 |
commit | befb26bdaeca5bfe4df60f13f32d49d763af6121 (patch) | |
tree | 6de657567c5928c56cb615e39065dc977da69d73 /src/leap/mail/smtp/gateway.py | |
parent | 04baa4e421d22b02b259284c3f119d8480a989fa (diff) | |
parent | de07e19f81207084e102801febeaf96680ce5d8a (diff) |
Merge remote-tracking branch 'leapcode/pr/206' into develop
Diffstat (limited to 'src/leap/mail/smtp/gateway.py')
-rw-r--r-- | src/leap/mail/smtp/gateway.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/mail/smtp/gateway.py b/src/leap/mail/smtp/gateway.py index dd110e0..c988367 100644 --- a/src/leap/mail/smtp/gateway.py +++ b/src/leap/mail/smtp/gateway.py @@ -204,7 +204,8 @@ class SMTPDelivery(object): # verify if recipient key is available in keyring def found(_): log.msg("Accepting mail for %s..." % user.dest.addrstr) - emit_async(catalog.SMTP_RECIPIENT_ACCEPTED_ENCRYPTED, user.dest.addrstr) + emit_async(catalog.SMTP_RECIPIENT_ACCEPTED_ENCRYPTED, + user.dest.addrstr) def not_found(failure): failure.trap(KeyNotFound) |