summaryrefslogtreecommitdiff
path: root/mail/changes
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-07-08 12:47:04 -0400
committerRuben Pollan <meskio@sindominio.net>2015-07-13 11:55:30 -0400
commitbaca0d3a3ab1e1cbd9e48ade3dd93f9eadbf261e (patch)
treee04bc28d65a2b67da8215af09f3a5c0e1781659e /mail/changes
parent224ce27d98662e5823711a650d92ca9e6087a6e9 (diff)
[bug] fix the rendering of nested multipart
This commit fix a very simplistic and until now broken handling of nested multipart that went undetected due to the structure of the mails used in tests until now. Incidentally, the way that Mail.app structures attachments made this bug noticeable. There was also an off-by-one indexing error when retrieving the subpart message for a given subpart. Be aware that the current implementation will only handle correctly 2 levels of multipart nesting. Extending beyond in a more generic way will need further work. Closes: #7244
Diffstat (limited to 'mail/changes')
-rw-r--r--mail/changes/bug_7244_fix_nested_multipart1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/changes/bug_7244_fix_nested_multipart b/mail/changes/bug_7244_fix_nested_multipart
new file mode 100644
index 0000000..2d9cd8d
--- /dev/null
+++ b/mail/changes/bug_7244_fix_nested_multipart
@@ -0,0 +1 @@
+- Fix nested multipart rendering. Closes: #7244