add Reply-To to template config
[claws.git] / src / prefs_template.c
index 61c483dcc5e35ca62e7231fbba4a4e51a44b5ce1..bafd768af7e6b0688628071c841f303e3df25767 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Claws Mail templates subsystem 
  * Copyright (C) 2001 Alexander Barinov
- * Copyright (C) 2001-2007 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 2001-2013 Hiroyuki Yamamoto and the Claws Mail team
  *
  * 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
@@ -43,6 +43,7 @@
 #include "manual.h"
 #include "gtkutils.h"
 #include "menu.h"
+#include "account.h"
 
 enum {
        TEMPL_TEXT,
@@ -61,11 +62,33 @@ static struct Templates {
        GtkWidget *entry_to;
        GtkWidget *entry_cc;    
        GtkWidget *entry_bcc;
+       GtkWidget *entry_replyto;
        GtkWidget *text_value;
 } templates;
 
 static int modified = FALSE;
 static int modified_list = FALSE;
+
+static struct
+{
+       gchar *label;
+       GtkWidget **entry;
+       gboolean compl;
+       gchar *tooltips;
+} widgets_table[] = {
+       {N_("Name"),    &templates.entry_name,          FALSE,
+               N_("This name is used as the Menu item")},
+       {"From",        &templates.entry_from,          TRUE,
+               N_("Override composing account's From header. This doesn't change the composing account.")},
+       {"To",          &templates.entry_to,            TRUE,   NULL},
+       {"Cc",          &templates.entry_cc,            TRUE,   NULL},
+       {"Bcc",         &templates.entry_bcc,           TRUE,   NULL},
+       {"Reply-To",    &templates.entry_replyto,       TRUE,   NULL},
+       {"Subject",     &templates.entry_subject,       FALSE,  NULL},
+       {NULL,          NULL,                           FALSE,  NULL}
+};
+
+
 /* widget creating functions */
 static void prefs_template_window_create       (void);
 static void prefs_template_window_setup                (void);
@@ -79,18 +102,22 @@ static gint prefs_template_deleted_cb              (GtkWidget      *widget,
 static gboolean prefs_template_key_pressed_cb  (GtkWidget      *widget,
                                                 GdkEventKey    *event,
                                                 gpointer        data);
-static void prefs_template_cancel_cb           (void);
-static void prefs_template_ok_cb               (void);
-static void prefs_template_register_cb         (void);
-static void prefs_template_substitute_cb       (void);
-static void prefs_template_delete_cb           (void);
-static void prefs_template_delete_all_cb       (void);
-static void prefs_template_clear_cb            (void);
-static void prefs_template_duplicate_cb        (void);
-static void prefs_template_top_cb              (void);
-static void prefs_template_up_cb               (void);
-static void prefs_template_down_cb     (void);
-static void prefs_template_bottom_cb   (void);
+static gboolean prefs_template_search_func_cb (GtkTreeModel *model, gint column, 
+                                               const gchar *key, GtkTreeIter *iter, 
+                                               gpointer search_data);
+
+static void prefs_template_cancel_cb           (gpointer action, gpointer data);
+static void prefs_template_ok_cb               (gpointer action, gpointer data);
+static void prefs_template_register_cb         (gpointer action, gpointer data);
+static void prefs_template_substitute_cb       (gpointer action, gpointer data);
+static void prefs_template_delete_cb           (gpointer action, gpointer data);
+static void prefs_template_delete_all_cb       (gpointer action, gpointer data);
+static void prefs_template_clear_cb            (gpointer action, gpointer data);
+static void prefs_template_duplicate_cb                (gpointer action, gpointer data);
+static void prefs_template_top_cb              (gpointer action, gpointer data);
+static void prefs_template_up_cb               (gpointer action, gpointer data);
+static void prefs_template_down_cb             (gpointer action, gpointer data);
+static void prefs_template_bottom_cb           (gpointer action, gpointer data);
 
 static GtkListStore* prefs_template_create_data_store  (void);
 static void prefs_template_list_view_insert_template   (GtkWidget *list_view,
@@ -106,11 +133,11 @@ void prefs_template_open(void)
 {
        inc_lock();
 
-       if (!templates.window)
-               prefs_template_window_create();
+       prefs_template_window_create();
 
        prefs_template_window_setup();
        gtk_widget_show(templates.window);
+       gtk_window_set_modal(GTK_WINDOW(templates.window), TRUE);
 }
 
 /*!
@@ -119,7 +146,7 @@ void prefs_template_open(void)
 static void prefs_template_size_allocate_cb(GtkWidget *widget,
                                         GtkAllocation *allocation)
 {
-       g_return_if_fail(allocation != NULL);
+       cm_return_if_fail(allocation != NULL);
 
        prefs_common.templateswin_width = allocation->width;
        prefs_common.templateswin_height = allocation->height;
@@ -133,7 +160,7 @@ static void prefs_template_window_create(void)
        GtkWidget *scrolled_window;
        GtkWidget   *vpaned;
        GtkWidget     *vbox1;
-       GtkWidget       *table; /* including : entry_[name|from|to|cc|bcc|subject] */
+       GtkWidget       *table; /* including : entry_[name|from|to|cc|bcc|replyto|subject] */
        GtkWidget       *scroll2;
        GtkWidget         *text_value;
        GtkWidget     *vbox2;
@@ -160,14 +187,12 @@ static void prefs_template_window_create(void)
        GtkWidget         *ok_btn;
        static GdkGeometry geometry;
        gint i;
-       GtkTooltips *tooltips;
 
        debug_print("Creating templates configuration window...\n");
 
        /* main window */
        window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "prefs_template");
        gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
-       gtk_window_set_modal(GTK_WINDOW(window), TRUE);
        gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
 
        vbox = gtk_vbox_new(FALSE, 8);
@@ -186,6 +211,8 @@ static void prefs_template_window_create(void)
        gtk_widget_show(vpaned);
        gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window),
                                              vpaned);
