summaryrefslogtreecommitdiff
path: root/src/leap/mx/mail_receiver.py
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2015-10-28 18:52:34 +0100
committerRuben Pollan <meskio@sindominio.net>2015-11-23 17:13:33 +0100
commit6fd862abc9e8711bd4aa117697c5df85cf6f560a (patch)
tree6a31b4ecd4bff0333c16cf9377e29c5e869ec856 /src/leap/mx/mail_receiver.py
parentebc748d6dbe366d82e601c94f4191718b310bfae (diff)
[feat] add '@deliver.local' to uuid
- Resolves: #5959
Diffstat (limited to 'src/leap/mx/mail_receiver.py')
-rw-r--r--src/leap/mx/mail_receiver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/mx/mail_receiver.py b/src/leap/mx/mail_receiver.py
index a9344c3..ea13658 100644
--- a/src/leap/mx/mail_receiver.py
+++ b/src/leap/mx/mail_receiver.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# mail_receiver.py
-# Copyright (C) 2013 LEAP
+# Copyright (C) 2013, 2015 LEAP
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -269,7 +269,7 @@ class MailReceiver(Service):
return None
final_address = delivereds.pop(0)
_, addr = email.utils.parseaddr(final_address)
- uuid, _ = addr.split("@")
+ uuid = addr.split("@")[0]
return uuid
@defer.inlineCallbacks