diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-08-13 00:34:22 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-08-13 00:34:22 +0800 |
commit | 1d5b61d3d0231f70846b14330309e9cd7c827e97 (patch) | |
tree | 82a0b94725414f71a1393375307079461eab470c /mail/em-format-quote.c | |
parent | b58176fd489aaac131e27c9d091c4f6c8b228d49 (diff) | |
download | gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.gz gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.tar.zst gsoc2013-evolution-1d5b61d3d0231f70846b14330309e9cd7c827e97.zip |
Partial fix for bug #62771
2004-08-10 Jeffrey Stedfast <fejj@novell.com>
Partial fix for bug #62771
* em-format-quote.c (emfq_format_header): Same.
* em-format-html.c (efh_format_header): Decode the
X-Mailer/User-Agent headers.
svn path=/trunk/; revision=26889
Diffstat (limited to 'mail/em-format-quote.c')
-rw-r--r-- | mail/em-format-quote.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/em-format-quote.c b/mail/em-format-quote.c index 16d6bbc4e6..59f75181f9 100644 --- a/mail/em-format-quote.c +++ b/mail/em-format-quote.c @@ -309,6 +309,8 @@ emfq_format_header (EMFormat *emf, CamelStream *stream, CamelMedium *part, const if (!(txt = camel_medium_get_header (part, "user-agent"))) return; + txt = value = camel_header_format_ctext (txt, charset); + label = _("Mailer"); flags |= EM_FORMAT_HEADER_BOLD; } else if (!strcmp (name, "date") || !strcmp (name, "resent-date")) { |