diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-13 23:37:54 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-13 23:37:54 +0800 |
commit | c22062eb58d8b15321d9c0dcc3c3bf02574ecc19 (patch) | |
tree | 285e1af34681dfa94d36853c8a2e8f8202f6927c /mail/mail-component.c | |
parent | 6ab7885bbe8a546cc9d5ebb585f0de420b6510eb (diff) | |
download | gsoc2013-evolution-c22062eb58d8b15321d9c0dcc3c3bf02574ecc19.tar.gz gsoc2013-evolution-c22062eb58d8b15321d9c0dcc3c3bf02574ecc19.tar.zst gsoc2013-evolution-c22062eb58d8b15321d9c0dcc3c3bf02574ecc19.zip |
Add a stripsig filter. Fixes bug #52767.
2004-05-13 Jeffrey Stedfast <fejj@novell.com>
* em-format-quote.c (emfq_text_plain): Add a stripsig
filter. Fixes bug #52767.
* em-stripsig-filter.[c,h]: New filter class to strip
signatures. Useful when generating forwards/replies.
svn path=/trunk/; revision=25902
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r-- | mail/mail-component.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c index 7310b12a35..0f8438977e 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -294,13 +294,13 @@ setup_search_context (MailComponent *component) if (priv->search_context == NULL) { char *user = g_build_filename(component->priv->base_directory, "mail/searches.xml", NULL); char *system = g_strdup (EVOLUTION_PRIVDATADIR "/searchtypes.xml"); - + priv->search_context = rule_context_new (); /* This is a sort of hack, but saves us having to have a search context just to do it for us */ priv->search_context->flags |= RULE_CONTEXT_THREADING; g_object_set_data_full (G_OBJECT (priv->search_context), "user", user, g_free); g_object_set_data_full (G_OBJECT (priv->search_context), "system", system, g_free); - + rule_context_add_part_set (priv->search_context, "partset", filter_part_get_type (), rule_context_add_part, rule_context_next_part); |