Fix PGP/MIME layout in publish response

This commit is contained in:
s3lph 2021-09-26 18:57:05 +02:00
parent c83c02cedd
commit 0f8ce0a476

View file

@ -217,9 +217,8 @@ Encrypt live everybody is.
encrypted: PGPMessage = self.key.encrypt(to_encrypt)
encrypted |= pgp_sign(self.domain, encrypted)
payload = MIMEApplication(str(encrypted), _subtype='octet-stream')
mpenc = MIMEApplication(payload.as_string(policy=default), _subtype='pgp-encrypted')
mpenc['Version'] = '1'
email = MIMEMultipart(_subtype='encrypted', _subparts=[mpenc], policy=default,
mpenc = MIMEApplication('Version: 1\r\n', _subtype='pgp-encrypted')
email = MIMEMultipart(_subtype='encrypted', _subparts=[mpenc, payload], policy=default,
protocol='application/pgp-encrypted')
email['Subject'] = 'Your key has been published'
email['To'] = self.submitter_address