diff options
| -rw-r--r-- | mail/src/leap/mail/incoming/service.py | 2 | ||||
| -rw-r--r-- | mail/src/leap/mail/outgoing/service.py | 2 | ||||
| -rw-r--r-- | mail/src/leap/mail/outgoing/tests/test_outgoing.py | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/mail/src/leap/mail/incoming/service.py b/mail/src/leap/mail/incoming/service.py index 49bca50..98ed416 100644 --- a/mail/src/leap/mail/incoming/service.py +++ b/mail/src/leap/mail/incoming/service.py @@ -461,7 +461,7 @@ class IncomingMail(Service):                  decrmsg.add_header(                      self.LEAP_SIGNATURE_HEADER,                      self.LEAP_SIGNATURE_VALID, -                    pubkey=signkey.key_id) +                    pubkey=signkey.fingerprint)              return decrmsg.as_string()          if msg.get_content_type() == MULTIPART_ENCRYPTED: diff --git a/mail/src/leap/mail/outgoing/service.py b/mail/src/leap/mail/outgoing/service.py index 8e06bd4..eeb5d32 100644 --- a/mail/src/leap/mail/outgoing/service.py +++ b/mail/src/leap/mail/outgoing/service.py @@ -487,7 +487,7 @@ class OutgoingMail(object):          def add_openpgp_header(signkey):              username, domain = sign_address.split('@')              newmsg.add_header( -                'OpenPGP', 'id=%s' % signkey.key_id, +                'OpenPGP', 'id=%s' % signkey.fingerprint,                  url='https://%s/key/%s' % (domain, username),                  preference='signencrypt')              return newmsg, origmsg diff --git a/mail/src/leap/mail/outgoing/tests/test_outgoing.py b/mail/src/leap/mail/outgoing/tests/test_outgoing.py index 79eafd9..ad7803d 100644 --- a/mail/src/leap/mail/outgoing/tests/test_outgoing.py +++ b/mail/src/leap/mail/outgoing/tests/test_outgoing.py @@ -236,7 +236,7 @@ class TestOutgoingMail(TestCaseWithKeyManager):      def _set_sign_used(self, address):          def set_sign(key):              key.sign_used = True -            return self._km.put_key(key, address) +            return self._km.put_key(key)          d = self._km.get_key(address, openpgp.OpenPGPKey, fetch_remote=False)          d.addCallback(set_sign) | 