+       gtk_viewport_set_shadow_type (GTK_VIEWPORT(
+                       gtk_bin_get_child(GTK_BIN(scrolled_window))), GTK_SHADOW_NONE);
 
        /* vbox to handle template name and content */
        vbox1 = gtk_vbox_new(FALSE, 6);
@@ -199,47 +226,27 @@ static void prefs_template_window_create(void)
        gtk_widget_show(table);
        gtk_box_pack_start (GTK_BOX (vbox1), table, FALSE, FALSE, 0);
 
-       tooltips = gtk_tooltips_new();
-
-       struct
-       {
-               gchar *label;
-               GtkWidget **entry;
-               gboolean compl;
-               gchar *tooltips;
-       } tab[] = {
-               {_("Name"),     &templates.entry_name,          FALSE,
-                       _("This name is used as the Menu item")},
-               {_("From"),     &templates.entry_from,          TRUE,
-                       _("Override composing account's From header. This doesn't change the composing account.")},
-               {_("To"),       &templates.entry_to,            TRUE,   NULL},
-               {_("Cc"),       &templates.entry_cc,            TRUE,   NULL},
-               {_("Bcc"),      &templates.entry_bcc,           TRUE,   NULL},
-               {_("Subject"),  &templates.entry_subject,       FALSE,  NULL},
-               {NULL,          NULL,                           FALSE,  NULL}
-       };
-
-       for (i=0; tab[i].label; i++) {
+
+       for (i=0; widgets_table[i].label; i++) {
 
                GtkWidget *label;
 
-               label = gtk_label_new(tab[i].label);
+               label = gtk_label_new( (i != 0) ?
+                       prefs_common_translated_header_name(widgets_table[i].label) :
+                       widgets_table[i].label);
                gtk_widget_show(label);
                gtk_table_attach(GTK_TABLE(table), label, 0, 1, i, (i + 1),
                                (GtkAttachOptions) (GTK_FILL),
                                (GtkAttachOptions) 0, 0, 0);
                gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
 
-               *(tab[i].entry) = gtk_entry_new();
-               gtk_widget_show(*(tab[i].entry));
-               gtk_table_attach(GTK_TABLE(table), *(tab[i].entry), 1, 2, i, (i + 1),
+               *(widgets_table[i].entry) = gtk_entry_new();
+               gtk_widget_show(*(widgets_table[i].entry));
+               gtk_table_attach(GTK_TABLE(table), *(widgets_table[i].entry), 1, 2, i, (i + 1),
                                (GtkAttachOptions) (GTK_EXPAND|GTK_SHRINK|GTK_FILL),
                                (GtkAttachOptions) 0, 0, 0);
-               gtk_tooltips_set_tip(tooltips, *(tab[i].entry), tab[i].tooltips, NULL);
-
-               if (tab[i].compl)
-                       address_completion_register_entry(
-                               GTK_ENTRY(*(tab[i].entry)), TRUE);
+               CLAWS_SET_TIP(*(widgets_table[i].entry),
+                               widgets_table[i].tooltips);
        }
 
        /* template content */
@@ -264,7 +271,7 @@ static void prefs_template_window_create(void)
                }
        }
        gtk_widget_show(text_value);
-#ifndef MAEMO
+#ifndef GENERIC_UMPC
        gtk_widget_set_size_request(text_value, -1, 120);
 #else
        gtk_widget_set_size_request(text_value, -1, 60);
@@ -298,45 +305,45 @@ static void prefs_template_window_create(void)
        gtk_box_pack_start(GTK_BOX(hbox3), reg_btn, FALSE, TRUE, 0);
        g_signal_connect(G_OBJECT (reg_btn), "clicked",
                         G_CALLBACK (prefs_template_register_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), reg_btn,
-                       _("Append the new template above to the list"), NULL);
+       CLAWS_SET_TIP(reg_btn,
+                       _("Append the new template above to the list"));
 
