aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-summary.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-03-27 20:48:13 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-03-27 20:48:13 +0800
commitf964f65b794916c85949898d18baf2d5d6cd1377 (patch)
treedb5bf6a4c406c0ede891dfba923d02b979bd6779 /camel/camel-folder-summary.c
parentad245944787560f84f5972f9d9c0391562692a33 (diff)
downloadgsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar.gz
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar.bz2
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar.lz
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar.xz
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.tar.zst
gsoc2013-evolution-f964f65b794916c85949898d18baf2d5d6cd1377.zip
Unref the html filter when done. (summary_build_content_info): Disable
2001-03-27 Not Zed <NotZed@Ximian.com> * camel-folder-summary.c (camel_folder_summary_finalize): Unref the html filter when done. (summary_build_content_info): Disable using the html parser to help index html mails until it gets sorted out. svn path=/trunk/; revision=8975
Diffstat (limited to 'camel/camel-folder-summary.c')
-rw-r--r--camel/camel-folder-summary.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c
index 8a21b8f93f..65de498783 100644
--- a/camel/camel-folder-summary.c
+++ b/camel/camel-folder-summary.c
@@ -199,13 +199,15 @@ camel_folder_summary_finalize (CamelObject *obj)
e_memchunk_destroy(s->content_info_chunks);
if (p->filter_index)
- camel_object_unref ((CamelObject *)p->filter_index);
+ camel_object_unref((CamelObject *)p->filter_index);
if (p->filter_64)
- camel_object_unref ((CamelObject *)p->filter_64);
+ camel_object_unref((CamelObject *)p->filter_64);
if (p->filter_qp)
- camel_object_unref ((CamelObject *)p->filter_qp);
+ camel_object_unref((CamelObject *)p->filter_qp);
if (p->filter_save)
- camel_object_unref ((CamelObject *)p->filter_save);
+ camel_object_unref((CamelObject *)p->filter_save);
+ if (p->filter_html)
+ camel_object_unref((CamelObject *)p->filter_html);
#ifdef ENABLE_THREADS
g_mutex_free(p->summary_lock);
@@ -2102,7 +2104,7 @@ summary_build_content_info(CamelFolderSummary *s, CamelMessageInfo *msginfo, Cam
}
g_free(encoding);
}
-
+
charset = header_content_type_param(ct, "charset");
if (charset!=NULL
&& !(strcasecmp(charset, "us-ascii")==0
@@ -2123,6 +2125,9 @@ summary_build_content_info(CamelFolderSummary *s, CamelMessageInfo *msginfo, Cam
}
}
+#if 0
+ /* this is disabled for now */
+ /* also, should this go before/instead of the charset decoding? xml interfaces are utf8 already? */
if (header_content_type_is(ct, "text", "html")) {
if (p->filter_html == NULL)
p->filter_html = camel_mime_filter_html_new();
@@ -2130,6 +2135,7 @@ summary_build_content_info(CamelFolderSummary *s, CamelMessageInfo *msginfo, Cam
camel_mime_filter_reset((CamelMimeFilter *)p->filter_html);
html_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)p->filter_html);
}
+#endif
/* and this filter actually does the indexing */
idx_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)p->filter_index);