mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/tglx/remail.git
synced 2024-11-08 13:42:36 +01:00
remail: Fix closing boundaries
EmailMessage.defects reports a CloseBoundaryNotFoundDefect on the outgoing PGP message. Add the missing closing boundary after the PGP payload section and fix up the closing boundaries format in msg_strip_.*(). Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
2760a2d671
commit
ea4b0b4632
1 changed files with 2 additions and 1 deletions
|
@ -230,6 +230,7 @@ def msg_set_gpg_payload(msg, encpl, bseed, addpgp=False):
|
|||
content += encpl + '\n'
|
||||
if addpgp:
|
||||
content += '-----END PGP MESSAGE-----\n\n'
|
||||
content += '--%s--\n' % boundary
|
||||
|
||||
msg_set_payload(msg, msg_from_string(content))
|
||||
msg_set_header(msg, 'Mime-Version', '1')
|
||||
|
@ -269,7 +270,7 @@ def msg_strip_html(msg):
|
|||
content += '--%s\n' % boundary
|
||||
content += m.as_string()
|
||||
content += '\n'
|
||||
content += '--%s\n' % boundary
|
||||
content += '--%s--\n' % boundary
|
||||
msg_set_payload(msg, msg_from_string(content))
|
||||
|
||||
def msg_sanitize_outlook(msg):
|
||||
|
|
Loading…
Reference in a new issue