From e73b98496e865b1b3573de53b7b6f48217543587 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Fri, 6 Mar 2015 11:48:09 -0400 Subject: [bug] fix concatenation of full_user_id to make mail work At some moment, the semantics of the username that we pick from the login widget changed, so that there's a duplication of the domain part in the full_user_id that we were passing to the keymanager and the mail services. This fix has already been done in the current develop branch (for next release 0.9.0), so there's no need to port it when merging it back. While it is true that there's no official release of the client supporting mail yet, this was an easy fix to port so we will do a 0.8.2 bugfix release so that the 0.8 branch can be used experimentally to test against development providers. This doesn't mean that you can expect support on the 0.8.x branch yet, it's only that there is one less bug in here :) Resolves: #6759 Releases: 0.8.2 --- src/leap/bitmask/services/mail/smtpbootstrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/leap/bitmask/services') diff --git a/src/leap/bitmask/services/mail/smtpbootstrapper.py b/src/leap/bitmask/services/mail/smtpbootstrapper.py index 9dd61488..eee8b6c4 100644 --- a/src/leap/bitmask/services/mail/smtpbootstrapper.py +++ b/src/leap/bitmask/services/mail/smtpbootstrapper.py @@ -152,7 +152,7 @@ class SMTPBootstrapper(AbstractBootstrapper): self._provider_config = ProviderConfig.get_provider_config(domain) self._keymanager = keymanager self._smtp_config = SMTPConfig() - self._userid = userid + self._userid = str(userid) self._download_if_needed = download_if_needed try: -- cgit v1.2.3