2005-08-05  Not Zed  <NotZed@Ximian.com>

        ** See bug #312397.

        * em-format-quote.c (emfq_format_message): if we are rendering an
        attached message, include the headers always and a marker for it.

svn path=/trunk/; revision=30026
This commit is contained in:
Not Zed
2005-08-08 04:30:38 +00:00
committed by Michael Zucci
parent 014c126856
commit 6f4d79f29e
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2005-08-05 Not Zed <NotZed@Ximian.com>
** See bug #312397.
* em-format-quote.c (emfq_format_message): if we are rendering an
attached message, include the headers always and a marker for it.
2005-08-07 Rodney Dawes <dobey@novell.com>
* em-folder-browser.c (emfb_search_items):

View File

@ -384,8 +384,11 @@ emfq_format_message(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con
"<blockquote type=cite>\n"
"<font color=\"#%06x\">\n",
emfq->citation_colour & 0xffffff);
if (emfq->flags & EM_FORMAT_QUOTE_HEADERS)
if (((CamelMimePart *)emf->message) != part) {
camel_stream_printf(stream, "%s</br>\n", _("-------- Forwarded Message --------"));
emfq_format_headers (emfq, stream, (CamelMedium *)part);
} else if (emfq->flags & EM_FORMAT_QUOTE_HEADERS)
emfq_format_headers (emfq, stream, (CamelMedium *)part);
em_format_part (emf, stream, part);