-       subst_btn = gtkut_get_replace_btn(_("Replace"));
+       subst_btn = gtkut_get_replace_btn(_("_Replace"));
        gtk_widget_show(subst_btn);
        gtk_box_pack_start(GTK_BOX(hbox3), subst_btn, FALSE, TRUE, 0);
        g_signal_connect(G_OBJECT(subst_btn), "clicked",
                         G_CALLBACK(prefs_template_substitute_cb),
                         NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), subst_btn,
-                       _("Replace the selected template in list with the template above"), NULL);
+       CLAWS_SET_TIP(subst_btn,
+                       _("Replace the selected template in list with the template above"));
 
-       del_btn = gtk_button_new_from_stock(GTK_STOCK_DELETE);
+       del_btn = gtk_button_new_with_mnemonic (_("Re_move"));
+       gtk_button_set_image(GTK_BUTTON(del_btn),
+                       gtk_image_new_from_stock(GTK_STOCK_REMOVE,GTK_ICON_SIZE_BUTTON));
        gtk_widget_show(del_btn);
        gtk_box_pack_start(GTK_BOX(hbox3), del_btn, FALSE, TRUE, 0);
        g_signal_connect(G_OBJECT(del_btn), "clicked",
                         G_CALLBACK(prefs_template_delete_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), del_btn,
-                       _("Delete the selected template from the list"), NULL);
+       CLAWS_SET_TIP(del_btn,
+                       _("Delete the selected template from the list"));
 
-       clear_btn = gtk_button_new_from_stock (GTK_STOCK_CLEAR);
+       clear_btn = gtk_button_new_with_mnemonic (_("C_lear"));
+       gtk_button_set_image(GTK_BUTTON(clear_btn),
+                       gtk_image_new_from_stock(GTK_STOCK_CLEAR,GTK_ICON_SIZE_BUTTON));
        gtk_widget_show (clear_btn);
        gtk_box_pack_start (GTK_BOX (hbox3), clear_btn, FALSE, TRUE, 0);
        g_signal_connect(G_OBJECT (clear_btn), "clicked",
                        G_CALLBACK(prefs_template_clear_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), clear_btn,
-                       _("Clear all the input fields in the dialog"), NULL);
+       CLAWS_SET_TIP(clear_btn,
+                       _("Clear all the input fields in the dialog"));
 
-#if GTK_CHECK_VERSION(2, 8, 0)
        desc_btn = gtk_button_new_from_stock(GTK_STOCK_INFO);
-#else
-       desc_btn = gtk_button_new_with_label(_(" Symbols... "));
-#endif
        gtk_widget_show(desc_btn);
        gtk_box_pack_end(GTK_BOX(hbox2), desc_btn, FALSE, FALSE, 0);
        g_signal_connect(G_OBJECT(desc_btn), "clicked",
                         G_CALLBACK(quote_fmt_quote_description), window);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), desc_btn,
-                       _("Show information on configuring templates"), NULL);
+       CLAWS_SET_TIP(desc_btn,
+                       _("Show information on configuring templates"));
 
        /* templates list */
        hbox4 = gtk_hbox_new(FALSE, 8);
@@ -359,8 +366,8 @@ static void prefs_template_window_create(void)
        gtk_box_pack_start(GTK_BOX(vbox3), top_btn, FALSE, FALSE, 0);
        g_signal_connect(G_OBJECT(top_btn), "clicked",
                         G_CALLBACK(prefs_template_top_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), top_btn,
-                       _("Move the selected template to the top"), NULL);
+       CLAWS_SET_TIP(top_btn,
+                       _("Move the selected template to the top"));
 
        PACK_VSPACER(vbox3, spc_vbox, VSPACING_NARROW_2);
 
@@ -369,16 +376,16 @@ static void prefs_template_window_create(void)
        gtk_box_pack_start (GTK_BOX(vbox3), up_btn, FALSE, FALSE, 0);
        g_signal_connect(G_OBJECT(up_btn), "clicked",
                         G_CALLBACK(prefs_template_up_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), up_btn,
-                       _("Move the selected template up"), NULL);
+       CLAWS_SET_TIP(up_btn,
+                       _("Move the selected template up"));
 
        down_btn = gtk_button_new_from_stock(GTK_STOCK_GO_DOWN);
        gtk_widget_show (down_btn);
        gtk_box_pack_start(GTK_BOX (vbox3), down_btn, FALSE, FALSE, 0);
        g_signal_connect(G_OBJECT (down_btn), "clicked",
                         G_CALLBACK(prefs_template_down_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), down_btn,
-                       _("Move the selected template down"), NULL);
+       CLAWS_SET_TIP(down_btn,
+                       _("Move the selected template down"));
 
        PACK_VSPACER(vbox3, spc_vbox, VSPACING_NARROW_2);
 
