diff options
author | Bharath Acharya <abharath@novell.com> | 2009-07-24 14:15:29 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2009-07-24 14:15:29 +0800 |
commit | 0e72ddbf7c85edd77156fb1ac7691fe293bb7554 (patch) | |
tree | 6113e8bafa624e39d775d8345352d38a19f0be62 /mail/em-format-html-print.c | |
parent | 2badc0e210b278304970f1471124eb1c25423fff (diff) | |
download | gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar.gz gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar.bz2 gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar.lz gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar.xz gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.tar.zst gsoc2013-evolution-0e72ddbf7c85edd77156fb1ac7691fe293bb7554.zip |
BUG #589494: Doesn't print full list of recipients
Display all email addresses by default for the To, Cc and Bcc fields.
Diffstat (limited to 'mail/em-format-html-print.c')
-rw-r--r-- | mail/em-format-html-print.c | 5 |
1 files changed, 5 insertions, 0 deletions
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); } |