diff options
author | 1 <NotZed@Ximian.com> | 2001-10-12 06:09:43 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-12 06:09:43 +0800 |
commit | f35bfdac73e1e48378dfb7afa7928a100a51e707 (patch) | |
tree | 8ed041f4a810cdde54f888148807425243e8183d /mail/mail-format.c | |
parent | a5fa3f992dd32fdf99bfcf550a8ce62df2b74d13 (diff) | |
download | gsoc2013-evolution-f35bfdac73e1e48378dfb7afa7928a100a51e707.tar.gz gsoc2013-evolution-f35bfdac73e1e48378dfb7afa7928a100a51e707.tar.zst gsoc2013-evolution-f35bfdac73e1e48378dfb7afa7928a100a51e707.zip |
Added a checkbox for body indexing.
2001-10-11 <NotZed@Ximian.com>
* local-config.glade: Added a checkbox for body indexing.
* mail-local.c (mail_local_reconfigure_folder): Get index_body
widget.
(mail_local_folder_reconfigure): Add an 'index_body' argument &
implement. Dont do anything if nothing changed.
* openpgp-utils.c (openpgp_verify): Use e_iconv_open.
svn path=/trunk/; revision=13603
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index c86a603253..0e92ddebd1 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -35,6 +35,7 @@ #include <libgnomevfs/gnome-vfs-mime-info.h> #include <libgnomevfs/gnome-vfs-mime-handlers.h> #include <gal/widgets/e-unicode.h> +#include <gal/util/e-iconv.h> #include <camel/camel-mime-utils.h> #include <camel/camel-pgp-mime.h> @@ -995,7 +996,7 @@ write_headers (CamelMimeMessage *message, MailDisplay *md) ct = camel_mime_part_get_content_type(CAMEL_MIME_PART(message)); charset = header_content_type_param(ct, "charset"); - charset = camel_charset_to_iconv(charset); + charset = e_iconv_charset_name(charset); header = CAMEL_MIME_PART(message)->headers; while (header) { |