@@ -387,8 +394,8 @@ static void prefs_template_window_create(void)
        gtk_box_pack_start(GTK_BOX(vbox3), bottom_btn, FALSE, FALSE, 0);
        g_signal_connect(G_OBJECT(bottom_btn), "clicked",
                         G_CALLBACK(prefs_template_bottom_cb), NULL);
-       gtk_tooltips_set_tip(GTK_TOOLTIPS(tooltips), bottom_btn,
-                       _("Move the selected template to the bottom"), NULL);
+       CLAWS_SET_TIP(bottom_btn,
+                       _("Move the selected template to the bottom"));
 
        list_view = prefs_template_list_view_create();
        gtk_widget_show(list_view);
@@ -421,8 +428,6 @@ static void prefs_template_window_create(void)
                         G_CALLBACK(manual_open_with_anchor_cb),
                         MANUAL_ANCHOR_TEMPLATES);
 
-       address_completion_start(window);
-
        if (!geometry.min_height) {
                geometry.min_width = 500;
                geometry.min_height = 540;
@@ -448,6 +453,7 @@ static void prefs_template_reset_dialog(void)
        gtk_entry_set_text(GTK_ENTRY(templates.entry_to), "");
        gtk_entry_set_text(GTK_ENTRY(templates.entry_cc), "");
        gtk_entry_set_text(GTK_ENTRY(templates.entry_bcc), "");                 
+       gtk_entry_set_text(GTK_ENTRY(templates.entry_replyto), "");                     
        gtk_entry_set_text(GTK_ENTRY(templates.entry_subject), "");
        
        buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(templates.text_value));
@@ -472,6 +478,7 @@ static void prefs_template_window_setup(void)
        GSList *tmpl_list;
        GSList *cur;
        Template *tmpl;
+       int i;
 
        manage_window_set_transient(GTK_WINDOW(templates.window));
        gtk_widget_grab_focus(templates.ok_btn);
@@ -480,6 +487,14 @@ static void prefs_template_window_setup(void)
        
        tmpl_list = template_read_config();
 
+       address_completion_start(templates.window);
+
+       for (i=0; widgets_table[i].label; i++) {
+               if (widgets_table[i].compl)
+                       address_completion_register_entry(
+                               GTK_ENTRY(*(widgets_table[i].entry)), TRUE);
+       }
+
        for (cur = tmpl_list; cur != NULL; cur = cur->next) {
                tmpl = (Template *)cur->data;
                prefs_template_list_view_insert_template(templates.list_view,
@@ -495,15 +510,15 @@ static void prefs_template_window_setup(void)
 static gint prefs_template_deleted_cb(GtkWidget *widget, GdkEventAny *event,
                                      gpointer data)
 {
-       prefs_template_cancel_cb();
+       prefs_template_cancel_cb(NULL, NULL);
        return TRUE;
 }
 
 static gboolean prefs_template_key_pressed_cb(GtkWidget *widget,
                                              GdkEventKey *event, gpointer data)
 {
-       if (event && event->keyval == GDK_Escape)
-               prefs_template_cancel_cb();
+       if (event && event->keyval == GDK_KEY_Escape)
+               prefs_template_cancel_cb(NULL, NULL);
        else {
                GtkWidget *focused = gtkut_get_focused_child(
                                        GTK_CONTAINER(widget));
@@ -514,7 +529,42 @@ static gboolean prefs_template_key_pressed_cb(GtkWidget *widget,
        return FALSE;
 }
 
-static void prefs_template_ok_cb(void)
+static gboolean prefs_template_search_func_cb (GtkTreeModel *model, gint column, const gchar *key, 
+                                               GtkTreeIter *iter, gpointer search_data) 
+{
+       gchar *store_string;
+       gint key_len;
+       gboolean retval;
+       GtkTreePath *path;
+
+       gtk_tree_model_get (model, iter, column, &store_string, -1);
+
+       if (!store_string || !key) return FALSE;
+
+       key_len = strlen (key);
+       retval = (strncmp (key, store_string, key_len) != 0);
+
+       g_free(store_string);
+       debug_print("selecting row\n");
+       path = gtk_tree_model_get_path(model, iter);
+       prefs_template_select_row(GTK_TREE_VIEW(templates.list_view), path);
+       gtk_tree_path_free(path);
+
+       return retval;
+}
+static void prefs_template_address_completion_end(void)
+{
+       gint i;
+
+       for (i=0; widgets_table[i].label; i++) {
+               if (widgets_table[i].compl)
+                       address_completion_unregister_entry(
+                               GTK_ENTRY(*(widgets_table[i].entry)));
+       }
+       address_completion_end(templates.window);
+}
+
+static void prefs_template_ok_cb(gpointer action, gpointer data)
 {
        GSList *tmpl_list;
        GtkListStore *store;
@@ -525,6 +575,9 @@ static void prefs_template_ok_cb(void)
                                 NULL) != G_ALERTDEFAULT) {
                return;
        } 
+
+       prefs_template_address_completion_end();
+
        modified = FALSE;
        modified_list = FALSE;
        tmpl_list = prefs_template_get_list();
@@ -533,11 +586,11 @@ static void prefs_template_ok_cb(void)
        store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW
                                (templates.list_view)));
        gtk_list_store_clear(store);
-       gtk_widget_hide(templates.window);
+       gtk_widget_destroy(templates.window);
        inc_unlock();
 }
 
