From 0b9195cb2c24add072671f82d1d1498b78a8b217 Mon Sep 17 00:00:00 2001 From: Sankar P Date: Mon, 22 Jan 2007 11:50:16 +0000 Subject: Added support for configuring the imap-headers plugin. 2007-01-22 Sankar P * configure.in: Added support for configuring the imap-headers plugin. svn path=/trunk/; revision=33133 --- ChangeLog | 5 + configure.in | 3 +- plugins/imap-features/ChangeLog | 9 + plugins/imap-features/Makefile.am | 40 +++ plugins/imap-features/imap-headers.c | 251 +++++++++++++++++ plugins/imap-features/imap-headers.glade | 296 +++++++++++++++++++++ .../org-gnome-imap-features.eplug.xml | 18 ++ 7 files changed, 621 insertions(+), 1 deletion(-) create mode 100644 plugins/imap-features/ChangeLog create mode 100644 plugins/imap-features/Makefile.am create mode 100644 plugins/imap-features/imap-headers.c create mode 100644 plugins/imap-features/imap-headers.glade create mode 100644 plugins/imap-features/org-gnome-imap-features.eplug.xml diff --git a/ChangeLog b/ChangeLog index 34155bcd10..5e72bf8092 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-22 Sankar P + + * configure.in: Added support for configuring the + imap-headers plugin. + 2006-01-08 Harish Krishnaswamy * NEWS, configure.in: Evolution 2.9.5 release diff --git a/configure.in b/configure.in index ee43858e85..9fe545dd2b 100644 --- a/configure.in +++ b/configure.in @@ -1486,7 +1486,7 @@ AC_SUBST_FILE(EVO_PLUGIN_RULE) AC_ARG_ENABLE(plugins, [ --enable-plugins=[no/base/all/experimental/list] Enable plugins.],enable_plugins="$enableval",enable_plugins=all) dnl Add any new plugins here -plugins_base_always="calendar-file calendar-http calendar-weather itip-formatter plugin-manager default-source addressbook-file startup-wizard print-message mark-all-read groupwise-features groupwise-account-setup hula-account-setup mail-account-disable publish-calendar caldav" +plugins_base_always="calendar-file calendar-http calendar-weather itip-formatter plugin-manager default-source addressbook-file startup-wizard print-message mark-all-read groupwise-features groupwise-account-setup hula-account-setup mail-account-disable publish-calendar caldav imap-features" plugins_base="$plugins_base_always $SA_JUNK_PLUGIN $EXCHANGE_PLUGIN $MONO_PLUGIN" all_plugins_base="$plugins_base_always sa-junk-plugin exchange-operations mono" @@ -1803,6 +1803,7 @@ plugins/sa-junk-plugin/Makefile plugins/ipod-sync/Makefile plugins/publish-calendar/Makefile plugins/import-ics-attachments/Makefile +plugins/imap-features/Makefile smime/Makefile smime/lib/Makefile smime/gui/Makefile diff --git a/plugins/imap-features/ChangeLog b/plugins/imap-features/ChangeLog new file mode 100644 index 0000000000..ee9075ce21 --- /dev/null +++ b/plugins/imap-features/ChangeLog @@ -0,0 +1,9 @@ +2007-01-22 Sankar P + + * ChangeLog + * imap-headers.c + * imap-headers.glade + * Makefile.am + * org-gnome-imap-features.eplug.xml: + + Initial list of files for the imap-features plugin diff --git a/plugins/imap-features/Makefile.am b/plugins/imap-features/Makefile.am new file mode 100644 index 0000000000..d84f600702 --- /dev/null +++ b/plugins/imap-features/Makefile.am @@ -0,0 +1,40 @@ +if OS_WIN32 +NO_UNDEFINED_REQUIRED_LIBS = $(top_builddir)/mail/libevolution-mail.la +endif + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/mail \ + -I$(top_srcdir)/libedataserver \ + $(EVOLUTION_MAIL_CFLAGS) \ + $(CAMEL_IMAP_CFLAGS) \ + -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" + +@EVO_PLUGIN_RULE@ + +plugin_DATA = org-gnome-imap-features.eplug +plugin_LTLIBRARIES = liborg-gnome-imap-features.la + +liborg_gnome_imap_features_la_SOURCES = \ + imap-headers.c + +liborg_gnome_imap_features_la_LIBADD= \ + $(NO_UNDEFINED_REQUIRED_LIBS) \ + $(EVOLUTION_MAIL_LIBS) + + +liborg_gnome_imap_features_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) + +glade_DATA = \ + imap-headers.glade + +errordir = $(privdatadir)/errors + +BUILT_SOURCES = org-gnome-imap-features.eplug $(error_i18n) + +EXTRA_DIST = \ + $(glade_DATA) \ + org-gnome-imap-features.eplug.xml + +CLEANFILES = $(BUILT_SOURCES) diff --git a/plugins/imap-features/imap-headers.c b/plugins/imap-features/imap-headers.c new file mode 100644 index 0000000000..d08f32489d --- /dev/null +++ b/plugins/imap-features/imap-headers.c @@ -0,0 +1,251 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Author: Sankar P + * + * Copyright 2004 Novell, Inc. (www.novell.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + +#include +#include + +#include +#include + +#include +#include + +#include +#include + +#include + +#include + +GtkWidget *all_headers, *basic_headers, *mailing_list_headers; +GtkWidget *custom_headers_box = NULL; +GtkTreeView *custom_headers_tree; +GtkTreeStore *store ; +GtkTreeIter iter; + +GtkButton *add_header, *remove_header; + +gchar **custom_headers_array = NULL; + +void imap_headers_abort (GtkWidget *button, EConfigHookItemFactoryData *data); +void imap_headers_commit (GtkWidget *button, EConfigHookItemFactoryData *data); +GtkWidget * org_gnome_imap_headers (EPlugin *epl, EConfigHookItemFactoryData *data); + +void +imap_headers_abort (GtkWidget *button, EConfigHookItemFactoryData *data) +{ +} + +void +imap_headers_commit (GtkWidget *button, EConfigHookItemFactoryData *data) +{ + EMConfigTargetAccount *target_account; + EAccount *account; + + target_account = (EMConfigTargetAccount *)data->config->target; + account = target_account->account; + + if (g_str_has_prefix (account->source->url, "imap://")) { + EAccount *temp = NULL; + EAccountList *accounts = mail_config_get_accounts (); + CamelURL *url = NULL; + CamelException ex; + GtkTreeModel *model; + GtkTreeIter iter; + GString *str; + + str = g_string_new(""); + + temp = mail_config_get_account_by_source_url (account->source->url); + + url = camel_url_new (e_account_get_string(account, E_ACCOUNT_SOURCE_URL), &ex); + + model = gtk_tree_view_get_model (custom_headers_tree); + if (gtk_tree_model_get_iter_first(model, &iter)) { + gchar *header; + do + { + gtk_tree_model_get (model, &iter, 0, &header, -1); + str = g_string_append (str, g_strstrip(header)); + str = g_string_append (str, " "); + } while (gtk_tree_model_iter_next(model, &iter)); + } + + camel_url_set_param (url, "imap_custom_headers", str->str); + + if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(all_headers))) { + camel_url_set_param (url, "all_headers", "1"); + camel_url_set_param (url, "basic_headers", NULL); + } else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(basic_headers))) { + camel_url_set_param (url, "basic_headers", "1"); + camel_url_set_param (url, "all_headers", NULL); + } else { + camel_url_set_param (url, "all_headers", NULL); + camel_url_set_param (url, "basic_headers", NULL); + } + + e_account_set_string (temp, E_ACCOUNT_SOURCE_URL, camel_url_to_string (url, 0)); + camel_url_free (url); + g_string_free (str, TRUE); + e_account_list_change (accounts, temp); + e_account_list_save (accounts); + } +} + +static void +add_header_clicked (GtkButton *button) +{ + GtkDialog *dialog; + GtkEntry *header; + GtkTreeModel *model; + GtkTreeIter iter; + gint result; + + dialog = GTK_DIALOG (gtk_dialog_new_with_buttons (_("Custom Header"), + NULL, + GTK_DIALOG_MODAL, + GTK_STOCK_CANCEL, + GTK_RESPONSE_REJECT, + GTK_STOCK_OK, + GTK_RESPONSE_ACCEPT, + NULL)); + header = GTK_ENTRY(gtk_entry_new ()); + gtk_container_add (GTK_CONTAINER(dialog->vbox), GTK_WIDGET(header)); + gtk_dialog_set_default_response (dialog, GTK_RESPONSE_ACCEPT); + gtk_widget_show_all (GTK_WIDGET(dialog)); + result = gtk_dialog_run (GTK_DIALOG (dialog)); + switch (result) + { + case GTK_RESPONSE_ACCEPT: + model = gtk_tree_view_get_model (custom_headers_tree); + gtk_tree_store_append (GTK_TREE_STORE(model), &iter, NULL); + gtk_tree_store_set (GTK_TREE_STORE(model), &iter, 0, gtk_entry_get_text (header), -1); + break; + } + gtk_widget_destroy (GTK_WIDGET(dialog)); +} + +static void +remove_header_clicked (GtkButton *button) +{ + GtkTreeSelection *select; + GtkTreeModel *model; + GtkTreeIter iter; + + select = gtk_tree_view_get_selection (custom_headers_tree); + + if (gtk_tree_selection_get_selected (select, &model, &iter)) + { + gtk_tree_store_remove(GTK_TREE_STORE(model), &iter); + } +} + +static void +fetch_all_headers_toggled (GtkWidget *all_option) +{ + if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(all_option))) + gtk_widget_set_sensitive (custom_headers_box, FALSE); + else + gtk_widget_set_sensitive (custom_headers_box, TRUE); +} + + +GtkWidget * +org_gnome_imap_headers (EPlugin *epl, EConfigHookItemFactoryData *data) +{ + EMConfigTargetAccount *target_account; + EAccount *account; + GtkWidget *vbox; + CamelURL *url = NULL; + CamelException ex; + char *gladefile; + GladeXML *gladexml; + GtkCellRenderer *renderer; + GtkTreeViewColumn *column; + + target_account = (EMConfigTargetAccount *)data->config->target; + account = target_account->account; + + if(!g_str_has_prefix (account->source->url, "imap://")) + return NULL; + + gladefile = g_build_filename (EVOLUTION_GLADEDIR, "imap-headers.glade", NULL); + gladexml = glade_xml_new (gladefile, "vbox2", NULL); + g_free (gladefile); + + vbox = glade_xml_get_widget (gladexml, "vbox2"); + all_headers = glade_xml_get_widget (gladexml, "allHeaders"); + basic_headers = glade_xml_get_widget (gladexml, "basicHeaders"); + mailing_list_headers = glade_xml_get_widget (gladexml, "mailingListHeaders"); + custom_headers_box = glade_xml_get_widget (gladexml, "custHeaderHbox"); + custom_headers_tree = GTK_TREE_VIEW(glade_xml_get_widget (gladexml, "custHeaderTree")); + add_header = GTK_BUTTON(glade_xml_get_widget (gladexml, "addHeader")); + remove_header = GTK_BUTTON(glade_xml_get_widget (gladexml, "removeHeader")); + + url = camel_url_new (e_account_get_string(account, E_ACCOUNT_SOURCE_URL), &ex); + if (url) { + char *custom_headers; + store = gtk_tree_store_new (1, G_TYPE_STRING); + custom_headers = g_strdup(camel_url_get_param (url, "imap_custom_headers")); + + if (custom_headers) { + int i=0; + + custom_headers_array = g_strsplit (custom_headers, " ", -1); + while (custom_headers_array[i] ) { + if (strlen(g_strstrip(custom_headers_array[i]))) { + gtk_tree_store_append (store, &iter, NULL); + gtk_tree_store_set (store, &iter, 0, custom_headers_array[i], -1); + } + i++; + } + g_strfreev (custom_headers_array); + gtk_tree_view_set_model (custom_headers_tree, GTK_TREE_MODEL(store)); + } + g_free (custom_headers); + + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(mailing_list_headers), TRUE); + if (camel_url_get_param (url, "all_headers")) { + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(all_headers), TRUE); + gtk_widget_set_sensitive (custom_headers_box, FALSE); + } else if (camel_url_get_param (url, "basic_headers")) + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(basic_headers), TRUE); + camel_url_free (url); + } + renderer = gtk_cell_renderer_text_new (); + column = gtk_tree_view_column_new_with_attributes (_("Custom Headers"), renderer, "text", 0, NULL); + gtk_tree_view_append_column (custom_headers_tree , column); + + g_signal_connect (all_headers, "toggled", G_CALLBACK(fetch_all_headers_toggled), NULL); + g_signal_connect (add_header, "clicked", G_CALLBACK(add_header_clicked), NULL); + g_signal_connect (remove_header, "clicked", G_CALLBACK(remove_header_clicked), NULL); + + gtk_notebook_append_page ((GtkNotebook *)(data->parent), vbox, gtk_label_new("IMAP Headers")); + gtk_widget_show_all (vbox); + return NULL; +} diff --git a/plugins/imap-features/imap-headers.glade b/plugins/imap-features/imap-headers.glade new file mode 100644 index 0000000000..38c57cc495 --- /dev/null +++ b/plugins/imap-features/imap-headers.glade @@ -0,0 +1,296 @@ + + + + + + + True + window1 + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + True + False + False + GDK_WINDOW_TYPE_HINT_NORMAL + GDK_GRAVITY_NORTH_WEST + True + False + + + + True + 0.5 + 0.5 + 1 + 1 + 0 + 0 + 2 + 0 + + + + True + False + 8 + + + + True + <b>IMAP Headers </b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + Select your IMAP Header Preferences. +The more headers you have the more time it will take to download. + False + False + GTK_JUSTIFY_LEFT + False + False + 0.070000000298 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + Fetch A_ll Headers + True + GTK_RELIEF_NORMAL + True + False + False + True + + + 0 + False + False + + + + + + True + True + _Basic Headers - (Fastest) +Use this if you do not have filters based on mailing lists + True + GTK_RELIEF_NORMAL + True + False + False + True + allHeaders + + + 0 + False + False + + + + + + True + True + Basic and _Mailing List Headers (Default) + True + GTK_RELIEF_NORMAL + True + False + False + True + allHeaders + + + 0 + False + False + + + + + + True + <b>Custom Headers</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + Give the extra headers that you need to fetch in addition to the above standard headers. +You can ignore this if you choose "All Headers". + False + False + GTK_JUSTIFY_LEFT + True + True + 0.0799999982119 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 5 + + + + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + False + True + False + False + False + + + + + 0 + True + True + + + + + + True + False + 0 + + + + True + True + gtk-add + True + GTK_RELIEF_NORMAL + True + + + 4 + False + False + + + + + + True + True + gtk-remove + True + GTK_RELIEF_NORMAL + True + + + 0 + False + False + + + + + 0 + False + True + + + + + 0 + True + True + + + + + + + + + diff --git a/plugins/imap-features/org-gnome-imap-features.eplug.xml b/plugins/imap-features/org-gnome-imap-features.eplug.xml new file mode 100644 index 0000000000..a5d24f7590 --- /dev/null +++ b/plugins/imap-features/org-gnome-imap-features.eplug.xml @@ -0,0 +1,18 @@ + + + + + + <_description>A plugin for the features in the IMAP accounts. + + + + + + + + + + -- cgit v1.2.3