diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-12-17 16:26:14 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-12-17 16:27:55 -0300 |
commit | 475974a1b0bd07855a6a9e84b5445d2f30ed4527 (patch) | |
tree | 1ec63d7745e0a4b7626fa5ef55e3ef62ca7c2df3 /mail/src | |
parent | bbcea6100bec313251b44cf6914ed6054c970f0a (diff) |
Footer url shouldn't end in period.
[Closes #4791]
Diffstat (limited to 'mail/src')
-rw-r--r-- | mail/src/leap/mail/smtp/gateway.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/src/leap/mail/smtp/gateway.py b/mail/src/leap/mail/smtp/gateway.py index a78bd55b..a24115b9 100644 --- a/mail/src/leap/mail/smtp/gateway.py +++ b/mail/src/leap/mail/smtp/gateway.py @@ -603,7 +603,7 @@ class EncryptedMessage(object): from_address = validate_address(self._fromAddress.addrstr) username, domain = from_address.split('@') self.lines.append('--') - self.lines.append('%s - https://%s/key/%s.' % + self.lines.append('%s - https://%s/key/%s' % (self.FOOTER_STRING, domain, username)) self.lines.append('') self._origmsg = self.parseMessage() |