-static void prefs_template_cancel_cb(void)
+static void prefs_template_cancel_cb(gpointer action, gpointer data)
 {
        GtkListStore *store;
 
@@ -552,12 +605,15 @@ static void prefs_template_cancel_cb(void)
                                 NULL) != G_ALERTDEFAULT) {
                return;
        }
+
+       prefs_template_address_completion_end();
+
        modified = FALSE;
        modified_list = FALSE;
        store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW
                                (templates.list_view)));
        gtk_list_store_clear(store);
-       gtk_widget_hide(templates.window);
+       gtk_widget_destroy(templates.window);
        inc_unlock();
 }
 
@@ -604,6 +660,9 @@ static GSList *prefs_template_get_list(void)
                        ntmpl->bcc     = tmpl->bcc && *(tmpl->bcc)
                                         ? g_strdup(tmpl->bcc)
                                         : NULL;        
+                       ntmpl->replyto = tmpl->replyto && *(tmpl->replyto)
+                                        ? g_strdup(tmpl->replyto)
+                                        : NULL;        
                        ntmpl->value   = tmpl->value && *(tmpl->value)
                                         ? g_strdup(tmpl->value)
                                         : NULL;
@@ -619,18 +678,38 @@ gboolean prefs_template_string_is_valid(gchar *string, gint *line, gboolean esca
 {
        gboolean result = TRUE;
        if (string && *string != '\0') {
+               gchar *tmp = NULL;
                gchar *parsed_buf;
                MsgInfo dummyinfo;
                PrefsAccount *account = account_get_default();
 
+               if (escaped_string) {
+                       tmp = malloc(strlen(string)+1);
+                       pref_get_unescaped_pref(tmp, string);
+               } else {
+                       tmp = g_strdup(string);
+               }
                memset(&dummyinfo, 0, sizeof(MsgInfo));
-#ifdef USE_ASPELL
-               quote_fmt_init(&dummyinfo, NULL, NULL, TRUE, account, escaped_string, NULL);
+               /* init dummy fields, so we can test the result of the parse */
+               dummyinfo.date="Sat, 30 May 2009 01:23:45 +0200";
+               dummyinfo.fromname="John Doe";
+               dummyinfo.from="John Doe <john@example.com>";
+               dummyinfo.to="John Doe <john@example.com>";
+               dummyinfo.cc="John Doe <john@example.com>";
+               dummyinfo.msgid="<1234john@example.com>";
+               dummyinfo.inreplyto="<1234john@example.com>";
+               dummyinfo.newsgroups="alt.test";
+               dummyinfo.subject="subject";
+               
+               
+#ifdef USE_ENCHANT
+               quote_fmt_init(&dummyinfo, NULL, NULL, TRUE, account, FALSE, NULL);
 #else
-               quote_fmt_init(&dummyinfo, NULL, NULL, TRUE, account, escaped_string);
+               quote_fmt_init(&dummyinfo, NULL, NULL, TRUE, account, FALSE);
 #endif
-               quote_fmt_scan_string(string);
+               quote_fmt_scan_string(tmp);
                quote_fmt_parse();
+               g_free(tmp);
                parsed_buf = quote_fmt_get_buffer();
                if (!parsed_buf) {
                        if (line)
@@ -661,15 +740,13 @@ static gboolean prefs_template_list_view_set_row(gint row)
        gchar *from;
        gchar *to;
        gchar *cc;
-       gchar *bcc;     
+       gchar *bcc;
+       gchar *replyto;
        gchar *value;
        GtkTextBuffer *buffer;
        GtkTextIter start, end;
-       GtkTreeModel *model;
        gint line;
 
-       model = gtk_tree_view_get_model(GTK_TREE_VIEW(templates.list_view));
-
        buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(templates.text_value));
        gtk_text_buffer_get_start_iter(buffer, &start);
        gtk_text_buffer_get_iter_at_offset(buffer, &end, -1);
@@ -679,8 +756,8 @@ static gboolean prefs_template_list_view_set_row(gint row)
                        g_free(value);
                value = NULL;
                }
-       if (!prefs_template_string_is_valid(value, &line, FALSE, FALSE)) {
-               alertpanel_error(_("Template body format error at line %d."), line);
+       if (!prefs_template_string_is_valid(value, &line, TRUE, FALSE)) {
+               alertpanel_error(_("The body of the template has an error at line %d."), line);
                g_free(value);
                return FALSE;
        }
@@ -688,7 +765,7 @@ static gboolean prefs_template_list_view_set_row(gint row)
        name = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_name),
                                      0, -1);
        if (*name == '\0') {
-               alertpanel_error(_("Template name is not set."));
+               alertpanel_error(_("The template's name is not set."));
                g_free(value);
                return FALSE;
        }
@@ -700,6 +777,8 @@ static gboolean prefs_template_list_view_set_row(gint row)
                                    0, -1);
        bcc = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_bcc),
                                    0, -1);
