add global setting stuff for spelling checker; 'nother 20% done
[claws.git] / src / prefs_common.c
index ec15af26c3802af43adbca9d4fbb8ee9f7a0d93f..a0f434a9ff4c72a37f74a9a1af528e770ce8dde6 100644 (file)
@@ -49,6 +49,9 @@
 #include "gtkutils.h"
 #include "alertpanel.h"
 #include "folder.h"
+#include "gtkspell.h"
+#include "filesel.h"
+#include "folderview.h"
 
 PrefsCommon prefs_common;
 
@@ -68,6 +71,7 @@ static struct Receive {
        GtkObject *spinbtn_autochk_adj;
 
        GtkWidget *checkbtn_chkonstartup;
+       GtkWidget *checkbtn_noerrorpanel;
 
        GtkWidget *spinbtn_maxarticle;
        GtkObject *spinbtn_maxarticle_adj;
@@ -82,6 +86,8 @@ static struct Send {
        GtkWidget *checkbtn_queuemsg;
 
        GtkWidget *optmenu_charset;
+       
+       GtkWidget *checkbtn_returnreceipt;
 } send;
 
 static struct Compose {
@@ -91,16 +97,33 @@ static struct Compose {
        GtkWidget *checkbtn_autosig;
        GtkWidget *entry_sigsep;
 
+       GtkWidget *checkbtn_reply_account_autosel;
+       GtkWidget *entry_fw_quotemark;
+       GtkWidget *text_fw_quotefmt;
+
        GtkWidget *spinbtn_linewrap;
        GtkObject *spinbtn_linewrap_adj;
        GtkWidget *checkbtn_wrapquote;
        GtkWidget *checkbtn_wrapatsend;
+
+       GtkWidget * checkbtn_forward_as_attachment;
+       GtkWidget * checkbtn_smart_wrapping;
+
+       /* spelling */
+       GtkWidget *checkbtn_enable_ispell;
+       GtkWidget *entry_ispell_path;
+       GtkWidget *btn_ispell_path;
+       GtkWidget *optmenu_dictionary_path;
 } compose;
 
 static struct Display {
        GtkWidget *entry_textfont;
        GtkWidget *button_textfont;
 
+       GtkWidget *entry_smallfont;
+       GtkWidget *entry_normalfont;
+       GtkWidget *entry_boldfont;
+
        GtkWidget *chkbtn_folder_unread;
 
        GtkWidget *chkbtn_transhdr;
@@ -108,6 +131,8 @@ static struct Display {
        GtkWidget *chkbtn_swapfrom;
        GtkWidget *chkbtn_hscrollbar;
        GtkWidget *chkbtn_useaddrbook;
+
+       GtkWidget *entry_datefmt;
 } display;
 
 static struct Message {
@@ -128,12 +153,12 @@ static struct Message {
 
 #if USE_GPGME
 static struct Privacy {
-       GtkWidget *checkbtn_gpgme_warning;
        GtkWidget *checkbtn_default_encrypt;
        GtkWidget *checkbtn_default_sign;
        GtkWidget *checkbtn_auto_check_signatures;
+       GtkWidget *checkbtn_gpg_signature_popup;
        GtkWidget *checkbtn_passphrase_grab;
-       GtkWidget *checkbtn_signature_popup;
+       GtkWidget *checkbtn_gpg_warning;
        GtkWidget *optmenu_default_signkey;
 } privacy;
 #endif
@@ -147,9 +172,8 @@ static struct Interface {
        GtkWidget *checkbtn_cleanonexit;
        GtkWidget *checkbtn_askonclean;
        GtkWidget *checkbtn_warnqueued;
-       GtkWidget *checkbtn_returnreceipt;
        GtkWidget *checkbtn_addaddrbyclick;
-       GtkWidget *checkbtn_retrievedialog;
+       GtkWidget *recvdialog_optmenu;
 } interface;
 
 static struct Other {
@@ -165,14 +189,14 @@ static struct MessageColorButtons {
        GtkWidget *quote_level2_btn;
        GtkWidget *quote_level3_btn;
        GtkWidget *uri_btn;
+       GtkWidget *tgt_folder_btn;
 } color_buttons;
 
 static GtkWidget *quote_desc_win;
 static GtkWidget *font_sel_win;
+static guint font_sel_conn_id; 
 static GtkWidget *quote_color_win;
 static GtkWidget *color_dialog;
-static GtkWidget *entry_datefmt;
-static GtkWidget *datefmt_sample;
 
 static void prefs_common_charset_set_data_from_optmenu(PrefParam *pparam);
 static void prefs_common_charset_set_optmenu         (PrefParam *pparam);
@@ -181,6 +205,12 @@ static void prefs_common_default_signkey_set_data_from_optmenu
                                                        (PrefParam *pparam);
 static void prefs_common_default_signkey_set_optmenu   (PrefParam *pparam);
 #endif
+static void prefs_recvdialog_set_data_from_optmenu(PrefParam *pparam);
+static void prefs_recvdialog_set_optmenu(PrefParam *pparam);
+
+static void prefs_dictionary_set_data_from_optmenu(PrefParam *param);
+static void prefs_dictionary_set_optmenu(PrefParam *pparam);
+
 
 /*
    parameter name, default value, pointer to the prefs variable, data type,
@@ -217,6 +247,9 @@ static PrefParam param[] = {
        {"check_on_startup", "FALSE", &prefs_common.chk_on_startup, P_BOOL,
         &receive.checkbtn_chkonstartup,
         prefs_set_data_from_toggle, prefs_set_toggle},
+       {"noerrorpanel", "FALSE", &prefs_common.noerrorpanel, P_BOOL,
+        &receive.checkbtn_noerrorpanel,
+        prefs_set_data_from_toggle, prefs_set_toggle},
 
        {"max_news_articles", "300", &prefs_common.max_articles, P_INT,
         &receive.spinbtn_maxarticle,
@@ -246,9 +279,14 @@ static PrefParam param[] = {
         prefs_set_data_from_toggle, prefs_set_toggle},
        {"quote_mark", "> ", &prefs_common.quotemark, P_STRING,
         &compose.entry_quotemark, prefs_set_data_from_entry, prefs_set_entry},
-       {"quote_format", "On %d\\n%f wrote:\\n\\n",
+       {"quote_format", "On %d\\n%f wrote:\\n\\n%Q",
         &prefs_common.quotefmt, P_STRING, &compose.text_quotefmt,
         prefs_set_data_from_text, prefs_set_text},
+       {"fw_quote_mark", "> ", &prefs_common.fw_quotemark, P_STRING,
+        &compose.entry_fw_quotemark, prefs_set_data_from_entry, prefs_set_entry},
+       {"fw_quote_format", "----------  Forwarded message ----------\\n?d(Date: %d\\n)?f(From: %f\\n)?t(To: %t\\n)?c(Cc: %c\\n)?n(Newsgroups: %n\\n)?s(Subject: %s\\n)\\n%Q",
+        &prefs_common.fw_quotefmt, P_STRING, &compose.text_fw_quotefmt,
+        prefs_set_data_from_text, prefs_set_text},
 
        {"auto_signature", "TRUE", &prefs_common.auto_sig, P_BOOL,
         &compose.checkbtn_autosig,
@@ -256,6 +294,11 @@ static PrefParam param[] = {
        {"signature_separator", "-- ", &prefs_common.sig_sep, P_STRING,
         &compose.entry_sigsep, prefs_set_data_from_entry, prefs_set_entry},
 
+       {"reply_account_autoselect", "TRUE",
+        &prefs_common.reply_account_autosel, P_BOOL,
+        &compose.checkbtn_reply_account_autosel,
+        prefs_set_data_from_toggle, prefs_set_toggle},
+
        {"linewrap_length", "74", &prefs_common.linewrap_len, P_INT,
         &compose.spinbtn_linewrap,
         prefs_set_data_from_spinbtn, prefs_set_spinbtn},
@@ -266,6 +309,21 @@ static PrefParam param[] = {
         &prefs_common.linewrap_at_send, P_BOOL,
         &compose.checkbtn_wrapatsend,
         prefs_set_data_from_toggle, prefs_set_toggle},
+       {"forward_as_attachment", "FALSE", &prefs_common.forward_as_attachment,
+        P_BOOL, &compose.checkbtn_forward_as_attachment,
+        prefs_set_data_from_toggle, prefs_set_toggle},
+        {"smart_wrapping", "TRUE", &prefs_common.smart_wrapping,
+        P_BOOL, &compose.checkbtn_smart_wrapping,
+        prefs_set_data_from_toggle, prefs_set_toggle},
+       {"enable_ispell", "TRUE", &prefs_common.enable_ispell,
+        P_BOOL, &compose.checkbtn_enable_ispell,
+        prefs_set_data_from_toggle, prefs_set_toggle},
+       {"ispell_path", ISPELL_PATH, &prefs_common.ispell_path, 
+        P_STRING, &compose.entry_ispell_path, 
+        prefs_set_data_from_entry, prefs_set_entry},
+       {"dictionary_path",  "", &prefs_common.dictionary_path,
+        P_STRING, &compose.optmenu_dictionary_path, 
+        prefs_dictionary_set_data_from_optmenu, prefs_dictionary_set_optmenu },
 
        {"show_ruler", "TRUE", &prefs_common.show_ruler, P_BOOL,
         NULL, NULL, NULL},
@@ -277,6 +335,18 @@ static PrefParam param[] = {
         &prefs_common.textfont, P_STRING,
         &display.entry_textfont,
         prefs_set_data_from_entry, prefs_set_entry},
+       {"small_font",   "-*-helvetica-medium-r-normal--10-*-*-*-*-*-*-*",
+        &prefs_common.smallfont,   P_STRING,
+        &display.entry_smallfont,
+        prefs_set_data_from_entry, prefs_set_entry},
+       {"bold_font",    "-*-helvetica-bold-r-normal--12-*-*-*-*-*-*-*",
+        &prefs_common.boldfont,    P_STRING,
+        &display.entry_boldfont,
+        prefs_set_data_from_entry, prefs_set_entry},
+       {"normal_font",  "-*-helvetica-medium-r-normal--12-*-*-*-*-*-*-*",
+        &prefs_common.normalfont,  P_STRING,
+        &display.entry_normalfont, 
+        prefs_set_data_from_entry, prefs_set_entry},
 
        {"display_folder_unread_num", "TRUE",
         &prefs_common.display_folder_unread, P_BOOL,
@@ -298,11 +368,13 @@ static PrefParam param[] = {
         &display.chkbtn_useaddrbook,
         prefs_set_data_from_toggle, prefs_set_toggle},
        {"date_format", "%y/%m/%d(%a) %H:%M", &prefs_common.date_format,
-        P_STRING, &entry_datefmt,
+        P_STRING, &display.entry_datefmt,
         prefs_set_data_from_entry, prefs_set_entry},
 
+       /*
        {"enable_thread", "TRUE", &prefs_common.enable_thread, P_BOOL,
         NULL, NULL, NULL},
+       */
        {"toolbar_style", "3", &prefs_common.toolbar_style, P_ENUM,
         NULL, NULL, NULL},
        {"show_statusbar", "TRUE", &prefs_common.show_statusbar, P_BOOL,
@@ -314,7 +386,7 @@ static PrefParam param[] = {
         NULL, NULL, NULL},
        {"show_mime", "TRUE", &prefs_common.show_mime, P_BOOL,
         NULL, NULL, NULL},
-       {"show_number", "TRUE", &prefs_common.show_number, P_BOOL,
+       {"show_number", "FALSE", &prefs_common.show_number, P_BOOL,
         NULL, NULL, NULL},
        {"show_score", "TRUE", &prefs_common.show_score, P_BOOL,
         NULL, NULL, NULL},
@@ -400,6 +472,8 @@ static PrefParam param[] = {
         NULL, NULL, NULL},
        {"uri_color", "32512", &prefs_common.uri_col, P_INT,
         NULL, NULL, NULL},
+       {"target_folder_color", "14294218", &prefs_common.tgt_folder_col, P_INT,
+        NULL, NULL, NULL},
        {"signature_color", "0", &prefs_common.sig_col, P_USHORT,
         NULL, NULL, NULL},
        {"recycle_quote_colors", "FALSE", &prefs_common.recycle_quote_colors,
@@ -443,9 +517,6 @@ static PrefParam param[] = {
 
 #if USE_GPGME
        /* Privacy */
-       {"gpgme_warning", "TRUE", &prefs_common.gpgme_warning, P_BOOL,
-        &privacy.checkbtn_gpgme_warning,
-        prefs_set_data_from_toggle, prefs_set_toggle},
        {"default_encrypt", "FALSE", &prefs_common.default_encrypt, P_BOOL,
         &privacy.checkbtn_default_encrypt,
         prefs_set_data_from_toggle, prefs_set_toggle},
@@ -456,15 +527,18 @@ static PrefParam param[] = {
         &prefs_common.auto_check_signatures, P_BOOL,
         &privacy.checkbtn_auto_check_signatures,
         prefs_set_data_from_toggle, prefs_set_toggle},
-       {"signature_popup", "FALSE",
-        &prefs_common.signature_popup, P_BOOL,
-        &privacy.checkbtn_signature_popup,
+       {"gpg_signature_popup", "FALSE",
+        &prefs_common.gpg_signature_popup, P_BOOL,
+        &privacy.checkbtn_gpg_signature_popup,
         prefs_set_data_from_toggle, prefs_set_toggle},
 #ifndef __MINGW32__
        {"passphrase_grab", "FALSE", &prefs_common.passphrase_grab, P_BOOL,
         &privacy.checkbtn_passphrase_grab,
         prefs_set_data_from_toggle, prefs_set_toggle},
 #endif /* __MINGW32__ */
+       {"gpg_warning", "TRUE", &prefs_common.gpg_warning, P_BOOL,
+        &privacy.checkbtn_gpg_warning,
+        prefs_set_data_from_toggle, prefs_set_toggle},
        {"default_signkey", CS_AUTO, &prefs_common.default_signkey, P_STRING,
         &privacy.optmenu_default_signkey,
         prefs_common_default_signkey_set_data_from_optmenu,
@@ -483,9 +557,6 @@ static PrefParam param[] = {
        {"open_unread_on_enter", "FALSE", &prefs_common.open_unread_on_enter,
         P_BOOL, &interface.checkbtn_openunread,
         prefs_set_data_from_toggle, prefs_set_toggle},
-       {"show_retrieve_dialog", "FALSE", &prefs_common.show_retrieve_dialog,
-        P_BOOL, &interface.checkbtn_retrievedialog,
-        prefs_set_data_from_toggle, prefs_set_toggle},
        {"open_inbox_on_inc", "TRUE", &prefs_common.open_inbox_on_inc,
         P_BOOL, &interface.checkbtn_openinbox,
         prefs_set_data_from_toggle, prefs_set_toggle},
@@ -495,12 +566,16 @@ static PrefParam param[] = {
        {"add_address_by_click", "FALSE", &prefs_common.add_address_by_click,
         P_BOOL, &interface.checkbtn_addaddrbyclick,
         prefs_set_data_from_toggle, prefs_set_toggle},
+       {"receive_dialog", NULL, &prefs_common.receive_dialog, P_ENUM,
+        &interface.recvdialog_optmenu,
+        prefs_recvdialog_set_data_from_optmenu,
+        prefs_recvdialog_set_optmenu},
 
        {"confirm_on_exit", "TRUE", &prefs_common.confirm_on_exit, P_BOOL,
         &interface.checkbtn_confonexit,
         prefs_set_data_from_toggle, prefs_set_toggle},
        {"send_return_receipt", "TRUE", &prefs_common.return_receipt, P_BOOL,
-        &interface.checkbtn_returnreceipt,
+        &send.checkbtn_returnreceipt,
         prefs_set_data_from_toggle, prefs_set_toggle},
        {"clean_trash_on_exit", "FALSE", &prefs_common.clean_on_exit, P_BOOL,
         &interface.checkbtn_cleanonexit,
@@ -522,6 +597,11 @@ static PrefParam param[] = {
         &prefs_common.ext_editor_cmd, P_STRING,
         &other.exteditor_entry, prefs_set_data_from_entry, prefs_set_entry},
 
+       {"kill_score", "-9999", &prefs_common.kill_score, P_INT,
+        NULL, NULL, NULL},
+       {"important_score", "1", &prefs_common.important_score, P_INT,
+        NULL, NULL, NULL},
+
        {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL}
 };
 
@@ -544,6 +624,26 @@ static void prefs_privacy_create   (void);
 static void prefs_interface_create     (void);
 static void prefs_other_create         (void);
 
+static void date_format_ok_btn_clicked         (GtkButton      *button,
+                                                GtkWidget     **widget);
+static void date_format_cancel_btn_clicked     (GtkButton      *button,
+                                                GtkWidget     **widget);
+static void date_format_key_pressed            (GtkWidget      *keywidget,
+                                                GdkEventKey    *event,
+                                                GtkWidget     **widget);
+static gboolean date_format_on_delete          (GtkWidget      *dialogwidget,
+                                                GdkEventAny    *event,
+                                                GtkWidget     **widget);
+static void date_format_entry_on_change                (GtkEditable    *editable,
+                                                GtkLabel       *example);
+static void date_format_select_row             (GtkWidget      *date_format_list,
+                                                gint            row,
+                                                gint            column,
+                                                GdkEventButton *event,
+                                                GtkWidget      *date_format);
+static GtkWidget *date_format_create           (GtkButton      *button,
+                                                void           *data);
+
 static void prefs_quote_description            (void);
 static void prefs_quote_description_create     (void);
 static void prefs_quote_colors_dialog          (void);
@@ -579,11 +679,11 @@ static void display_item_key_pressed      (GtkWidget      *widget,
                                         GdkEventKey    *event,
                                         gboolean       *cancelled);
 
-static void prefs_font_select                  (GtkButton      *button);
+static void prefs_font_select  (GtkButton *button, GtkEntry *entry);
 static void prefs_font_selection_key_pressed   (GtkWidget      *widget,
                                                 GdkEventKey    *event,
                                                 gpointer        data);
-static void prefs_font_selection_ok            (GtkButton      *button);
+static void prefs_font_selection_ok            (GtkButton      *button, GtkEntry *entry);
 
 static gint prefs_common_deleted       (GtkWidget      *widget,
                                         GdkEventAny    *event,
@@ -595,6 +695,9 @@ static void prefs_common_ok         (void);
 static void prefs_common_apply         (void);
 static void prefs_common_cancel                (void);
 
+static void compose_prefs_fmt_open(void);
+static void compose_prefs_fmt_create(void);
+
 void prefs_common_read_config(void)
 {
        prefs_read_config(param, "Common", COMMON_RC);
@@ -607,6 +710,9 @@ void prefs_common_save_config(void)
 
 void prefs_common_open(void)
 {
+       if (prefs_rc_is_readonly(COMMON_RC))
+               return;
+
        inc_autocheck_timer_remove();
 
        if (!dialog.window) {
@@ -667,6 +773,8 @@ static void prefs_common_create(void)
        prefs_other_create();
        SET_NOTEBOOK_LABEL(dialog.notebook, _("Other"),     page++);
 
+       compose_prefs_fmt_create();
+
        gtk_widget_show_all(dialog.window);
 }
 
@@ -694,6 +802,7 @@ static void prefs_receive_create(void)
        GtkWidget *spinbtn_autochk;
        GtkWidget *label_autochk2;
        GtkWidget *checkbtn_chkonstartup;
+       GtkWidget *checkbtn_noerrorpanel;
 
        GtkWidget *frame_news;
        GtkWidget *label_maxarticle;
@@ -729,7 +838,7 @@ static void prefs_receive_create(void)
        gtk_widget_show (entry_incext);
        gtk_box_pack_start (GTK_BOX (hbox), entry_incext, TRUE, TRUE, 0);
 
-       button_incext = gtk_button_new_with_label ("... ");
+       button_incext = gtk_button_new_with_label (" ... ");
        gtk_widget_show (button_incext);
        gtk_box_pack_start (GTK_BOX (hbox), button_incext, FALSE, FALSE, 0);
 
@@ -797,6 +906,9 @@ static void prefs_receive_create(void)
        PACK_CHECK_BUTTON (vbox2, checkbtn_chkonstartup,
                           _("Check new mail on startup"));
 
+       PACK_CHECK_BUTTON (vbox2, checkbtn_noerrorpanel,
+                          _("No error popup on receive error"));
+
        PACK_FRAME(vbox1, frame_news, _("News"));
 
        hbox = gtk_hbox_new (FALSE, 8);
@@ -835,6 +947,7 @@ static void prefs_receive_create(void)
        receive.spinbtn_autochk_adj = spinbtn_autochk_adj;
 
        receive.checkbtn_chkonstartup = checkbtn_chkonstartup;
+       receive.checkbtn_noerrorpanel = checkbtn_noerrorpanel;
 
        receive.spinbtn_maxarticle     = spinbtn_maxarticle;
        receive.spinbtn_maxarticle_adj = spinbtn_maxarticle_adj;
@@ -857,6 +970,7 @@ static void prefs_send_create(void)
        GtkWidget *optmenu;
        GtkWidget *optmenu_menu;
        GtkWidget *menuitem;
+       GtkWidget *checkbtn_returnreceipt;
 
        vbox1 = gtk_vbox_new (FALSE, VSPACING);
        gtk_widget_show (vbox1);
@@ -897,9 +1011,11 @@ static void prefs_send_create(void)
        gtk_box_pack_start (GTK_BOX (vbox1), vbox2, FALSE, FALSE, 0);
 
        PACK_CHECK_BUTTON (vbox2, checkbtn_savemsg,
-                          _("Save sent message to outbox"));
+                          _("Save sent messages to outbox"));
        PACK_CHECK_BUTTON (vbox2, checkbtn_queuemsg,
-                          _("Queue message that failed to send"));
+                          _("Queue messages that fail to send"));
+       PACK_CHECK_BUTTON (vbox2, checkbtn_returnreceipt,
+                          _("Send return receipt on request"));
 
        hbox1 = gtk_hbox_new (FALSE, 8);
        gtk_widget_show (hbox1);
@@ -920,29 +1036,30 @@ static void prefs_send_create(void)
        MENUITEM_ADD(optmenu_menu, menuitem, str, charset); \
 }
 
-       SET_MENUITEM(_("Automatic"),                     CS_AUTO);
+       SET_MENUITEM(_("Automatic (Recommended)"),       CS_AUTO);
        SET_MENUITEM(_("7bit ascii (US-ASCII)"),         CS_US_ASCII);
 #if HAVE_LIBJCONV
        SET_MENUITEM(_("Unicode (UTF-8)"),               CS_UTF_8);
 #endif
        SET_MENUITEM(_("Western European (ISO-8859-1)"), CS_ISO_8859_1);
-#if HAVE_LIBJCONV
        SET_MENUITEM(_("Central European (ISO-8859-2)"), CS_ISO_8859_2);
        SET_MENUITEM(_("Baltic (ISO-8859-13)"),          CS_ISO_8859_13);
        SET_MENUITEM(_("Baltic (ISO-8859-4)"),           CS_ISO_8859_4);
        SET_MENUITEM(_("Greek (ISO-8859-7)"),            CS_ISO_8859_7);
        SET_MENUITEM(_("Turkish (ISO-8859-9)"),          CS_ISO_8859_9);
+#if HAVE_LIBJCONV
        SET_MENUITEM(_("Cyrillic (ISO-8859-5)"),         CS_ISO_8859_5);
+#endif
        SET_MENUITEM(_("Cyrillic (KOI8-R)"),             CS_KOI8_R);
+#if HAVE_LIBJCONV
        SET_MENUITEM(_("Cyrillic (Windows-1251)"),       CS_CP1251);
        SET_MENUITEM(_("Cyrillic (KOI8-U)"),             CS_KOI8_U);
-#endif /* HAVE_LIBJCONV */
+#endif
        SET_MENUITEM(_("Japanese (ISO-2022-JP)"),        CS_ISO_2022_JP);
 #if 0
        SET_MENUITEM(_("Japanese (EUC-JP)"),             CS_EUC_JP);
        SET_MENUITEM(_("Japanese (Shift_JIS)"),          CS_SHIFT_JIS);
 #endif /* 0 */
-#if HAVE_LIBJCONV
        SET_MENUITEM(_("Simplified Chinese (GB2312)"),   CS_GB2312);
        SET_MENUITEM(_("Traditional Chinese (Big5)"),    CS_BIG5);
 #if 0
@@ -950,7 +1067,6 @@ static void prefs_send_create(void)
        SET_MENUITEM(_("Chinese (ISO-2022-CN)"),         CS_ISO_2022_CN);
 #endif /* 0 */
        SET_MENUITEM(_("Korean (EUC-KR)"),               CS_EUC_KR);
-#endif /* HAVE_LIBJCONV */
 
        gtk_option_menu_set_menu (GTK_OPTION_MENU (optmenu), optmenu_menu);
 
@@ -960,13 +1076,106 @@ static void prefs_send_create(void)
 
        send.checkbtn_savemsg  = checkbtn_savemsg;
        send.checkbtn_queuemsg = checkbtn_queuemsg;
+       send.checkbtn_returnreceipt = checkbtn_returnreceipt;
 
        send.optmenu_charset = optmenu;
 }
 
+static void prefs_dictionary_set_data_from_optmenu(PrefParam *param)
+{
+       gchar *str;
+       gchar *dict_path;
+       
+       g_return_if_fail(param);
+       g_return_if_fail(param->data);
+       g_return_if_fail(param->widget);
+       g_return_if_fail(*(param->widget));
+
+       dict_path = gtkspell_get_dictionary_menu_active_item
+               (gtk_option_menu_get_menu(GTK_OPTION_MENU(*(param->widget))));
+       str = *((gchar **) param->data);
+       if (str)
+               g_free(str);
+       *((gchar **) param->data) = dict_path;
+}
+
+static void prefs_dictionary_set_optmenu(PrefParam *pparam)
+{
+       GList *cur;
+       GtkOptionMenu *optmenu = GTK_OPTION_MENU(*pparam->widget);
+       GtkWidget *menu;
+       GtkWidget *menuitem;
+       gchar *dict_path;
+       gint n = 0;
+
+       g_return_if_fail(optmenu != NULL);
+       g_return_if_fail(pparam->data != NULL);
+
+       if (*(gchar **) pparam->data) {
+               menu = gtk_option_menu_get_menu(optmenu);
+               for (cur = GTK_MENU_SHELL(menu)->children;
+                    cur != NULL; cur = cur->next) {
+                       menuitem = GTK_WIDGET(cur->data);
+                       dict_path = gtk_object_get_data(GTK_OBJECT(menuitem), "full_path");
+                       if (!strcmp(dict_path, *((gchar **)pparam->data))) {
+                               gtk_option_menu_set_history(optmenu, n);
+                               return;
+                       }
+                       n++;
+               }
+       }               
+
+       gtk_option_menu_set_history(optmenu, 0);
+       prefs_dictionary_set_data_from_optmenu(pparam);
+}
+
+static void prefs_compose_checkbtn_enable_ispell_toggle_cb
+       (GtkWidget *widget,
+        gpointer data)
+{
+       gboolean toggled;
+
+       toggled = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
+       gtk_widget_set_sensitive(compose.entry_ispell_path, toggled);
+       gtk_widget_set_sensitive(compose.optmenu_dictionary_path, toggled);
+       gtk_widget_set_sensitive(compose.btn_ispell_path, toggled);
+}
+
+static void prefs_compose_btn_ispell_path_clicked_cb(GtkWidget *widget,
+                                                    gpointer data)
+{
+       gchar *file_path;
+       GtkWidget *new_menu;
+
+       file_path = filesel_select_file(_("Select spelling checker location"),
+                                       prefs_common.ispell_path);
+       if (file_path == NULL) {
+               /* don't change */      
+       }
+       else {
+               if (prefs_common.ispell_path)
+                       g_free(prefs_common.ispell_path);
+               prefs_common.ispell_path = file_path;                   
+
+               new_menu = gtkspell_dictionary_option_menu_new(file_path);
+               gtk_option_menu_set_menu(GTK_OPTION_MENU(compose.optmenu_dictionary_path),
+                                        new_menu);
+
+               gtk_entry_set_text(GTK_ENTRY(compose.entry_ispell_path), file_path);                                     
+               /* select first one */
+               gtk_option_menu_set_history(GTK_OPTION_MENU(compose.optmenu_dictionary_path), 0);
+               
+               prefs_common.dictionary_path = gtkspell_get_dictionary_menu_active_item(
+                               gtk_option_menu_get_menu(GTK_OPTION_MENU(compose.optmenu_dictionary_path)));
+       }
+       
+}
+
 static void prefs_compose_create(void)
 {
        GtkWidget *vbox1;
+
+       /*
        GtkWidget *frame_quote;
        GtkWidget *vbox_quote;
        GtkWidget *checkbtn_quote;
@@ -978,6 +1187,11 @@ static void prefs_compose_create(void)
        GtkWidget *btn_quotedesc;
        GtkWidget *scrolledwin_quotefmt;
        GtkWidget *text_quotefmt;
+*/
+
+       GtkWidget *hbox1;
+       GtkWidget *hbox2;
+       GtkWidget *btn_quotefmt;
 
        GtkWidget *frame_sig;
        GtkWidget *vbox_sig;
@@ -985,6 +1199,7 @@ static void prefs_compose_create(void)
        GtkWidget *label_sigsep;
        GtkWidget *entry_sigsep;
 
+       GtkWidget *checkbtn_reply_account_autosel;
        GtkWidget *vbox_linewrap;
        GtkWidget *hbox3;
        GtkWidget *hbox4;
@@ -994,11 +1209,27 @@ static void prefs_compose_create(void)
        GtkWidget *checkbtn_wrapquote;
        GtkWidget *checkbtn_wrapatsend;
 
+       GtkWidget *checkbtn_forward_as_attachment;
+       GtkWidget *checkbtn_smart_wrapping;
+
+       GtkWidget *frame_spell;
+       GtkWidget *hbox_spell;
+       GtkWidget *vbox_spell;
+       GtkWidget *hbox_ispell_path;
+       GtkWidget *checkbtn_enable_ispell;
+       GtkWidget *label_ispell_path;
+       GtkWidget *entry_ispell_path;
+       GtkWidget *btn_ispell_path;
+       GtkWidget *hbox_dictionary_path;
+       GtkWidget *label_dictionary_path;
+       GtkWidget *optmenu_dictionary_path;
+
        vbox1 = gtk_vbox_new (FALSE, VSPACING);
        gtk_widget_show (vbox1);
        gtk_container_add (GTK_CONTAINER (dialog.notebook), vbox1);
        gtk_container_set_border_width (GTK_CONTAINER (vbox1), VBOX_BORDER);
 
+       /*
        PACK_FRAME(vbox1, frame_quote, _("Quotation"));
 
        vbox_quote = gtk_vbox_new (FALSE, VSPACING_NARROW);
@@ -1031,11 +1262,11 @@ static void prefs_compose_create(void)
        gtk_box_pack_start (GTK_BOX (hbox2), label_quotefmt, FALSE, FALSE, 0);
 
        btn_quotedesc =
-               gtk_button_new_with_label (_(" Description of symbols "));
+               gtk_button_new_with_label (_(" Quote format "));
        gtk_widget_show (btn_quotedesc);
        gtk_box_pack_end (GTK_BOX (hbox2), btn_quotedesc, FALSE, FALSE, 0);
        gtk_signal_connect(GTK_OBJECT(btn_quotedesc), "clicked",
-                          GTK_SIGNAL_FUNC(prefs_quote_description), NULL);
+                          GTK_SIGNAL_FUNC(compose_prefs_fmt_open), &cancelled);
 
        scrolledwin_quotefmt = gtk_scrolled_window_new (NULL, NULL);
        gtk_widget_show (scrolledwin_quotefmt);
@@ -1049,6 +1280,17 @@ static void prefs_compose_create(void)
        gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt), text_quotefmt);
        gtk_text_set_editable (GTK_TEXT (text_quotefmt), TRUE);
        gtk_widget_set_usize(text_quotefmt, -1, 60);
+       */
+
+       hbox1 = gtk_hbox_new (FALSE, 32);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox1), hbox1, FALSE, FALSE, 0);
+
+       btn_quotefmt = gtk_button_new_with_label (_(" Quote format "));
+       gtk_widget_show (btn_quotefmt);
+       gtk_box_pack_start (GTK_BOX (hbox1), btn_quotefmt, FALSE, FALSE, 0);
+       gtk_signal_connect(GTK_OBJECT(btn_quotefmt), "clicked",
+                          GTK_SIGNAL_FUNC(compose_prefs_fmt_open), NULL);
 
        PACK_FRAME(vbox1, frame_sig, _("Signature"));
 
@@ -1106,274 +1348,91 @@ static void prefs_compose_create(void)
        PACK_CHECK_BUTTON
                (hbox4, checkbtn_wrapatsend, _("Wrap before sending"));
 
-       compose.checkbtn_quote   = checkbtn_quote;
-       compose.entry_quotemark  = entry_quotemark;
-       compose.text_quotefmt    = text_quotefmt;
-       compose.checkbtn_autosig = checkbtn_autosig;
-       compose.entry_sigsep     = entry_sigsep;
-
-       compose.spinbtn_linewrap     = spinbtn_linewrap;
-       compose.spinbtn_linewrap_adj = spinbtn_linewrap_adj;
-       compose.checkbtn_wrapquote   = checkbtn_wrapquote;
-       compose.checkbtn_wrapatsend  = checkbtn_wrapatsend;
-}
-
-
-/* alfons - nice ui for darko */
-
-static void date_format_ok_btn_clicked(GtkButton *button, GtkWidget **widget)
-{
-       gchar *text;
-
-       g_return_if_fail(widget != NULL);
-       g_return_if_fail(*widget != NULL);
-       g_return_if_fail(entry_datefmt != NULL);
-       g_return_if_fail(datefmt_sample != NULL);
-
-       text = gtk_editable_get_chars(GTK_EDITABLE(datefmt_sample), 0, -1);
-       g_free(prefs_common.date_format);
-       prefs_common.date_format = text;
-       gtk_entry_set_text(GTK_ENTRY(entry_datefmt), text);
-
-       gtk_widget_destroy(*widget);
-       *widget = NULL;
-}
-
-static void date_format_cancel_btn_clicked(GtkButton *button,
-                                          GtkWidget **widget)
-{
-       g_return_if_fail(widget != NULL);
-       g_return_if_fail(*widget != NULL);
-
-       gtk_widget_destroy(*widget);
-       *widget = NULL;
-}
-
-static gboolean date_format_on_delete(GtkWidget *dialogwidget, gpointer d1, GtkWidget **widget)
-{
-       g_return_val_if_fail(widget != NULL, FALSE);
-       g_return_val_if_fail(*widget != NULL, FALSE);
-       *widget = NULL;
-       return FALSE;
-}
-
-static void date_format_entry_on_change(GtkEditable *editable, GtkLabel *example)
-{
-       time_t cur_time;
-       struct tm *cal_time;
-       char buffer[100];
-       char *text;
-       cur_time = time(NULL);
-       cal_time = localtime(&cur_time);
-       buffer[0] = 0;
-       text = gtk_editable_get_chars(editable, 0, -1);
-       if (text) {
-               strftime(buffer, sizeof buffer, text, cal_time); 
-       }
-       gtk_label_set_text(example, buffer);
-}
-
-static void date_format_select_row(GtkWidget *date_format_list, gint row,
-                                       gint column, GdkEventButton *event,
-                                       gpointer data)
-{
-       gint curs_pos;
-       gchar *format;
-       gchar *old_format;
-       gchar *new_format;
-
-       g_return_if_fail(date_format_list != NULL);
-
-       /* only on double click */
-       if (event->type != GDK_2BUTTON_PRESS)
-               return;
-
-       /* get format from clist */
-       gtk_clist_get_text(GTK_CLIST(date_format_list), row, 0, &format);
-
-       curs_pos = gtk_editable_get_position(GTK_EDITABLE(datefmt_sample));
-       old_format = gtk_entry_get_text(GTK_ENTRY(datefmt_sample));
-
-       /* insert the format into the text entry */
-       new_format = g_malloc(strlen(old_format) + 3);
-
-       strncpy(new_format, old_format, curs_pos);
-       new_format[curs_pos] = '\0';
-       strcat(new_format, format);
-       strcat(new_format, &old_format[curs_pos]);
-
-       gtk_entry_set_text(GTK_ENTRY(datefmt_sample), new_format);
-       gtk_editable_set_position(GTK_EDITABLE(datefmt_sample), curs_pos + 2);
-
-       g_free(new_format);
-}
-
-static GtkWidget *create_date_format(GtkButton *button, void *data)
-{
-       static GtkWidget *date_format = NULL;
-       GtkWidget      *vbox1;
-       GtkWidget      *scrolledwindow1;
-       GtkWidget      *date_format_list;
-       GtkWidget      *label3;
-       GtkWidget      *label4;
-       GtkWidget      *table2;
-       GtkWidget      *vbox2;
-       GtkWidget      *vbox3;
-       GtkWidget      *hbox2;
-       GtkWidget      *label5;
-       GtkWidget      *hbox1;
-       GtkWidget      *label6;
-       GtkWidget      *label7;
-       GtkWidget      *confirm_area;
-       GtkWidget      *ok_btn;
-       GtkWidget      *cancel_btn;
-
-       const struct  {
-               gchar *fmt;
-               gchar *txt;
-       } time_format[] = {
-               { "%a", _("the full abbreviated weekday name") },
-               { "%A", _("the full weekday name") },
-               { "%b", _("the abbreviated month name") },
-               { "%B", _("the full month name") },
-               { "%c", _("the preferred date and time for the current locale") },
-               { "%C", _("the century number (year/100)") },
-               { "%d", _("the day of the month as a decimal number") },
-               { "%H", _("the hour as a decimal number using a 24-hour clock") },
-               { "%I", _("the hour as a decimal number using a 12-hour clock") },
-               { "%j", _("the day of the year as a decimal number") },
-               { "%m", _("the month as a decimal number") },
-               { "%M", _("the minute as a decimal number") },
-               { "%p", _("either AM or PM") },
-               { "%S", _("the second as a decimal number") },
-               { "%w", _("the day of the week as a decimal number") },
-               { "%x", _("the preferred date for the current locale") },
-               { "%y", _("the last two digits of a year") },
-               { "%Y", _("the year as a decimal number") },
-               { "%Z", _("the time zone or name or abbreviation") }
-       };
-       int tmp;
-       const int TIME_FORMAT_ELEMS = sizeof time_format / sizeof time_format[0];
-
-       if (date_format) return date_format;
-
-       date_format = gtk_window_new(GTK_WINDOW_DIALOG);
-       gtk_window_set_title(GTK_WINDOW(date_format), _("Date format"));
-       gtk_window_set_position(GTK_WINDOW(date_format), GTK_WIN_POS_CENTER);
-       gtk_window_set_default_size(GTK_WINDOW(date_format), 440, 280);
-
-       vbox1 = gtk_vbox_new(FALSE, 10);
-       gtk_widget_show(vbox1);
-       gtk_container_add(GTK_CONTAINER(date_format), vbox1);
-
-       scrolledwindow1 = gtk_scrolled_window_new(NULL, NULL);
-       gtk_widget_show(scrolledwindow1);
-       gtk_box_pack_start(GTK_BOX(vbox1), scrolledwindow1, TRUE, TRUE, 0);
-
-       date_format_list = gtk_clist_new(2);
-       gtk_widget_show(date_format_list);
-       gtk_container_add(GTK_CONTAINER(scrolledwindow1), date_format_list);
-       gtk_clist_set_column_width(GTK_CLIST(date_format_list), 0, 80);
-       gtk_clist_set_column_width(GTK_CLIST(date_format_list), 1, 80);
-       gtk_clist_column_titles_show(GTK_CLIST(date_format_list));
-
-       label3 = gtk_label_new(_("Date Format"));
-       gtk_widget_show(label3);
-       gtk_clist_set_column_widget(GTK_CLIST(date_format_list), 0, label3);
-
-       label4 = gtk_label_new(_("Date Format Description"));
-       gtk_widget_show(label4);
-       gtk_clist_set_column_widget(GTK_CLIST(date_format_list), 1, label4);
-
-       for (tmp = 0; tmp < TIME_FORMAT_ELEMS; tmp++) {
-               gchar *text[3];
-               /* phoney casting necessary because of gtk... */
-               text[0] = (gchar *) time_format[tmp].fmt;
-               text[1] = (gchar *) time_format[tmp].txt;
-               text[2] = NULL;
-               gtk_clist_append(GTK_CLIST(date_format_list), text);
-       }
-
-       table2 = gtk_table_new(1, 1, TRUE);
-       gtk_widget_show(table2);
-       gtk_box_pack_start(GTK_BOX(vbox1), table2, FALSE, TRUE, 0);
-
-       vbox2 = gtk_vbox_new(FALSE, 0);
-       gtk_widget_show(vbox2);
-       gtk_table_attach(GTK_TABLE(table2), vbox2, 0, 1, 0, 1,
-                        (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
-                        (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
-
-       vbox3 = gtk_vbox_new(TRUE, 4);
-       gtk_widget_show(vbox3);
-       gtk_box_pack_end(GTK_BOX(vbox2), vbox3, FALSE, FALSE, 10);
+       PACK_CHECK_BUTTON (vbox1, checkbtn_forward_as_attachment,
+                          _("Forward as attachment"));
 
-       hbox2 = gtk_hbox_new(FALSE, 0);
-       gtk_widget_show(hbox2);
-       gtk_box_pack_start(GTK_BOX(vbox3), hbox2, TRUE, TRUE, 0);
+       PACK_CHECK_BUTTON (vbox1, checkbtn_reply_account_autosel,
+                          _("Automatically select account for mail replies"));
 
-       label5 = gtk_label_new(_("Date format"));
-       gtk_widget_show(label5);
-       gtk_box_pack_start(GTK_BOX(hbox2), label5, FALSE, FALSE, 0);
-       gtk_misc_set_padding(GTK_MISC(label5), 8, 0);
+       PACK_CHECK_BUTTON (vbox1, checkbtn_smart_wrapping,
+                          _("Smart wrapping (EXPERIMENTAL)"));
 
-       datefmt_sample = gtk_entry_new_with_max_length(300);
-       gtk_widget_show(datefmt_sample);
-       gtk_box_pack_start(GTK_BOX(hbox2), datefmt_sample, TRUE, TRUE, 40);
+       /* spell checker defaults */                       
+       PACK_FRAME(vbox1, frame_spell, _("Global spelling checker settings"));
+       vbox_spell = gtk_vbox_new(FALSE, VSPACING_NARROW);
+       gtk_widget_show (vbox_spell);
+       gtk_container_add(GTK_CONTAINER(frame_spell), vbox_spell);
+       gtk_container_set_border_width(GTK_CONTAINER(vbox_spell), 8);
 
-       hbox1 = gtk_hbox_new(FALSE, 0);
-       gtk_widget_show(hbox1);
-       gtk_box_pack_start(GTK_BOX(vbox3), hbox1, TRUE, TRUE, 0);
+       PACK_CHECK_BUTTON(vbox_spell, checkbtn_enable_ispell, 
+                         _("Enable spell checker"));
 
-       label6 = gtk_label_new(_("Example"));
-       gtk_widget_show(label6);
-       gtk_box_pack_start(GTK_BOX(hbox1), label6, FALSE, TRUE, 0);
-       gtk_misc_set_padding(GTK_MISC(label6), 8, 0);
-
-       label7 = gtk_label_new(_("label7"));
-       gtk_widget_show(label7);
-       gtk_box_pack_start(GTK_BOX(hbox1), label7, TRUE, TRUE, 60);
-       gtk_label_set_justify(GTK_LABEL(label7), GTK_JUSTIFY_LEFT);
+       gtk_signal_connect(GTK_OBJECT(checkbtn_enable_ispell), "toggled",
+                          GTK_SIGNAL_FUNC(prefs_compose_checkbtn_enable_ispell_toggle_cb),
+                          NULL);
 
-       gtkut_button_set_create(&confirm_area, &ok_btn, _("OK"),
-                               &cancel_btn, _("Cancel"), NULL, NULL);
-       gtk_widget_grab_default(ok_btn);
+       hbox_ispell_path = gtk_hbox_new (FALSE, 8);
+       gtk_widget_show(hbox_ispell_path);
+       gtk_box_pack_start(GTK_BOX(vbox_spell), hbox_ispell_path, TRUE, TRUE, 0);
 
-       gtk_widget_show(confirm_area);
+       label_ispell_path = gtk_label_new (_("Ispelll path"));
+       gtk_widget_show(label_ispell_path);
+       gtk_box_pack_start(GTK_BOX(hbox_ispell_path), label_ispell_path, FALSE, FALSE, 0);
+       
+       entry_ispell_path = gtk_entry_new();
+       gtk_widget_show(entry_ispell_path);
+       gtk_box_pack_start(GTK_BOX(hbox_ispell_path), entry_ispell_path, FALSE, FALSE, 0);
+       gtk_widget_set_usize(entry_ispell_path, 150, -1);
+       gtk_widget_set_sensitive(entry_ispell_path, prefs_common.enable_ispell);
+
+       btn_ispell_path = gtk_button_new_with_label(_("..."));
+       gtk_widget_show(btn_ispell_path);
+       gtk_box_pack_start(GTK_BOX(hbox_ispell_path), btn_ispell_path, FALSE, FALSE, 0);
+       gtk_widget_set_sensitive(btn_ispell_path, prefs_common.enable_ispell);
+
+       gtk_signal_connect(GTK_OBJECT(btn_ispell_path), "clicked", 
+                          GTK_SIGNAL_FUNC(prefs_compose_btn_ispell_path_clicked_cb),
+                          NULL);
 
-       gtk_box_pack_start(GTK_BOX(vbox1), confirm_area, FALSE, FALSE, 0);
+       hbox_dictionary_path = gtk_hbox_new(FALSE, 8);
+       gtk_widget_show(hbox_dictionary_path);
+       gtk_box_pack_start(GTK_BOX(vbox_spell), hbox_dictionary_path, TRUE, TRUE, 0);
 
-       /* set the current format */
-       gtk_entry_set_text(GTK_ENTRY(datefmt_sample), prefs_common.date_format);
-       date_format_entry_on_change(GTK_EDITABLE(datefmt_sample),
-                                   GTK_LABEL(label7));
+       label_dictionary_path = gtk_label_new(_("Dictionaries"));
+       gtk_widget_show(label_dictionary_path);
+       gtk_box_pack_start(GTK_BOX(hbox_dictionary_path), label_dictionary_path, FALSE, FALSE, 0);
 
-       gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
-                          GTK_SIGNAL_FUNC(date_format_ok_btn_clicked),
-                          &date_format);
-                                 
-       gtk_signal_connect(GTK_OBJECT(cancel_btn), "clicked",
-                          GTK_SIGNAL_FUNC(date_format_cancel_btn_clicked),
-                          &date_format);
+       optmenu_dictionary_path = gtk_option_menu_new();
+       gtk_widget_show(optmenu_dictionary_path);
+       gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu_dictionary_path), 
+                                gtkspell_dictionary_option_menu_new(prefs_common.ispell_path));
+       gtk_box_pack_start(GTK_BOX(hbox_dictionary_path), optmenu_dictionary_path, FALSE, FALSE, 0);
+       gtk_widget_set_sensitive(optmenu_dictionary_path, prefs_common.enable_ispell);
 
-       gtk_signal_connect(GTK_OBJECT(date_format), "delete_event",
-                          GTK_SIGNAL_FUNC(date_format_on_delete),
-                          &date_format);
+       /*
+       compose.checkbtn_quote   = checkbtn_quote;
+       compose.entry_quotemark  = entry_quotemark;
+       compose.text_quotefmt    = text_quotefmt;
+       */
+       compose.checkbtn_autosig = checkbtn_autosig;
+       compose.entry_sigsep     = entry_sigsep;
 
-       gtk_signal_connect(GTK_OBJECT(datefmt_sample), "changed",
-                          GTK_SIGNAL_FUNC(date_format_entry_on_change),
-                          label7);
-                                 
-       gtk_window_set_position(GTK_WINDOW(date_format), GTK_WIN_POS_CENTER);
-       gtk_window_set_modal(GTK_WINDOW(date_format), TRUE);
+       compose.checkbtn_reply_account_autosel = checkbtn_reply_account_autosel;
 
-       gtk_widget_show(date_format);                                   
+       compose.spinbtn_linewrap     = spinbtn_linewrap;
+       compose.spinbtn_linewrap_adj = spinbtn_linewrap_adj;
+       compose.checkbtn_wrapquote   = checkbtn_wrapquote;
+       compose.checkbtn_wrapatsend  = checkbtn_wrapatsend;
 
-       gtk_signal_connect(GTK_OBJECT(date_format_list), "select_row",
-                          GTK_SIGNAL_FUNC(date_format_select_row),
-                          &datefmt_sample);
+       compose.checkbtn_forward_as_attachment =
+               checkbtn_forward_as_attachment;
+       compose.checkbtn_smart_wrapping = 
+               checkbtn_smart_wrapping;
 
-       return date_format;
+       compose.checkbtn_enable_ispell = checkbtn_enable_ispell;
+       compose.entry_ispell_path      = entry_ispell_path;
+       compose.btn_ispell_path        = btn_ispell_path;
+       compose.optmenu_dictionary_path = optmenu_dictionary_path;
 }
 
 static void prefs_display_create(void)
@@ -1393,8 +1452,11 @@ static void prefs_display_create(void)
        GtkWidget *chkbtn_useaddrbook;
        GtkWidget *hbox1;
        GtkWidget *label_datefmt;
-       GtkWidget *label_datefmt_btn;
+       GtkWidget *button_datefmt;
+       GtkWidget *entry_datefmt;
+       GtkWidget *vbox3;
        GtkWidget *button_dispitem;
+       GtkWidget *tmplabel, *tmpbutton, *tmpentry;
 
        vbox1 = gtk_vbox_new (FALSE, VSPACING);
        gtk_widget_show (vbox1);
@@ -1403,7 +1465,7 @@ static void prefs_display_create(void)
 
        PACK_FRAME(vbox1, frame_font, _("Font"));
 
-       table1 = gtk_table_new (1, 3, FALSE);
+       table1 = gtk_table_new (4, 3, FALSE);
        gtk_widget_show (table1);
        gtk_container_add (GTK_CONTAINER (frame_font), table1);
        gtk_container_set_border_width (GTK_CONTAINER (table1), 8);
@@ -1411,6 +1473,7 @@ static void prefs_display_create(void)
        gtk_table_set_col_spacings (GTK_TABLE (table1), 8);
 
        label_textfont = gtk_label_new (_("Text"));
+       gtk_misc_set_alignment(GTK_MISC(label_textfont), 0, 0.5);
        gtk_widget_show (label_textfont);
        gtk_table_attach (GTK_TABLE (table1), label_textfont, 0, 1, 0, 1,
                          GTK_FILL, (GTK_EXPAND | GTK_FILL), 0, 0);
@@ -1420,12 +1483,69 @@ static void prefs_display_create(void)
        gtk_table_attach (GTK_TABLE (table1), entry_textfont, 1, 2, 0, 1,
                          (GTK_EXPAND | GTK_FILL), 0, 0, 0);
 
-       button_textfont = gtk_button_new_with_label ("... ");
+       button_textfont = gtk_button_new_with_label (" ... ");
        gtk_widget_show (button_textfont);
        gtk_table_attach (GTK_TABLE (table1), button_textfont, 2, 3, 0, 1,
                          0, 0, 0, 0);
        gtk_signal_connect (GTK_OBJECT (button_textfont), "clicked",
-                           GTK_SIGNAL_FUNC (prefs_font_select), NULL);
+                           GTK_SIGNAL_FUNC (prefs_font_select), entry_textfont);
+
+       tmplabel = gtk_label_new (_("Small"));
+       gtk_misc_set_alignment(GTK_MISC(tmplabel), 0, 0.5);
+       gtk_widget_show (tmplabel);
+       gtk_table_attach (GTK_TABLE (table1), tmplabel, 0, 1, 1, 2,
+                         GTK_FILL, (GTK_EXPAND | GTK_FILL), 0, 0);
+
+       tmpentry = gtk_entry_new ();
+       gtk_widget_show (tmpentry);
+       gtk_table_attach (GTK_TABLE (table1), tmpentry, 1, 2, 1, 2,
+                         (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+
+       tmpbutton = gtk_button_new_with_label (" ... ");
+       gtk_widget_show (tmpbutton);
+       gtk_table_attach (GTK_TABLE (table1), tmpbutton, 2, 3, 1, 2,
+                         0, 0, 0, 0);
+       gtk_signal_connect (GTK_OBJECT(tmpbutton), "clicked",
+                           GTK_SIGNAL_FUNC(prefs_font_select), tmpentry);
+       display.entry_smallfont = tmpentry;                       
+
+       tmplabel = gtk_label_new (_("Normal"));
+       gtk_misc_set_alignment(GTK_MISC(tmplabel), 0, 0.5);
+       gtk_widget_show (tmplabel);
+       gtk_table_attach (GTK_TABLE (table1), tmplabel, 0, 1, 2, 3,
+                         GTK_FILL, (GTK_EXPAND | GTK_FILL), 0, 0);
+
+       tmpentry = gtk_entry_new ();
+       gtk_widget_show (tmpentry);
+       gtk_table_attach (GTK_TABLE (table1), tmpentry, 1, 2, 2, 3,
+                         (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+
+       tmpbutton = gtk_button_new_with_label (" ... ");
+       gtk_widget_show (tmpbutton);
+       gtk_table_attach (GTK_TABLE (table1), tmpbutton, 2, 3, 2, 3,
+                         0, 0, 0, 0);
+       gtk_signal_connect (GTK_OBJECT(tmpbutton), "clicked",
+                               GTK_SIGNAL_FUNC(prefs_font_select), tmpentry);
+       display.entry_normalfont = tmpentry;                      
+
+       tmplabel = gtk_label_new (_("Bold"));
+       gtk_misc_set_alignment(GTK_MISC(tmplabel), 0, 0.5);
+       gtk_widget_show (tmplabel);
+       gtk_table_attach (GTK_TABLE (table1), tmplabel, 0, 1, 3, 4,
+                         GTK_FILL, (GTK_EXPAND | GTK_FILL), 0, 0);
+
+       tmpentry = gtk_entry_new ();
+       gtk_widget_show (tmpentry);
+       gtk_table_attach (GTK_TABLE (table1), tmpentry, 1, 2, 3, 4,
+                         (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+
+       tmpbutton = gtk_button_new_with_label (" ... ");
+       gtk_widget_show (tmpbutton);
+       gtk_table_attach (GTK_TABLE (table1), tmpbutton, 2, 3, 3, 4,
+                         0, 0, 0, 0);
+       gtk_signal_connect (GTK_OBJECT(tmpbutton), "clicked",
+                               GTK_SIGNAL_FUNC(prefs_font_select), tmpentry);
+       display.entry_boldfont = tmpentry;                        
 
        vbox2 = gtk_vbox_new (FALSE, VSPACING_NARROW);
        gtk_widget_show (vbox2);
@@ -1460,19 +1580,24 @@ static void prefs_display_create(void)
        gtk_widget_show (hbox1);
        gtk_box_pack_start (GTK_BOX (vbox2), hbox1, FALSE, TRUE, 0);
 
-       label_datefmt = gtk_label_new(_("Date format"));
-       gtk_widget_show(label_datefmt);
-       gtk_box_pack_start(GTK_BOX (hbox1), label_datefmt, FALSE, FALSE, 0);
+       label_datefmt = gtk_label_new (_("Date format"));
+       gtk_widget_show (label_datefmt);
+       gtk_box_pack_start (GTK_BOX (hbox1), label_datefmt, FALSE, FALSE, 0);
 
        entry_datefmt = gtk_entry_new ();
        gtk_widget_show (entry_datefmt);
        gtk_box_pack_start (GTK_BOX (hbox1), entry_datefmt, TRUE, TRUE, 0);
-       
-       label_datefmt_btn = gtk_button_new_with_label(_("Customize"));
-       gtk_widget_show(label_datefmt_btn);
-       gtk_box_pack_start(GTK_BOX (hbox1), label_datefmt_btn, FALSE, FALSE, 0);
-       gtk_signal_connect(GTK_OBJECT(label_datefmt_btn), "clicked",
-                          GTK_SIGNAL_FUNC(create_date_format), NULL);
+
+       button_datefmt = gtk_button_new_with_label (_("... "));
+       gtk_widget_show (button_datefmt);
+       gtk_box_pack_start (GTK_BOX (hbox1), button_datefmt, FALSE, FALSE, 0);
+       gtk_signal_connect (GTK_OBJECT (button_datefmt), "clicked",
+                           GTK_SIGNAL_FUNC (date_format_create), NULL);
+
+       /* spacer */
+       vbox3 = gtk_vbox_new (FALSE, VSPACING_NARROW);
+       gtk_widget_show (vbox3);
+       gtk_box_pack_start (GTK_BOX (vbox2), vbox3, FALSE, TRUE, 0);
 
        hbox1 = gtk_hbox_new (FALSE, 8);
        gtk_widget_show (hbox1);
@@ -1495,6 +1620,7 @@ static void prefs_display_create(void)
        display.chkbtn_swapfrom    = chkbtn_swapfrom;
        display.chkbtn_hscrollbar  = chkbtn_hscrollbar;
        display.chkbtn_useaddrbook = chkbtn_useaddrbook;
+       display.entry_datefmt      = entry_datefmt;
 }
 
 static void prefs_message_create(void)
@@ -1507,7 +1633,7 @@ static void prefs_message_create(void)
        GtkWidget *chkbtn_mbalnum;
        GtkWidget *chkbtn_disphdrpane;
        GtkWidget *chkbtn_disphdr;
-       GtkWidget *button_edit_disphdr; 
+       GtkWidget *button_edit_disphdr;
        GtkWidget *hbox_linespc;
        GtkWidget *label_linespc;
        GtkObject *spinbtn_linespc_adj;
@@ -1561,15 +1687,15 @@ static void prefs_message_create(void)
        gtk_box_pack_start (GTK_BOX (vbox2), hbox1, FALSE, TRUE, 0);
 
        PACK_CHECK_BUTTON(hbox1, chkbtn_disphdr,
-               _("Display short headers on message view"));
+                         _("Display short headers on message view"));
 
        button_edit_disphdr = gtk_button_new_with_label (_(" Edit... "));
        gtk_widget_show (button_edit_disphdr);
        gtk_box_pack_end (GTK_BOX (hbox1), button_edit_disphdr,
-                                 FALSE, TRUE, 0);
+                         FALSE, TRUE, 0);
        gtk_signal_connect (GTK_OBJECT (button_edit_disphdr), "clicked",
-                                           GTK_SIGNAL_FUNC (prefs_display_header_open),
-                                           NULL);
+                           GTK_SIGNAL_FUNC (prefs_display_header_open),
+                           NULL);
 
        SET_TOGGLE_SENSITIVITY(chkbtn_disphdr, button_edit_disphdr);
 
@@ -1661,12 +1787,12 @@ static void prefs_privacy_create(void)
        GtkWidget *vbox1;
        GtkWidget *vbox2;
        GtkWidget *hbox1;
-       GtkWidget *checkbtn_gpgme_warning;
        GtkWidget *checkbtn_default_encrypt;
        GtkWidget *checkbtn_default_sign;
        GtkWidget *checkbtn_auto_check_signatures;
-       GtkWidget *checkbtn_signature_popup;
+       GtkWidget *checkbtn_gpg_signature_popup;
        GtkWidget *checkbtn_passphrase_grab;
+       GtkWidget *checkbtn_gpg_warning;
        GtkWidget *label;
        GtkWidget *menuitem;
        GtkWidget *optmenu;
@@ -1681,10 +1807,6 @@ static void prefs_privacy_create(void)
        gtk_widget_show (vbox2);
        gtk_box_pack_start (GTK_BOX (vbox1), vbox2, FALSE, FALSE, 0);
 
-       PACK_CHECK_BUTTON
-               (vbox2, checkbtn_gpgme_warning,
-                _("Display warning on startup if GnuPG does not work"));
-
        PACK_CHECK_BUTTON (vbox2, checkbtn_default_encrypt,
                           _("Encrypt message by default"));
 
@@ -1694,7 +1816,7 @@ static void prefs_privacy_create(void)
        PACK_CHECK_BUTTON (vbox2, checkbtn_auto_check_signatures,
                           _("Automatically check signatures"));
 
-       PACK_CHECK_BUTTON (vbox2, checkbtn_signature_popup,
+       PACK_CHECK_BUTTON (vbox2, checkbtn_gpg_signature_popup,
                           _("Show signature check result in a popup window"));
 
 #ifndef __MINGW32__
@@ -1702,6 +1824,10 @@ static void prefs_privacy_create(void)
                           _("Grab input while entering a passphrase"));
 #endif
 
+       PACK_CHECK_BUTTON
+               (vbox2, checkbtn_gpg_warning,
+                _("Display warning on startup if GnuPG doesn't work"));
+
        hbox1 = gtk_hbox_new (FALSE, 8);
        gtk_widget_show (hbox1);
        gtk_box_pack_start (GTK_BOX (vbox1), hbox1, FALSE, FALSE, 0);
@@ -1721,13 +1847,14 @@ static void prefs_privacy_create(void)
        /* FIXME: disabled because not implemented */
        gtk_widget_set_sensitive(optmenu, FALSE);
 
-       privacy.checkbtn_gpgme_warning   = checkbtn_gpgme_warning;
        privacy.checkbtn_default_encrypt = checkbtn_default_encrypt;
        privacy.checkbtn_default_sign    = checkbtn_default_sign;
        privacy.checkbtn_auto_check_signatures
                                         = checkbtn_auto_check_signatures;
-       privacy.checkbtn_signature_popup = checkbtn_signature_popup;
+       privacy.checkbtn_gpg_signature_popup
+                                        = checkbtn_gpg_signature_popup;
        privacy.checkbtn_passphrase_grab = checkbtn_passphrase_grab;
+       privacy.checkbtn_gpg_warning     = checkbtn_gpg_warning;
        privacy.optmenu_default_signkey  = optmenu;
 }
 
@@ -1788,6 +1915,10 @@ static void prefs_interface_create(void)
        GtkWidget *checkbtn_openinbox;
        GtkWidget *checkbtn_immedexec;
        GtkWidget *checkbtn_addaddrbyclick;
+       GtkWidget *hbox;
+       GtkWidget *recvdialog_optmenu;
+       GtkWidget *recvdialog_optmenu_menu;
+       GtkWidget *recvdialog_menuitem;
        GtkWidget *label;
 
        GtkWidget *frame_exit;
@@ -1797,8 +1928,6 @@ static void prefs_interface_create(void)
        GtkWidget *checkbtn_cleanonexit;
        GtkWidget *checkbtn_askonclean;
        GtkWidget *checkbtn_warnqueued;
-       GtkWidget *checkbtn_retrievedialog;
-       GtkWidget *checkbtn_returnreceipt;
 
        vbox1 = gtk_vbox_new (FALSE, VSPACING);
        gtk_widget_show (vbox1);
@@ -1819,10 +1948,6 @@ static void prefs_interface_create(void)
                (vbox2, checkbtn_openunread,
                 _("Open first unread message when entering a folder"));
 
-       PACK_CHECK_BUTTON
-               (vbox2, checkbtn_retrievedialog,
-                _("Display dialog when retrieving mail"));
-
        PACK_CHECK_BUTTON
                (vbox2, checkbtn_openinbox,
                 _("Go to inbox after receiving new mail"));
@@ -1849,6 +1974,28 @@ static void prefs_interface_create(void)
                (vbox2, checkbtn_addaddrbyclick,
                 _("Add address to destination when double-clicked"));
 
+       /* Receive Dialog */
+       hbox = gtk_hbox_new (FALSE, 8);
+       gtk_widget_show (hbox);
+       gtk_box_pack_start (GTK_BOX (vbox2), hbox, FALSE, FALSE, 0);
+
+       label = gtk_label_new (_("Show receive Dialog"));
+       gtk_widget_show (label);
+       gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
+
+       recvdialog_optmenu = gtk_option_menu_new ();
+       gtk_widget_show (recvdialog_optmenu);
+       gtk_box_pack_start (GTK_BOX (hbox), recvdialog_optmenu, FALSE, FALSE, 0);
+
+       recvdialog_optmenu_menu = gtk_menu_new ();
+
+       MENUITEM_ADD (recvdialog_optmenu_menu, recvdialog_menuitem, _("Always"),  RECVDIALOG_ALWAYS);
+       MENUITEM_ADD (recvdialog_optmenu_menu, recvdialog_menuitem, _("Only if a sylpheed window is active"),  RECVDIALOG_WINDOW_ACTIVE);
+       MENUITEM_ADD (recvdialog_optmenu_menu, recvdialog_menuitem, _("Never"), RECVDIALOG_NEVER);
+
+       gtk_option_menu_set_menu (GTK_OPTION_MENU (recvdialog_optmenu), recvdialog_optmenu_menu);
+
+       /* On Exit */
        PACK_FRAME (vbox1, frame_exit, _("On exit"));
 
        vbox_exit = gtk_vbox_new (FALSE, VSPACING_NARROW);
@@ -1872,20 +2019,16 @@ static void prefs_interface_create(void)
        PACK_CHECK_BUTTON (vbox_exit, checkbtn_warnqueued,
                           _("Warn if there are queued messages"));
 
-       PACK_CHECK_BUTTON (vbox_exit, checkbtn_returnreceipt,
-                          _("Send return receipt on request"));
-
        interface.checkbtn_emacs          = checkbtn_emacs;
        interface.checkbtn_openunread     = checkbtn_openunread;
        interface.checkbtn_openinbox      = checkbtn_openinbox;
        interface.checkbtn_immedexec      = checkbtn_immedexec;
        interface.checkbtn_addaddrbyclick = checkbtn_addaddrbyclick;
+       interface.recvdialog_optmenu      = recvdialog_optmenu;
        interface.checkbtn_confonexit     = checkbtn_confonexit;
        interface.checkbtn_cleanonexit    = checkbtn_cleanonexit;
        interface.checkbtn_askonclean     = checkbtn_askonclean;
        interface.checkbtn_warnqueued     = checkbtn_warnqueued;
-       interface.checkbtn_returnreceipt  = checkbtn_returnreceipt;
-       interface.checkbtn_retrievedialog = checkbtn_retrievedialog;
 }
 
 static void prefs_other_create(void)
@@ -1929,6 +2072,7 @@ static void prefs_other_create(void)
        gtk_box_pack_start (GTK_BOX (hbox1), uri_combo, TRUE, TRUE, 0);
        gtkut_combo_set_items (GTK_COMBO (uri_combo),
                               "netscape -remote 'openURL(%s,raise)'",
+                              "netscape '%s'",
                               "gnome-moz-remote --raise --newwin '%s'",
                               "kterm -e w3m '%s'",
                               "kterm -e lynx '%s'",
@@ -1985,12 +2129,279 @@ static void prefs_other_create(void)
        other.exteditor_entry = exteditor_entry;
 }
 
+static void date_format_ok_btn_clicked(GtkButton *button, GtkWidget **widget)
+{
+       GtkWidget *datefmt_sample = NULL;
+       gchar *text;
+
+       g_return_if_fail(widget != NULL);
+       g_return_if_fail(*widget != NULL);
+       g_return_if_fail(display.entry_datefmt != NULL);
+
+       datefmt_sample = GTK_WIDGET(gtk_object_get_data
+                                   (GTK_OBJECT(*widget), "datefmt_sample"));
+       g_return_if_fail(datefmt_sample != NULL);
+
+       text = gtk_editable_get_chars(GTK_EDITABLE(datefmt_sample), 0, -1);
+       g_free(prefs_common.date_format);
+       prefs_common.date_format = text;
+       gtk_entry_set_text(GTK_ENTRY(display.entry_datefmt), text);
+
+       gtk_widget_destroy(*widget);
+       *widget = NULL;
+}
+
+static void date_format_cancel_btn_clicked(GtkButton *button,
+                                          GtkWidget **widget)
+{
+       g_return_if_fail(widget != NULL);
+       g_return_if_fail(*widget != NULL);
+
+       gtk_widget_destroy(*widget);
+       *widget = NULL;
+}
+
+static void date_format_key_pressed(GtkWidget *keywidget, GdkEventKey *event,
+                                   GtkWidget **widget)
+{
+       if (event && event->keyval == GDK_Escape)
+               date_format_cancel_btn_clicked(NULL, widget);
+}
+
+static gboolean date_format_on_delete(GtkWidget *dialogwidget,
+                                     GdkEventAny *event, GtkWidget **widget)
+{
+       g_return_val_if_fail(widget != NULL, FALSE);
+       g_return_val_if_fail(*widget != NULL, FALSE);
+
+       *widget = NULL;
+       return FALSE;
+}
+
+static void date_format_entry_on_change(GtkEditable *editable,
+                                       GtkLabel *example)
+{
+       time_t cur_time;
+       struct tm *cal_time;
+       gchar buffer[100];
+       gchar *text;
+
+       cur_time = time(NULL);
+       cal_time = localtime(&cur_time);
+       buffer[0] = 0;
+       text = gtk_editable_get_chars(editable, 0, -1);
+       if (text)
+               strftime(buffer, sizeof buffer, text, cal_time); 
+       gtk_label_set_text(example, buffer);
+}
+
+static void date_format_select_row(GtkWidget *date_format_list, gint row,
+                                  gint column, GdkEventButton *event,
+                                  GtkWidget *date_format)
+{
+       gint cur_pos;
+       gchar *format;
+       gchar *old_format;
+       gchar *new_format;
+       GtkWidget *datefmt_sample;
+
+       /* only on double click */
+       if (!event ||event->type != GDK_2BUTTON_PRESS) return;
+
+       datefmt_sample = GTK_WIDGET(gtk_object_get_data
+                                   (GTK_OBJECT(date_format), "datefmt_sample"));
+
+       g_return_if_fail(date_format_list != NULL);
+       g_return_if_fail(date_format != NULL);
+       g_return_if_fail(datefmt_sample != NULL);
+
+       /* get format from clist */
+       gtk_clist_get_text(GTK_CLIST(date_format_list), row, 0, &format);
+
+       cur_pos = gtk_editable_get_position(GTK_EDITABLE(datefmt_sample));
+       old_format = gtk_entry_get_text(GTK_ENTRY(datefmt_sample));
+
+       /* insert the format into the text entry */
+       new_format = g_malloc(strlen(old_format) + 3);
+
+       strncpy(new_format, old_format, cur_pos);
+       new_format[cur_pos] = '\0';
+       strcat(new_format, format);
+       strcat(new_format, &old_format[cur_pos]);
+
+       gtk_entry_set_text(GTK_ENTRY(datefmt_sample), new_format);
+       gtk_editable_set_position(GTK_EDITABLE(datefmt_sample), cur_pos + 2);
+
+       g_free(new_format);
+}
+
+static GtkWidget *date_format_create(GtkButton *button, void *data)
+{
+       static GtkWidget *datefmt_win = NULL;
+       GtkWidget *vbox1;
+       GtkWidget *scrolledwindow1;
+       GtkWidget *datefmt_clist;
+       GtkWidget *table;
+       GtkWidget *label1;
+       GtkWidget *label2;
+       GtkWidget *label3;
+       GtkWidget *confirm_area;
+       GtkWidget *ok_btn;
+       GtkWidget *cancel_btn;
+       GtkWidget *datefmt_entry;
+
+       const struct {
+               gchar *fmt;
+               gchar *txt;
+       } time_format[] = {
+               { "%a", _("the full abbreviated weekday name") },
+               { "%A", _("the full weekday name") },
+               { "%b", _("the abbreviated month name") },
+               { "%B", _("the full month name") },
+               { "%c", _("the preferred date and time for the current locale") },
+               { "%C", _("the century number (year/100)") },
+               { "%d", _("the day of the month as a decimal number") },
+               { "%H", _("the hour as a decimal number using a 24-hour clock") },
+               { "%I", _("the hour as a decimal number using a 12-hour clock") },
+               { "%j", _("the day of the year as a decimal number") },
+               { "%m", _("the month as a decimal number") },
+               { "%M", _("the minute as a decimal number") },
+               { "%p", _("either AM or PM") },
+               { "%S", _("the second as a decimal number") },
+               { "%w", _("the day of the week as a decimal number") },
+               { "%x", _("the preferred date for the current locale") },
+               { "%y", _("the last two digits of a year") },
+               { "%Y", _("the year as a decimal number") },
+               { "%Z", _("the time zone or name or abbreviation") }
+       };
+
+       gchar *titles[2];
+       gint i;
+       const gint TIME_FORMAT_ELEMS =
+               sizeof time_format / sizeof time_format[0];
+
+       if (datefmt_win) return datefmt_win;
+
+       datefmt_win = gtk_window_new(GTK_WINDOW_DIALOG);
+       gtk_container_set_border_width(GTK_CONTAINER(datefmt_win), 8);
+       gtk_window_set_title(GTK_WINDOW(datefmt_win), _("Date format"));
+       gtk_window_set_position(GTK_WINDOW(datefmt_win), GTK_WIN_POS_CENTER);
+       gtk_widget_set_usize(datefmt_win, 440, 280);
+
+       vbox1 = gtk_vbox_new(FALSE, 10);
+       gtk_widget_show(vbox1);
+       gtk_container_add(GTK_CONTAINER(datefmt_win), vbox1);
+
+       scrolledwindow1 = gtk_scrolled_window_new(NULL, NULL);
+       gtk_scrolled_window_set_policy
+               (GTK_SCROLLED_WINDOW(scrolledwindow1),
+                GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
+       gtk_widget_show(scrolledwindow1);
+       gtk_box_pack_start(GTK_BOX(vbox1), scrolledwindow1, TRUE, TRUE, 0);
+
+       titles[0] = _("Specifier");
+       titles[1] = _("Description");
+       datefmt_clist = gtk_clist_new_with_titles(2, titles);
+       gtk_widget_show(datefmt_clist);
+       gtk_container_add(GTK_CONTAINER(scrolledwindow1), datefmt_clist);
+/*     gtk_clist_set_column_width(GTK_CLIST(datefmt_clist), 0, 80);   */
+       gtk_clist_set_selection_mode(GTK_CLIST(datefmt_clist),
+                                    GTK_SELECTION_BROWSE);
+
+       for (i = 0; i < TIME_FORMAT_ELEMS; i++) {
+               gchar *text[2];
+               /* phoney casting necessary because of gtk... */
+               text[0] = (gchar *)time_format[i].fmt;
+               text[1] = (gchar *)time_format[i].txt;
+               gtk_clist_append(GTK_CLIST(datefmt_clist), text);
+       }
+
+       table = gtk_table_new(2, 2, FALSE);
+       gtk_widget_show(table);
+       gtk_box_pack_start(GTK_BOX(vbox1), table, FALSE, FALSE, 0);
+       gtk_table_set_row_spacings(GTK_TABLE(table), 4);
+       gtk_table_set_col_spacings(GTK_TABLE(table), 8);
+
+       label1 = gtk_label_new(_("Date format"));
+       gtk_widget_show(label1);
+       gtk_table_attach(GTK_TABLE(table), label1, 0, 1, 0, 1,
+                        GTK_FILL, 0, 0, 0);
+       gtk_label_set_justify(GTK_LABEL(label1), GTK_JUSTIFY_LEFT);
+       gtk_misc_set_alignment(GTK_MISC(label1), 0, 0.5);
+
+       datefmt_entry = gtk_entry_new_with_max_length(256);
+       gtk_widget_show(datefmt_entry);
+       gtk_table_attach(GTK_TABLE(table), datefmt_entry, 1, 2, 0, 1,
+                        (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+
+       /* we need the "sample" entry box; add it as data so callbacks can
+        * get the entry box */
+       gtk_object_set_data(GTK_OBJECT(datefmt_win), "datefmt_sample",
+                           datefmt_entry);
+
+       label2 = gtk_label_new(_("Example"));
+       gtk_widget_show(label2);
+       gtk_table_attach(GTK_TABLE(table), label2, 0, 1, 1, 2,
+                        GTK_FILL, 0, 0, 0);
+       gtk_label_set_justify(GTK_LABEL(label2), GTK_JUSTIFY_LEFT);
+       gtk_misc_set_alignment(GTK_MISC(label2), 0, 0.5);
+
+       label3 = gtk_label_new("");
+       gtk_widget_show(label3);
+       gtk_table_attach(GTK_TABLE(table), label3, 1, 2, 1, 2,
+                        (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+       gtk_label_set_justify(GTK_LABEL(label3), GTK_JUSTIFY_LEFT);
+       gtk_misc_set_alignment(GTK_MISC(label3), 0, 0.5);
+
+       gtkut_button_set_create(&confirm_area, &ok_btn, _("OK"),
+                               &cancel_btn, _("Cancel"), NULL, NULL);
+       gtk_widget_grab_default(ok_btn);
+       gtk_widget_show(confirm_area);
+
+       gtk_box_pack_start(GTK_BOX(vbox1), confirm_area, FALSE, FALSE, 0);
+
+       /* set the current format */
+       gtk_entry_set_text(GTK_ENTRY(datefmt_entry), prefs_common.date_format);
+       date_format_entry_on_change(GTK_EDITABLE(datefmt_entry),
+                                   GTK_LABEL(label3));
+
+       gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
+                          GTK_SIGNAL_FUNC(date_format_ok_btn_clicked),
+                          &datefmt_win);
+       gtk_signal_connect(GTK_OBJECT(cancel_btn), "clicked",
+                          GTK_SIGNAL_FUNC(date_format_cancel_btn_clicked),
+                          &datefmt_win);
+       gtk_signal_connect(GTK_OBJECT(datefmt_win), "key_press_event",
+                          GTK_SIGNAL_FUNC(date_format_key_pressed),
+                          &datefmt_win);
+       gtk_signal_connect(GTK_OBJECT(datefmt_win), "delete_event",
+                          GTK_SIGNAL_FUNC(date_format_on_delete),
+                          &datefmt_win);
+       gtk_signal_connect(GTK_OBJECT(datefmt_entry), "changed",
+                          GTK_SIGNAL_FUNC(date_format_entry_on_change),
+                          label3);
+
+       gtk_signal_connect(GTK_OBJECT(datefmt_clist), "select_row",
+                          GTK_SIGNAL_FUNC(date_format_select_row),
+                          datefmt_win);
+
+       gtk_window_set_position(GTK_WINDOW(datefmt_win), GTK_WIN_POS_CENTER);
+       gtk_window_set_modal(GTK_WINDOW(datefmt_win), TRUE);
+
+       gtk_widget_show(datefmt_win);
+       manage_window_set_transient(GTK_WINDOW(datefmt_win));
+
+       gtk_widget_grab_focus(ok_btn);
+
+       return datefmt_win;
+}
+
 void prefs_quote_colors_dialog(void)
 {
        if (!quote_color_win)
                prefs_quote_colors_dialog_create();
        gtk_widget_show(quote_color_win);
-       manage_window_set_transient(GTK_WINDOW(dialog.window));
+       manage_window_set_transient(GTK_WINDOW(quote_color_win));
 
        gtk_main();
        gtk_widget_hide(quote_color_win);
@@ -2008,6 +2419,7 @@ static void prefs_quote_colors_dialog_create(void)
        GtkWidget *quotelevel2_label;
        GtkWidget *quotelevel3_label;
        GtkWidget *uri_label;
+       GtkWidget *tgt_folder_label;
        GtkWidget *hbbox;
        GtkWidget *ok_btn;
        //GtkWidget *cancel_btn;
@@ -2030,7 +2442,7 @@ static void prefs_quote_colors_dialog_create(void)
        gtk_container_add (GTK_CONTAINER (frame_colors), table);
        gtk_container_set_border_width (GTK_CONTAINER (table), 8);
        gtk_table_set_row_spacings (GTK_TABLE (table), 2);
-       gtk_table_set_col_spacings (GTK_TABLE (table), 4);
+       gtk_table_set_col_spacings (GTK_TABLE (table), 5);
 
        color_buttons.quote_level1_btn = gtk_button_new();
        gtk_table_attach (GTK_TABLE (table), color_buttons.quote_level1_btn,
@@ -2051,13 +2463,19 @@ static void prefs_quote_colors_dialog_create(void)
        gtk_widget_set_usize (color_buttons.quote_level3_btn, 40, 30);
        gtk_container_set_border_width
                (GTK_CONTAINER (color_buttons.quote_level3_btn), 5);
-               
+
        color_buttons.uri_btn = gtk_button_new_with_label ("");
        gtk_table_attach (GTK_TABLE (table), color_buttons.uri_btn,
                          0, 1, 3, 4, 0, 0, 0, 0);
        gtk_widget_set_usize (color_buttons.uri_btn, 40, 30);
        gtk_container_set_border_width (GTK_CONTAINER (color_buttons.uri_btn), 5);
 
+       color_buttons.tgt_folder_btn = gtk_button_new_with_label ("");
+       gtk_table_attach (GTK_TABLE (table), color_buttons.tgt_folder_btn,
+                         0, 1, 4, 5, 0, 0, 0, 0);
+       gtk_widget_set_usize (color_buttons.tgt_folder_btn, 40, 30);
+       gtk_container_set_border_width (GTK_CONTAINER (color_buttons.tgt_folder_btn), 5);
+
        quotelevel1_label = gtk_label_new (_("Quoted Text - First Level"));
        gtk_table_attach (GTK_TABLE (table), quotelevel1_label, 1, 2, 0, 1,
                          (GTK_EXPAND | GTK_FILL), 0, 0, 0);
@@ -2082,6 +2500,12 @@ static void prefs_quote_colors_dialog_create(void)
        gtk_label_set_justify (GTK_LABEL (uri_label), GTK_JUSTIFY_LEFT);
        gtk_misc_set_alignment (GTK_MISC (uri_label), 0, 0.5);
 
+       tgt_folder_label = gtk_label_new (_("Target folder"));
+       gtk_table_attach (GTK_TABLE (table), tgt_folder_label, 1, 2, 4, 5,
+                         (GTK_EXPAND | GTK_FILL), 0, 0, 0);
+       gtk_label_set_justify (GTK_LABEL (tgt_folder_label), GTK_JUSTIFY_LEFT);
+       gtk_misc_set_alignment (GTK_MISC (tgt_folder_label), 0, 0.5);
+
        PACK_CHECK_BUTTON (vbox, recycle_colors_btn,
                           _("Recycle quote colors"));
 
@@ -2108,6 +2532,8 @@ static void prefs_quote_colors_dialog_create(void)
                           GTK_SIGNAL_FUNC(quote_color_set_dialog), "LEVEL3");
        gtk_signal_connect(GTK_OBJECT(color_buttons.uri_btn), "clicked",
                           GTK_SIGNAL_FUNC(quote_color_set_dialog), "URI");
+       gtk_signal_connect(GTK_OBJECT(color_buttons.tgt_folder_btn), "clicked",
+                          GTK_SIGNAL_FUNC(quote_color_set_dialog), "TGTFLD");
        gtk_signal_connect(GTK_OBJECT(recycle_colors_btn), "toggled",
                           GTK_SIGNAL_FUNC(prefs_recycle_colors_toggled), NULL);
        gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
@@ -2122,6 +2548,8 @@ static void prefs_quote_colors_dialog_create(void)
                            prefs_common.quote_level3_col);
        set_button_bg_color(color_buttons.uri_btn,
                            prefs_common.uri_col);
+       set_button_bg_color(color_buttons.tgt_folder_btn,
+                           prefs_common.tgt_folder_col);
        gtk_toggle_button_set_active((GtkToggleButton *)recycle_colors_btn,
                                     prefs_common.recycle_quote_colors);
 
@@ -2156,6 +2584,9 @@ static void quote_color_set_dialog(GtkWidget *widget, gpointer data)
        } else if(g_strcasecmp(type, "URI") == 0) {
                title = _("Pick color for URI");
                rgbvalue = prefs_common.uri_col;
+       } else if(g_strcasecmp(type, "TGTFLD") == 0) {
+               title = _("Pick color for target folder");
+               rgbvalue = prefs_common.tgt_folder_col;
        } else {   /* Should never be called */
                g_warning("Unrecognized datatype '%s' in quote_color_set_dialog\n", type);
                return;
@@ -2219,6 +2650,10 @@ static void quote_colors_set_dialog_ok(GtkWidget *widget, gpointer data)
        } else if (g_strcasecmp(type, "URI") == 0) {
                prefs_common.uri_col = rgbvalue;
                set_button_bg_color(color_buttons.uri_btn, rgbvalue);
+       } else if (g_strcasecmp(type, "TGTFLD") == 0) {
+               prefs_common.tgt_folder_col = rgbvalue;
+               set_button_bg_color(color_buttons.tgt_folder_btn, rgbvalue);
+               folderview_set_target_folder_color(prefs_common.tgt_folder_col);
        } else
                fprintf( stderr, "Unrecognized datatype '%s' in quote_color_set_dialog_ok\n", type );
 
@@ -2302,28 +2737,52 @@ static void prefs_quote_description_create(void)
        gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
 
        label = gtk_label_new
-               ("%d:\n"
-                "%f:\n"
-                "%n:\n"
-                "%N:\n"
-                "%I:\n"
-                "%s:\n"
-                "%t:\n"
-                "%i:\n"
-                "%%:");
+               ("SYMBOL\n\n"
+                 "%d\n"                /* date */
+                "%f\n"         /* from */
+                "%N\n"         /* full name */
+                "%F\n"         /* first name */
+                "%I\n"         /* sender's initial */
+                "%s\n"         /* subject line */
+                "%t\n"         /* to */
+                "%c\n"         /* cc */
+                "%n\n"         /* newsgroups */
+                "%i\n"         /* message id */
+                "%r\n"         /* references */
+                "\n"
+                "%x\n"
+                "?x(expr)\n"
+                "\n"
+                "%M\n"
+                "%Q\n"
+                "%m\n"
+                "%q\n"
+                "%%");
 
        gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
        gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
 
        label = gtk_label_new
-               (_("Date\n"
+               (_("DESCRIPTION\n\n"
+                   "Date\n"
                   "From\n"
                   "Full Name of Sender\n"
                   "First Name of Sender\n"
                   "Initial of Sender\n"
                   "Subject\n"
                   "To\n"
+                  "Cc\n"
+                  "Newsgroups\n"
                   "Message-ID\n"
+                  "References\n"
+                  "\n"
+                  "Display the information\n"
+                  "If the information x is set, displays expr\n"
+                  "\n"
+                  "Message body\n"
+                  "Quoted message body\n"
+                  "Message body without signature\n"
+                  "Quoted message body without signature\n"
                   "%"));
 
        gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
@@ -2495,8 +2954,12 @@ static void display_item_key_pressed(GtkWidget *widget, GdkEventKey *event,
        }
 }
 
-static void prefs_font_select(GtkButton *button)
+static void prefs_font_select(GtkButton *button, GtkEntry *entry)
 {
+       gchar *font_name;
+       
+       g_return_if_fail(entry != NULL);
+       
        if (!font_sel_win) {
                font_sel_win = gtk_font_selection_dialog_new
                        (_("Font selection"));
@@ -2509,11 +2972,6 @@ static void prefs_font_select(GtkButton *button)
                        (GTK_OBJECT(font_sel_win), "key_press_event",
                         GTK_SIGNAL_FUNC(prefs_font_selection_key_pressed),
                         NULL);
-               gtk_signal_connect
-                       (GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(font_sel_win)->ok_button),
-                        "clicked",
-                        GTK_SIGNAL_FUNC(prefs_font_selection_ok),
-                        NULL);
                gtk_signal_connect_object
                        (GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(font_sel_win)->cancel_button),
                         "clicked",
@@ -2521,6 +2979,19 @@ static void prefs_font_select(GtkButton *button)
                         GTK_OBJECT(font_sel_win));
        }
 
+       if(font_sel_conn_id) {
+               gtk_signal_disconnect(GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(font_sel_win)->ok_button), font_sel_conn_id);
+       }
+       font_sel_conn_id = gtk_signal_connect
+               (GTK_OBJECT(GTK_FONT_SELECTION_DIALOG(font_sel_win)->ok_button),
+                "clicked",
+                GTK_SIGNAL_FUNC(prefs_font_selection_ok),
+                entry);
+       printf("%i\n", font_sel_conn_id);
+
+       font_name = gtk_editable_get_chars(GTK_EDITABLE(entry), 0, -1);
+       gtk_font_selection_dialog_set_font_name(GTK_FONT_SELECTION_DIALOG(font_sel_win), font_name);
+       g_free(font_name);
        manage_window_set_transient(GTK_WINDOW(font_sel_win));
        gtk_window_set_modal(GTK_WINDOW(font_sel_win), TRUE);
        gtk_widget_grab_focus
@@ -2536,7 +3007,7 @@ static void prefs_font_selection_key_pressed(GtkWidget *widget,
                gtk_widget_hide(font_sel_win);
 }
 
-static void prefs_font_selection_ok(GtkButton *button)
+static void prefs_font_selection_ok(GtkButton *button, GtkEntry *entry)
 {
        gchar *fontname;
 
@@ -2544,7 +3015,7 @@ static void prefs_font_selection_ok(GtkButton *button)
                (GTK_FONT_SELECTION_DIALOG(font_sel_win));
 
        if (fontname) {
-               gtk_entry_set_text(GTK_ENTRY(display.entry_textfont), fontname);
+               gtk_entry_set_text(entry, fontname);
                g_free(fontname);
        }
 
@@ -2603,7 +3074,7 @@ static void prefs_common_key_pressed(GtkWidget *widget, GdkEventKey *event,
                                     gpointer data)
 {
        if (event && event->keyval == GDK_Escape)
-               prefs_common_cancel();  
+               prefs_common_cancel();
 }
 
 static void prefs_common_ok(void)
@@ -2628,3 +3099,223 @@ static void prefs_common_cancel(void)
        gtk_widget_hide(dialog.window);
        inc_autocheck_timer_set();
 }
+
+
+static struct _ComposePrefs
+{
+       GtkWidget *window;
+
+       GtkWidget *close_btn;
+} composeprefs;
+
+static void compose_prefs_key_pressed(GtkWidget *widget, GdkEventKey *event);
+static gint compose_prefs_delete_event(GtkWidget *widget, GdkEventAny *event);
+static void compose_prefs_close(GtkWidget *widget);
+static void compose_prefs_fmt_create(void);
+
+static void compose_prefs_fmt_open(void)
+{
+       if (composeprefs.window == NULL)
+               compose_prefs_fmt_create();
+       gtk_widget_show(composeprefs.window);
+}
+
+
+static void compose_prefs_fmt_create(void)
+{
+       GtkWidget *window;
+       GtkWidget *close_btn;
+
+       GtkWidget *frame_quote;
+       GtkWidget *vbox_quote;
+       GtkWidget *hbox1;
+       GtkWidget *checkbtn_quote;
+       GtkWidget *label_quotemark;
+       GtkWidget *entry_quotemark;
+       GtkWidget *scrolledwin_quotefmt;
+       GtkWidget *text_quotefmt;
+       GtkWidget *label_quotefmt;
+       GtkWidget *btn_quotedesc;
+
+       GtkWidget *label_fw_quotemark;
+       GtkWidget *entry_fw_quotemark;
+       GtkWidget *label_fw_quotefmt;
+       GtkWidget *text_fw_quotefmt;
+
+       window = gtk_window_new(GTK_WINDOW_DIALOG);
+       gtk_container_set_border_width(GTK_CONTAINER(window), 8);
+       gtk_window_set_title(GTK_WINDOW(window), _("Compose Preferences"));
+       gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
+       gtk_window_set_modal(GTK_WINDOW(window), TRUE);
+       gtk_window_set_policy(GTK_WINDOW(window), FALSE, FALSE, FALSE);
+       gtk_signal_connect(GTK_OBJECT(window), "delete_event",
+                          GTK_SIGNAL_FUNC(compose_prefs_delete_event),
+                          NULL);
+       gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
+                          GTK_SIGNAL_FUNC(compose_prefs_key_pressed),
+                          NULL);
+
+       vbox_quote = gtk_vbox_new(FALSE, 8);
+       gtk_container_add(GTK_CONTAINER(window), vbox_quote);
+
+       PACK_CHECK_BUTTON (vbox_quote, checkbtn_quote,
+                          _("Quote message when replying"));
+
+       hbox1 = gtk_hbox_new (FALSE, 8);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), hbox1, TRUE, TRUE, 0);
+
+       label_quotemark = gtk_label_new (_("Quotation mark"));
+       gtk_widget_show (label_quotemark);
+       gtk_box_pack_start (GTK_BOX (hbox1), label_quotemark, FALSE, FALSE, 0);
+
+       entry_quotemark = gtk_entry_new ();
+       gtk_widget_show (entry_quotemark);
+       gtk_box_pack_start (GTK_BOX (hbox1), entry_quotemark, FALSE, FALSE, 0);
+       gtk_widget_set_usize (entry_quotemark, 64, -1);
+
+       hbox1 = gtk_hbox_new (FALSE, 0);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), hbox1, TRUE, TRUE, 0);
+
+       label_quotefmt = gtk_label_new (_("Quotation format:"));
+       gtk_widget_show (label_quotefmt);
+       gtk_box_pack_start (GTK_BOX (hbox1), label_quotefmt, FALSE, FALSE, 0);
+
+       scrolledwin_quotefmt = gtk_scrolled_window_new (NULL, NULL);
+       gtk_widget_show (scrolledwin_quotefmt);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), scrolledwin_quotefmt, TRUE, TRUE, 0);
+       gtk_scrolled_window_set_policy
+               (GTK_SCROLLED_WINDOW (scrolledwin_quotefmt),
+                GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
+
+       text_quotefmt = gtk_text_new (NULL, NULL);
+       gtk_widget_show (text_quotefmt);
+       gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt), text_quotefmt);
+       gtk_text_set_editable (GTK_TEXT (text_quotefmt), TRUE);
+       gtk_widget_set_usize(text_quotefmt, 400, 60);
+
+       hbox1 = gtk_hbox_new (FALSE, 8);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), hbox1, TRUE, TRUE, 0);
+
+       label_fw_quotemark = gtk_label_new (_("Forward quotation mark"));
+       gtk_widget_show (label_fw_quotemark);
+       gtk_box_pack_start (GTK_BOX (hbox1), label_fw_quotemark, FALSE, FALSE, 0);
+
+       entry_fw_quotemark = gtk_entry_new ();
+       gtk_widget_show (entry_fw_quotemark);
+       gtk_box_pack_start (GTK_BOX (hbox1), entry_fw_quotemark, FALSE, FALSE, 0);
+       gtk_widget_set_usize (entry_fw_quotemark, 64, -1);
+
+       hbox1 = gtk_hbox_new (FALSE, 0);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), hbox1, TRUE, TRUE, 0);
+
+       label_fw_quotefmt = gtk_label_new (_("Forward format:"));
+       gtk_widget_show (label_fw_quotefmt);
+       gtk_box_pack_start (GTK_BOX (hbox1), label_fw_quotefmt, FALSE, FALSE, 0);
+
+       scrolledwin_quotefmt = gtk_scrolled_window_new (NULL, NULL);
+       gtk_widget_show (scrolledwin_quotefmt);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), scrolledwin_quotefmt, TRUE, TRUE, 0);
+       gtk_scrolled_window_set_policy
+               (GTK_SCROLLED_WINDOW (scrolledwin_quotefmt),
+                GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
+
+       text_fw_quotefmt = gtk_text_new (NULL, NULL);
+       gtk_widget_show (text_fw_quotefmt);
+       gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt), text_fw_quotefmt);
+       gtk_text_set_editable (GTK_TEXT (text_fw_quotefmt), TRUE);
+       gtk_widget_set_usize(text_fw_quotefmt, 400, 60);
+
+       hbox1 = gtk_hbox_new (FALSE, 0);
+       gtk_widget_show (hbox1);
+       gtk_box_pack_start (GTK_BOX (vbox_quote), hbox1, FALSE, FALSE, 0);
+
+       btn_quotedesc =
+               gtk_button_new_with_label (_(" Description of symbols "));
+       gtk_widget_show (btn_quotedesc);
+       gtk_box_pack_start (GTK_BOX (hbox1), btn_quotedesc,
+                           FALSE, FALSE, 0);
+
+       gtk_signal_connect(GTK_OBJECT(btn_quotedesc), "clicked",
+                          GTK_SIGNAL_FUNC(prefs_quote_description), NULL);
+
+
+       gtkut_button_set_create(&hbox1, &close_btn, _("Close"),
+                               NULL, NULL, NULL, NULL);
+       gtk_box_pack_end(GTK_BOX(vbox_quote), hbox1, FALSE, FALSE, 0);
+       gtk_widget_grab_default(close_btn);
+
+       gtk_signal_connect(GTK_OBJECT(close_btn), "clicked",
+                          GTK_SIGNAL_FUNC(compose_prefs_close), NULL);
+
+       gtk_widget_show_all(vbox_quote);
+
+       composeprefs.window = window;
+       composeprefs.close_btn = close_btn;
+
+       compose.checkbtn_quote = checkbtn_quote;
+       compose.entry_quotemark = entry_quotemark;
+       compose.text_quotefmt = text_quotefmt;
+       compose.entry_fw_quotemark = entry_fw_quotemark;
+       compose.text_fw_quotefmt = text_fw_quotefmt;
+}
+
+static void compose_prefs_close(GtkWidget *widget)
+{
+       gtk_widget_hide(composeprefs.window);
+}
+
+static gint compose_prefs_delete_event(GtkWidget *widget, GdkEventAny *event)
+{
+       gtk_widget_hide(composeprefs.window);
+
+       return TRUE;
+}
+
+static void compose_prefs_key_pressed(GtkWidget *widget, GdkEventKey *event)
+{
+       if (event && event->keyval == GDK_Escape) {
+               gtk_widget_hide(composeprefs.window);
+       }
+}
+
+static void prefs_recvdialog_set_data_from_optmenu(PrefParam *pparam)
+{
+       GtkWidget *menu;
+       GtkWidget *menuitem;
+
+       menu = gtk_option_menu_get_menu(GTK_OPTION_MENU(*pparam->widget));
+       menuitem = gtk_menu_get_active(GTK_MENU(menu));
+       *((RecvDialogShow *)pparam->data) = GPOINTER_TO_INT
+               (gtk_object_get_user_data(GTK_OBJECT(menuitem)));
+}
+
+static void prefs_recvdialog_set_optmenu(PrefParam *pparam)
+{
+       RecvDialogShow dialog_show;
+       GtkOptionMenu *optmenu = GTK_OPTION_MENU(*pparam->widget);
+       GtkWidget *menu;
+       GtkWidget *menuitem;
+
+       dialog_show = *((RecvDialogShow *)pparam->data);
+
+       switch (dialog_show) {
+       case RECVDIALOG_ALWAYS:
+               gtk_option_menu_set_history(optmenu, 0);
+               break;
+       case RECVDIALOG_WINDOW_ACTIVE:
+               gtk_option_menu_set_history(optmenu, 1);
+               break;
+       case RECVDIALOG_NEVER:
+               gtk_option_menu_set_history(optmenu, 2);
+               break;
+       default:
+       }
+
+       menu = gtk_option_menu_get_menu(optmenu);
+       menuitem = gtk_menu_get_active(GTK_MENU(menu));
+       gtk_menu_item_activate(GTK_MENU_ITEM(menuitem));
+}