From 0e72ddbf7c85edd77156fb1ac7691fe293bb7554 Mon Sep 17 00:00:00 2001 From: Bharath Acharya Date: Fri, 24 Jul 2009 11:45:29 +0530 Subject: BUG #589494: Doesn't print full list of recipients Display all email addresses by default for the To, Cc and Bcc fields. --- mail/em-format-html-print.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mail/em-format-html-print.c b/mail/em-format-html-print.c index c5c99bcab1..86242b1467 100644 --- a/mail/em-format-html-print.c +++ b/mail/em-format-html-print.c @@ -228,6 +228,11 @@ em_format_html_print_message (EMFormatHTMLPrint *efhp, { g_object_ref (efhp); + /* Wrap flags to display all entries by default.*/ + ((EMFormatHTML *) efhp)->header_wrap_flags |= EM_FORMAT_HTML_HEADER_TO + | EM_FORMAT_HTML_HEADER_CC + | EM_FORMAT_HTML_HEADER_BCC; + mail_get_message ( folder, uid, emfhp_got_message, efhp, mail_msg_unordered_push); } -- cgit v1.2.3