+       replyto = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_replyto),
+                                   0, -1);
        subject = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_subject),
                                         0, -1);
 
@@ -719,37 +798,47 @@ static gboolean prefs_template_list_view_set_row(gint row)
                g_free(bcc);
                bcc = NULL;
        }
+       if (replyto && *replyto == '\0') {
+               g_free(replyto);
+               replyto = NULL;
+       }
        if (subject && *subject == '\0') {
                g_free(subject);
                subject = NULL;
        }
 
-       if (!prefs_template_string_is_valid(from, NULL, FALSE, TRUE)) {
-               alertpanel_error(_("Template From format error."));
+       if (!prefs_template_string_is_valid(from, NULL, TRUE, TRUE)) {
+               alertpanel_error(_("The \"From\" field of the template contains an invalid email address."));
                g_free(from);
                g_free(value);
                return FALSE;
        }
-       if (!prefs_template_string_is_valid(to, NULL, FALSE, TRUE)) {
-               alertpanel_error(_("Template To format error."));
+       if (!prefs_template_string_is_valid(to, NULL, TRUE, TRUE)) {
+               alertpanel_error(_("The \"To\" field of the template contains an invalid email address."));
                g_free(to);
                g_free(value);
                return FALSE;
        }
-       if (!prefs_template_string_is_valid(cc, NULL, FALSE, TRUE)) {
-               alertpanel_error(_("Template Cc format error."));       
+       if (!prefs_template_string_is_valid(cc, NULL, TRUE, TRUE)) {
+               alertpanel_error(_("The \"Cc\" field of the template contains an invalid email address."));     
                g_free(cc);
                g_free(value);
                return FALSE;
        }
-       if (!prefs_template_string_is_valid(bcc, NULL, FALSE, TRUE)) {
-               alertpanel_error(_("Template Bcc format error."));      
+       if (!prefs_template_string_is_valid(bcc, NULL, TRUE, TRUE)) {
+               alertpanel_error(_("The \"Bcc\" field of the template contains an invalid email address."));    
                g_free(bcc);
                g_free(value);
                return FALSE;
        }
-       if (!prefs_template_string_is_valid(subject, NULL, FALSE, FALSE)) {
-               alertpanel_error(_("Template subject format error."));  
+       if (!prefs_template_string_is_valid(replyto, NULL, TRUE, TRUE)) {
+               alertpanel_error(_("The \"Replyt-To\" field of the template contains an invalid email address."));      
+               g_free(replyto);
+               g_free(value);
+               return FALSE;
+       }
+       if (!prefs_template_string_is_valid(subject, NULL, TRUE, FALSE)) {
+               alertpanel_error(_("The \"Subject\" field of the template is invalid."));       
                g_free(subject);
                g_free(value);
                return FALSE;
@@ -763,6 +852,7 @@ static gboolean prefs_template_list_view_set_row(gint row)
        tmpl->to = to;
        tmpl->cc = cc;
        tmpl->bcc = bcc;        
+       tmpl->replyto = replyto;        
        tmpl->value = value;
 
        prefs_template_list_view_insert_template(templates.list_view,
@@ -771,13 +861,13 @@ static gboolean prefs_template_list_view_set_row(gint row)
        return TRUE;
 }
 
-static void prefs_template_register_cb(void)
+static void prefs_template_register_cb(gpointer action, gpointer data)
 {
        modified = !prefs_template_list_view_set_row(-1);
        modified_list = TRUE;
 }
 
-static void prefs_template_substitute_cb(void)
+static void prefs_template_substitute_cb(gpointer action, gpointer data)
 {
        Template *tmpl;
        gint row;
@@ -800,7 +890,7 @@ static void prefs_template_substitute_cb(void)
        modified_list = TRUE;
 }
 
-static void prefs_template_delete_cb(void)
+static void prefs_template_delete_cb(gpointer action, gpointer data)
 {
        Template *tmpl;
        gint row;
@@ -826,19 +916,17 @@ static void prefs_template_delete_cb(void)
                return;
 
        gtk_list_store_remove(GTK_LIST_STORE(model), &iter);
+       prefs_template_reset_dialog();
        modified_list = TRUE;   
 }
 
-static void prefs_template_delete_all_cb(void)
+static void prefs_template_delete_all_cb(gpointer action, gpointer data)
 {
-       GtkListStore *list_store;
-
        if (alertpanel(_("Delete all templates"),
                          _("Do you really want to delete all the templates?"),
                          GTK_STOCK_CANCEL, "+"GTK_STOCK_DELETE, NULL) == G_ALERTDEFAULT)
           return;
 
-       list_store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(templates.list_view)));
        prefs_template_clear_list();
        modified = FALSE;
 
@@ -846,7 +934,7 @@ static void prefs_template_delete_all_cb(void)
        modified_list = TRUE;
 }
 
-static void prefs_template_duplicate_cb(void)
+static void prefs_template_duplicate_cb(gpointer action, gpointer data)
 {
        Template *tmpl;
        gint row;
@@ -868,12 +956,12 @@ static void prefs_template_duplicate_cb(void)
        modified_list = !prefs_template_list_view_set_row(-row-2);
 }
 
-static void prefs_template_clear_cb(void)
+static void prefs_template_clear_cb(gpointer action, gpointer data)
 {
    prefs_template_reset_dialog();
 }
 
-static void prefs_template_top_cb(void)
+static void prefs_template_top_cb(gpointer action, gpointer data)
 {
        gint row;
        GtkTreeIter top, sel;
@@ -894,7 +982,7 @@ static void prefs_template_top_cb(void)
        modified_list = TRUE;
 }
 
-static void prefs_template_up_cb(void)
+static void prefs_template_up_cb(gpointer action, gpointer data)
 {
        gint row;
        GtkTreeIter top, sel;
@@ -915,7 +1003,7 @@ static void prefs_template_up_cb(void)
        modified_list = TRUE;
 }
 
-static void prefs_template_down_cb(void)
+static void prefs_template_down_cb(gpointer action, gpointer data)
 {
        gint row, n_rows;
        GtkTreeIter top, sel;
@@ -936,7 +1024,7 @@ static void prefs_template_down_cb(void)
        modified_list = TRUE;
 }
 
-static void prefs_template_bottom_cb(void)
+static void prefs_template_bottom_cb(gpointer action, gpointer data)
 {
        gint row, n_rows;
        GtkTreeIter top, sel;
@@ -1022,16 +1110,32 @@ static void prefs_template_list_view_insert_template(GtkWidget *list_view,
        }
 }
 
-static GtkItemFactory *prefs_template_popup_factory = NULL;
+static GtkActionGroup *prefs_template_popup_action = NULL;
 static GtkWidget *prefs_template_popup_menu = NULL;
 
-static GtkItemFactoryEntry prefs_template_popup_entries[] =
+static GtkActionEntry prefs_template_popup_entries[] =
 {
-   {N_("/_Delete"),            NULL, prefs_template_delete_cb, 0, NULL, NULL},
-   {N_("/Delete _all"),        NULL, prefs_template_delete_all_cb, 0, NULL, NULL},
-   {N_("/D_uplicate"), NULL, prefs_template_duplicate_cb, 0, NULL, NULL},
+       {"PrefsTemplatePopup",                  NULL, "PrefsTemplatePopup" },
+       {"PrefsTemplatePopup/Delete",           NULL, N_("_Delete"), NULL, NULL, G_CALLBACK(prefs_template_delete_cb) },
+       {"PrefsTemplatePopup/DeleteAll",        NULL, N_("Delete _all"), NULL, NULL, G_CALLBACK(prefs_template_delete_all_cb) },
+       {"PrefsTemplatePopup/Duplicate",        NULL, N_("D_uplicate"), NULL, NULL, G_CALLBACK(prefs_template_duplicate_cb) },
 };
 
+static void prefs_template_row_selected(GtkTreeSelection *selection,
+                                       GtkTreeView *list_view)
+{
+       GtkTreePath *path;
+       GtkTreeIter iter;
+       GtkTreeModel *model;
+       
+       if (!gtk_tree_selection_get_selected(selection, &model, &iter))
+               return;
+       
+       path = gtk_tree_model_get_path(model, &iter);
+       prefs_template_select_row(list_view, path);
+       gtk_tree_path_free(path);
+}
+
 static gint prefs_template_list_btn_pressed(GtkWidget *widget, GdkEventButton *event,
                                   GtkTreeView *list_view)
 {
@@ -1055,24 +1159,27 @@ static gint prefs_template_list_btn_pressed(GtkWidget *widget, GdkEventButton *e
                   gint row;
 
                   if (!prefs_template_popup_menu) {
-                          gint n_entries = sizeof(prefs_template_popup_entries) /
-                                          sizeof(prefs_template_popup_entries[0]);
-                          prefs_template_popup_menu = menu_create_items(prefs_template_popup_entries,
-                                                                n_entries, "<PrefsTemplatePopupMenu>",
-                                                                &prefs_template_popup_factory, list_view);
+                               prefs_template_popup_action = cm_menu_create_action_group("PrefsTemplatePopup", prefs_template_popup_entries,
+                                       G_N_ELEMENTS(prefs_template_popup_entries), (gpointer)list_view);
+                               MENUITEM_ADDUI("/Menus", "PrefsTemplatePopup", "PrefsTemplatePopup", GTK_UI_MANAGER_MENU)
+                               MENUITEM_ADDUI("/Menus/PrefsTemplatePopup", "Delete", "PrefsTemplatePopup/Delete", GTK_UI_MANAGER_MENUITEM)
+                               MENUITEM_ADDUI("/Menus/PrefsTemplatePopup", "DeleteAll", "PrefsTemplatePopup/DeleteAll", GTK_UI_MANAGER_MENUITEM)
+                               MENUITEM_ADDUI("/Menus/PrefsTemplatePopup", "Duplicate", "PrefsTemplatePopup/Duplicate", GTK_UI_MANAGER_MENUITEM)
+                               prefs_template_popup_menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
+                                       gtk_ui_manager_get_widget(gtkut_ui_manager(), "/Menus/PrefsTemplatePopup")) );
                   }
 
                   /* grey out some popup menu items if there is no selected row */
                   row = gtkut_list_view_get_selected_row(GTK_WIDGET(list_view));
-                  menu_set_sensitive(prefs_template_popup_factory, "/Delete", (row > 0));
-                  menu_set_sensitive(prefs_template_popup_factory, "/Duplicate", (row > 0));
+                       cm_menu_set_sensitive("PrefsTemplatePopup/Delete", (row > 0));
+                       cm_menu_set_sensitive("PrefsTemplatePopup/Duplicate", (row > 0));
 
                   /* grey out seom popup menu items if there is no row
                          (not counting the (New) one at row 0) */
                   non_empty = gtk_tree_model_get_iter_first(model, &iter);
                   if (non_empty)
                           non_empty = gtk_tree_model_iter_next(model, &iter);
-                  menu_set_sensitive(prefs_template_popup_factory, "/Delete all", non_empty);
+                       cm_menu_set_sensitive("PrefsTemplatePopup/DeleteAll", non_empty);
 
                   gtk_menu_popup(GTK_MENU(prefs_template_popup_menu), 
                                          NULL, NULL, NULL, NULL, 
@@ -1105,15 +1212,8 @@ static GtkWidget *prefs_template_list_view_create(void)
        list_view = GTK_TREE_VIEW(gtk_tree_view_new_with_model(model));
        g_object_unref(model);  
 
-#ifndef MAEMO
        g_signal_connect(G_OBJECT(list_view), "popup-menu",
                         G_CALLBACK(prefs_template_list_popup_menu), list_view);
-#else
-       gtk_widget_tap_and_hold_setup(GTK_WIDGET(list_view), NULL, NULL,
-                       GTK_TAP_AND_HOLD_NONE | GTK_TAP_AND_HOLD_NO_INTERNALS);
-       g_signal_connect(G_OBJECT(list_view), "tap-and-hold",
-                        G_CALLBACK(prefs_template_list_popup_menu), list_view);
-#endif
        g_signal_connect(G_OBJECT(list_view), "button-press-event",
                        G_CALLBACK(prefs_template_list_btn_pressed), list_view);
        
@@ -1122,6 +1222,8 @@ static GtkWidget *prefs_template_list_view_create(void)
 
        selector = gtk_tree_view_get_selection(list_view);
        gtk_tree_selection_set_mode(selector, GTK_SELECTION_BROWSE);
+       g_signal_connect(G_OBJECT(selector), "changed",
+                        G_CALLBACK(prefs_template_row_selected), list_view);
 
        /* create the columns */
        prefs_template_create_list_view_columns(GTK_WIDGET(list_view));
@@ -1141,6 +1243,7 @@ static void prefs_template_create_list_view_columns(GtkWidget *list_view)
                         "text", TEMPL_TEXT,
                         NULL);
        gtk_tree_view_append_column(GTK_TREE_VIEW(list_view), column);          
+       gtk_tree_view_set_search_equal_func(GTK_TREE_VIEW(list_view), prefs_template_search_func_cb , NULL, NULL);
 }
 
  /*!
@@ -1169,6 +1272,7 @@ static void prefs_template_select_row(GtkTreeView *list_view, GtkTreePath *path)
        tmpl_def.to = "";
        tmpl_def.cc = "";
        tmpl_def.bcc = "";      
+       tmpl_def.replyto = "";  
        tmpl_def.value = "";
 
        gtk_tree_model_get(model, &titer, TEMPL_DATA, &tmpl, -1);
@@ -1184,6 +1288,8 @@ static void prefs_template_select_row(GtkTreeView *list_view, GtkTreePath *path)
                           tmpl->cc ? tmpl->cc : "");
        gtk_entry_set_text(GTK_ENTRY(templates.entry_bcc),
                           tmpl->bcc ? tmpl->bcc : "");                 
+       gtk_entry_set_text(GTK_ENTRY(templates.entry_replyto),
+                          tmpl->replyto ? tmpl->replyto : "");                 
        gtk_entry_set_text(GTK_ENTRY(templates.entry_subject),
                           tmpl->subject ? tmpl->subject : "");