2007-10-17 [wwp] 3.0.2cvs79
[claws.git] / src / compose.c
index a0f14802a7a2a55a0d3643246032444172c84e03..7866bbdf38a8ad488bf6888fa8e3ed7723d74261 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2007 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
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
@@ -13,8 +13,8 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifdef HAVE_CONFIG_H
@@ -81,7 +81,7 @@
 #  include <wctype.h>
 #endif
 
-#include "sylpheed.h"
+#include "claws.h"
 #include "main.h"
 #include "mainwindow.h"
 #include "compose.h"
 #include "inc.h"
 #include "message_search.h"
 #include "combobox.h"
+#include "hooks.h"
+#include "privacy.h"
+#include "timing.h"
 
 enum
 {
@@ -170,19 +173,19 @@ typedef enum
        COMPOSE_INSERT_NO_FILE
 } ComposeInsertResult;
 
-typedef enum
-{
-       COMPOSE_QUIT_EDITING,
-       COMPOSE_KEEP_EDITING,
-       COMPOSE_AUTO_SAVE
-} ComposeDraftAction;
-
 typedef enum
 {
        COMPOSE_WRITE_FOR_SEND,
        COMPOSE_WRITE_FOR_STORE
 } ComposeWriteType;
 
+typedef enum
+{
+       COMPOSE_QUOTE_FORCED,
+       COMPOSE_QUOTE_CHECK,
+       COMPOSE_QUOTE_SKIP
+} ComposeQuoteMode;
+
 #define B64_LINE_SIZE          57
 #define B64_BUFFSIZE           77
 
@@ -190,16 +193,38 @@ typedef enum
 
 static GList *compose_list = NULL;
 
-Compose *compose_generic_new                   (PrefsAccount   *account,
+static Compose *compose_generic_new                    (PrefsAccount   *account,
                                                 const gchar    *to,
                                                 FolderItem     *item,
                                                 GPtrArray      *attach_files,
                                                 GList          *listAddress );
 
 static Compose *compose_create                 (PrefsAccount   *account,
+                                                FolderItem              *item,
                                                 ComposeMode     mode,
                                                 gboolean batch);
 
+static void compose_entry_mark_default_to      (Compose          *compose,
+                                        const gchar      *address);
+static Compose *compose_followup_and_reply_to  (MsgInfo        *msginfo,
+                                        ComposeQuoteMode        quote_mode,
+                                        gboolean        to_all,
+                                        gboolean        to_sender,
+                                        const gchar    *body);
+static Compose *compose_forward_multiple       (PrefsAccount   *account, 
+                                        GSList         *msginfo_list);
+static Compose *compose_reply                  (MsgInfo        *msginfo,
+                                        ComposeQuoteMode        quote_mode,
+                                        gboolean        to_all,
+                                        gboolean        to_ml,
+                                        gboolean        to_sender,
+                                        const gchar    *body);
+static Compose *compose_reply_mode             (ComposeMode     mode, 
+                                        GSList         *msginfo_list, 
+                                        gchar          *body);
+static void compose_template_apply_fields(Compose *compose, Template *tmpl);
+static void compose_update_privacy_systems_menu(Compose        *compose);
+
 static GtkWidget *compose_account_option_menu_create
                                                (Compose        *compose);
 static void compose_set_out_encoding           (Compose        *compose);
@@ -222,6 +247,7 @@ static gchar *compose_quote_fmt                     (Compose        *compose,
                                                 const gchar    *qmark,
                                                 const gchar    *body,
                                                 gboolean        rewrap,
+                                                gboolean        need_unescape,
                                                 const gchar *err_msg);
 
 static void compose_reply_set_entry            (Compose        *compose,
@@ -247,7 +273,7 @@ static gboolean compose_attach_append               (Compose        *compose,
 static void compose_attach_parts               (Compose        *compose,
                                                 MsgInfo        *msginfo);
 
-static void compose_beautify_paragraph         (Compose        *compose,
+static gboolean compose_beautify_paragraph     (Compose        *compose,
                                                 GtkTextIter    *par_iter,
                                                 gboolean        force);
 static void compose_wrap_all                   (Compose        *compose);
@@ -264,7 +290,7 @@ static PrefsAccount *compose_current_mail_account(void);
 static gboolean compose_check_for_valid_recipient
                                                (Compose        *compose);
 static gboolean compose_check_entries          (Compose        *compose,
-                                                gboolean       check_subject);
+                                                gboolean       check_everything);
 static gint compose_write_to_file              (Compose        *compose,
                                                 FILE           *fp,
                                                 gint            action,
@@ -273,7 +299,7 @@ static gint compose_write_body_to_file              (Compose        *compose,
                                                 const gchar    *file);
 static gint compose_remove_reedit_target       (Compose        *compose,
                                                 gboolean        force);
-void compose_remove_draft                      (Compose        *compose);
+static void compose_remove_draft                       (Compose        *compose);
 static gint compose_queue_sub                  (Compose        *compose,
                                                 gint           *msgnum,
                                                 FolderItem     **item,
@@ -324,7 +350,7 @@ static void compose_undo_state_changed              (UndoMain       *undostruct,
                                                 gpointer        data);
 
 static void compose_create_header_entry        (Compose *compose);
-static void compose_add_header_entry   (Compose *compose, gchar *header, gchar *text);
+static void compose_add_header_entry   (Compose *compose, const gchar *header, gchar *text);
 static void compose_remove_header_entries(Compose *compose);
 
 static void compose_update_priority_menu_item(Compose * compose);
@@ -351,7 +377,6 @@ static gboolean attach_button_pressed       (GtkWidget      *widget,
 static gboolean attach_key_pressed     (GtkWidget      *widget,
                                         GdkEventKey    *event,
                                         gpointer        data);
-
 static void compose_send_cb            (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
@@ -449,7 +474,7 @@ static void compose_set_priority_cb (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
 static void compose_reply_change_mode  (gpointer        data,
-                                        guint           action,
+                                        ComposeMode    action,
                                         GtkWidget      *widget);
 
 static void compose_attach_drag_received_cb (GtkWidget         *widget,
@@ -487,15 +512,17 @@ static void text_inserted         (GtkTextBuffer  *buffer,
                                         const gchar    *text,
                                         gint            len,
                                         Compose        *compose);
-static Compose *compose_generic_reply(MsgInfo *msginfo, gboolean quote,
-                                 gboolean to_all, gboolean to_ml,
+static Compose *compose_generic_reply(MsgInfo *msginfo,
+                                 ComposeQuoteMode quote_mode,
+                                 gboolean to_all,
+                                 gboolean to_ml,
                                  gboolean to_sender,
                                  gboolean followup_and_reply_to,
                                  const gchar *body);
 
-gboolean compose_headerentry_changed_cb           (GtkWidget          *entry,
+static gboolean compose_headerentry_changed_cb    (GtkWidget          *entry,
                                            ComposeHeaderEntry *headerentry);
-gboolean compose_headerentry_key_press_event_cb(GtkWidget             *entry,
+static gboolean compose_headerentry_key_press_event_cb(GtkWidget              *entry,
                                            GdkEventKey        *event,
                                            ComposeHeaderEntry *headerentry);
 
@@ -515,18 +542,26 @@ static PrefsAccount *compose_guess_forward_account_from_msginfo   (MsgInfo *msginf
 
 static MsgInfo *compose_msginfo_new_from_compose(Compose *compose);
 
+#ifdef USE_ASPELL
+static void compose_set_dictionaries_from_folder_prefs(Compose *compose,
+                                               FolderItem *folder_item);
+#endif
+static void compose_attach_update_label(Compose *compose);
+
+static void compose_attach_from_list(Compose *compose, GList *file_list, gboolean free_data);
+
 static GtkItemFactoryEntry compose_popup_entries[] =
 {
        {N_("/_Add..."),        NULL, compose_attach_cb, 0, NULL},
        {N_("/_Remove"),        NULL, compose_attach_remove_selected, 0, NULL},
-       {N_("/---"),            NULL, NULL, 0, "<Separator>"},
+       {"/---",                NULL, NULL, 0, "<Separator>"},
        {N_("/_Properties..."), NULL, compose_attach_property, 0, NULL}
 };
 
 static GtkItemFactoryEntry compose_entries[] =
 {
        {N_("/_Message"),                               NULL, NULL, 0, "<Branch>"},
-       {N_("/_Message/_Send"),         "<control>Return",
+       {N_("/_Message/S_end"),         "<control>Return",
                                        compose_send_cb, 0, NULL},
        {N_("/_Message/Send _later"),   "<shift><control>S",
                                        compose_send_later_cb,  0, NULL},
@@ -690,81 +725,87 @@ static GtkItemFactoryEntry compose_entries[] =
                        NULL, compose_set_encoding_cb, C_AUTO, "<RadioItem>"},
        {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/7bit ascii (US-ASC_II)"),
+       {N_("/_Options/Character _encoding/7bit ASCII (US-ASC_II)"),
         ENC_ACTION(C_US_ASCII)},
        {N_("/_Options/Character _encoding/Unicode (_UTF-8)"),
         ENC_ACTION(C_UTF_8)},
        {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Western European (ISO-8859-_1)"),
+       {N_("/_Options/Character _encoding/Western European"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Western European/ISO-8859-_1"),
         ENC_ACTION(C_ISO_8859_1)},
-       {N_("/_Options/Character _encoding/Western European (ISO-8859-15)"),
+       {N_("/_Options/Character _encoding/Western European/ISO-8859-15"),
         ENC_ACTION(C_ISO_8859_15)},
-       {N_("/_Options/Character _encoding/Western European (Windows-1252)"),
+       {N_("/_Options/Character _encoding/Western European/Windows-1252"),
         ENC_ACTION(C_WINDOWS_1252)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
        {N_("/_Options/Character _encoding/Central European (ISO-8859-_2)"),
         ENC_ACTION(C_ISO_8859_2)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/_Baltic (ISO-8859-13)"),
+       {N_("/_Options/Character _encoding/Baltic"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Baltic/ISO-8859-13"),
         ENC_ACTION(C_ISO_8859_13)},
-       {N_("/_Options/Character _encoding/Baltic (ISO-8859-_4)"),
+       {N_("/_Options/Character _encoding/Baltic/ISO-8859-_4"),
         ENC_ACTION(C_ISO_8859_4)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
        {N_("/_Options/Character _encoding/Greek (ISO-8859-_7)"),
         ENC_ACTION(C_ISO_8859_7)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Hebrew (ISO-8859-_8)"),
+       {N_("/_Options/Character _encoding/Hebrew"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Hebrew/ISO-8859-_8"),
         ENC_ACTION(C_ISO_8859_8)},
-       {N_("/_Options/Character _encoding/Hebrew (Windows-1255)"),
+       {N_("/_Options/Character _encoding/Hebrew/Windows-1255"),
         ENC_ACTION(C_WINDOWS_1255)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Arabic (ISO-8859-_6)"),
+       {N_("/_Options/Character _encoding/Arabic"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Arabic/ISO-8859-_6"),
         ENC_ACTION(C_ISO_8859_6)},
-       {N_("/_Options/Character _encoding/Arabic (Windows-1256)"),
+       {N_("/_Options/Character _encoding/Arabic/Windows-1256"),
         ENC_ACTION(C_CP1256)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
        {N_("/_Options/Character _encoding/Turkish (ISO-8859-_9)"),
         ENC_ACTION(C_ISO_8859_9)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Cyrillic (ISO-8859-_5)"),
+       {N_("/_Options/Character _encoding/Cyrillic"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Cyrillic/ISO-8859-_5"),
         ENC_ACTION(C_ISO_8859_5)},
-       {N_("/_Options/Character _encoding/Cyrillic (KOI8-_R)"),
+       {N_("/_Options/Character _encoding/Cyrillic/KOI8-_R"),
         ENC_ACTION(C_KOI8_R)},
-       {N_("/_Options/Character _encoding/Cyrillic (KOI8-U)"),
+       {N_("/_Options/Character _encoding/Cyrillic/KOI8-U"),
         ENC_ACTION(C_KOI8_U)},
-       {N_("/_Options/Character _encoding/Cyrillic (Windows-1251)"),
+       {N_("/_Options/Character _encoding/Cyrillic/Windows-1251"),
         ENC_ACTION(C_WINDOWS_1251)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Japanese (ISO-2022-_JP)"),
+       {N_("/_Options/Character _encoding/Japanese"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Japanese/ISO-2022-_JP"),
         ENC_ACTION(C_ISO_2022_JP)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
-
-       {N_("/_Options/Character _encoding/Simplified Chinese (_GB2312)"),
+       {N_("/_Options/Character _encoding/Japanese/ISO-2022-JP-2"),
+        ENC_ACTION(C_ISO_2022_JP_2)},
+       {N_("/_Options/Character _encoding/Japanese/_EUC-JP"),
+        ENC_ACTION(C_EUC_JP)},
+       {N_("/_Options/Character _encoding/Japanese/_Shift__JIS"),
+        ENC_ACTION(C_SHIFT_JIS)},
+
+       {N_("/_Options/Character _encoding/Chinese"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Chinese/Simplified (_GB2312)"),
         ENC_ACTION(C_GB2312)},
-       {N_("/_Options/Character _encoding/Simplified Chinese (GBK)"),
+       {N_("/_Options/Character _encoding/Chinese/Simplified (GBK)"),
         ENC_ACTION(C_GBK)},
-       {N_("/_Options/Character _encoding/Traditional Chinese (_Big5)"),
+       {N_("/_Options/Character _encoding/Chinese/Traditional (_Big5)"),
         ENC_ACTION(C_BIG5)},
-       {N_("/_Options/Character _encoding/Traditional Chinese (EUC-_TW)"),
+       {N_("/_Options/Character _encoding/Chinese/Traditional (EUC-_TW)"),
         ENC_ACTION(C_EUC_TW)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
 
-       {N_("/_Options/Character _encoding/Korean (EUC-_KR)"),
+       {N_("/_Options/Character _encoding/Korean"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Korean/EUC-_KR"),
         ENC_ACTION(C_EUC_KR)},
-       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+       {N_("/_Options/Character _encoding/Korean/ISO-2022-KR"),
+        ENC_ACTION(C_ISO_2022_KR)},
 
-       {N_("/_Options/Character _encoding/Thai (TIS-620)"),
+       {N_("/_Options/Character _encoding/Thai"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/Thai/TIS-620"),
         ENC_ACTION(C_TIS_620)},
-       {N_("/_Options/Character _encoding/Thai (Windows-874)"),
+       {N_("/_Options/Character _encoding/Thai/Windows-874"),
         ENC_ACTION(C_WINDOWS_874)},
 
        {N_("/_Tools"),                 NULL, NULL, 0, "<Branch>"},
@@ -869,34 +910,35 @@ static void compose_create_tags(GtkTextView *text, Compose *compose)
        }
 
        if (prefs_common.enable_color && prefs_common.enable_bgcolor) {
-               gtk_text_buffer_create_tag(buffer, "quote0",
+               compose->quote0_tag = gtk_text_buffer_create_tag(buffer, "quote0",
                                           "foreground-gdk", &quote_color1,
                                           "paragraph-background-gdk", &quote_bgcolor1,
                                           NULL);
-               gtk_text_buffer_create_tag(buffer, "quote1",
+               compose->quote1_tag = gtk_text_buffer_create_tag(buffer, "quote1",
                                           "foreground-gdk", &quote_color2,
                                           "paragraph-background-gdk", &quote_bgcolor2,
                                           NULL);
-               gtk_text_buffer_create_tag(buffer, "quote2",
+               compose->quote2_tag = gtk_text_buffer_create_tag(buffer, "quote2",
                                           "foreground-gdk", &quote_color3,
                                           "paragraph-background-gdk", &quote_bgcolor3,
                                           NULL);
        } else {
-               gtk_text_buffer_create_tag(buffer, "quote0",
+               compose->quote0_tag = gtk_text_buffer_create_tag(buffer, "quote0",
                                           "foreground-gdk", &quote_color1,
                                           NULL);
-               gtk_text_buffer_create_tag(buffer, "quote1",
+               compose->quote1_tag = gtk_text_buffer_create_tag(buffer, "quote1",
                                           "foreground-gdk", &quote_color2,
                                           NULL);
-               gtk_text_buffer_create_tag(buffer, "quote2",
+               compose->quote2_tag = gtk_text_buffer_create_tag(buffer, "quote2",
                                           "foreground-gdk", &quote_color3,
                                           NULL);
        }
        
-       gtk_text_buffer_create_tag(buffer, "signature",
+       compose->signature_tag = gtk_text_buffer_create_tag(buffer, "signature",
                                   "foreground-gdk", &signature_color,
                                   NULL);
-       gtk_text_buffer_create_tag(buffer, "link",
+       
+       compose->uri_tag = gtk_text_buffer_create_tag(buffer, "link",
                                        "foreground-gdk", &uri_color,
                                         NULL);
        compose->no_wrap_tag = gtk_text_buffer_create_tag(buffer, "no_wrap", NULL);
@@ -942,6 +984,15 @@ Compose *compose_new_with_list( PrefsAccount *account, GList *listAddress )
        return compose_generic_new( account, NULL, NULL, NULL, listAddress );
 }
 
+#define SCROLL_TO_CURSOR(compose) {                            \
+       GtkTextMark *cmark = gtk_text_buffer_get_insert(        \
+               gtk_text_view_get_buffer(                       \
+                       GTK_TEXT_VIEW(compose->text)));         \
+       gtk_text_view_scroll_mark_onscreen(                     \
+               GTK_TEXT_VIEW(compose->text),                   \
+               cmark);                                         \
+}
+
 Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item,
                             GPtrArray *attach_files, GList *listAddress )
 {
@@ -950,6 +1001,8 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
        GtkTextBuffer *textbuf;
        GtkTextIter iter;
        GtkItemFactory *ifactory;
+       const gchar *subject_format = NULL;
+       const gchar *body_format = NULL;
 
        if (item && item->prefs && item->prefs->enable_default_account)
                account = account_find_from_id(item->prefs->default_account);
@@ -957,7 +1010,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
        if (!account) account = cur_account;
        g_return_val_if_fail(account != NULL, NULL);
 
-       compose = compose_create(account, COMPOSE_NEW, FALSE);
+       compose = compose_create(account, item, COMPOSE_NEW, FALSE);
 
        ifactory = gtk_item_factory_from_widget(compose->menubar);
 
@@ -970,11 +1023,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
 
        undo_block(compose->undostruct);
 #ifdef USE_ASPELL
-       if (item && item->prefs && item->prefs->enable_default_dictionary &&
-           compose->gtkaspell) 
-               gtkaspell_change_dict(compose->gtkaspell, 
-                   item->prefs->default_dictionary);
-       compose_spell_menu_changed(compose);
+       compose_set_dictionaries_from_folder_prefs(compose, item);
 #endif
 
        if (account->auto_sig)
@@ -1007,11 +1056,22 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
        }
        compose_add_field_list( compose, listAddress );
 
-       if (prefs_common.compose_with_format) {
+       if (item && item->prefs && item->prefs->compose_with_format) {
+               subject_format = item->prefs->compose_subject_format;
+               body_format = item->prefs->compose_body_format;
+       } else if (account->compose_with_format) {
+               subject_format = account->compose_subject_format;
+               body_format = account->compose_body_format;
+       } else if (prefs_common.compose_with_format) {
+               subject_format = prefs_common.compose_subject_format;
+               body_format = prefs_common.compose_body_format;
+       }
+
+       if (subject_format || body_format) {
                MsgInfo* dummyinfo = NULL;
 
-               if ( prefs_common.compose_subject_format
-                        && *prefs_common.compose_subject_format != '\0' )
+               if ( subject_format
+                        && *subject_format != '\0' )
                {
                        gchar *subject = NULL;
                        gchar *tmp = NULL;
@@ -1020,11 +1080,16 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
                        dummyinfo = compose_msginfo_new_from_compose(compose);
 
                        /* decode \-escape sequences in the internal representation of the quote format */
-                       tmp = malloc(strlen(prefs_common.compose_subject_format)+1);
-                       pref_get_unescaped_pref(tmp, prefs_common.compose_subject_format);
+                       tmp = malloc(strlen(subject_format)+1);
+                       pref_get_unescaped_pref(tmp, subject_format);
 
                        subject = gtk_editable_get_chars(GTK_EDITABLE(compose->subject_entry), 0, -1);
+#ifdef USE_ASPELL
+                       quote_fmt_init(dummyinfo, NULL, subject, FALSE, compose->account,
+                                       compose->gtkaspell);
+#else
                        quote_fmt_init(dummyinfo, NULL, subject, FALSE, compose->account);
+#endif
                        quote_fmt_scan_string(tmp);
                        quote_fmt_parse();
 
@@ -1033,14 +1098,15 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
                                alertpanel_error(_("New message subject format error."));
                        else
                                gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf);
+                       compose_attach_from_list(compose, quote_fmt_get_attachments_list(), FALSE);
                        quote_fmt_reset_vartable();
 
                        g_free(subject);
                        g_free(tmp);
                }
 
-               if ( prefs_common.compose_body_format
-                        && *prefs_common.compose_body_format != '\0' )
+               if ( body_format
+                        && *body_format != '\0' )
                {
                        GtkTextView *text;
                        GtkTextBuffer *buffer;
@@ -1057,9 +1123,10 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
                        tmp = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
 
                        compose_quote_fmt(compose, dummyinfo,
-                                         prefs_common.compose_body_format,
-                                         NULL, tmp, FALSE,
-                                                 _("New message body format error."));
+                                         body_format,
+                                         NULL, tmp, FALSE, TRUE,
+                                                 _("New message body format error at line %d."));
+                       compose_attach_from_list(compose, quote_fmt_get_attachments_list(), FALSE);
                        quote_fmt_reset_vartable();
 
                        g_free(tmp);
@@ -1097,6 +1164,9 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
        if (prefs_common.auto_exteditor)
                compose_exec_ext_editor(compose);
 
+       compose->draft_timeout_tag = -1;
+       SCROLL_TO_CURSOR(compose);
+
        compose->modified = FALSE;
        compose_set_title(compose);
         return compose;
@@ -1123,7 +1193,8 @@ static void compose_force_encryption(Compose *compose, PrefsAccount *account,
                }
        }
        if (privacy != NULL) {
-               compose->privacy_system = g_strdup(privacy);
+               if (compose->privacy_system == NULL)
+                       compose->privacy_system = g_strdup(privacy);
                compose_update_privacy_system_menu_item(compose, FALSE);
                compose_use_encryption(compose, TRUE);
        }
@@ -1143,13 +1214,14 @@ static void compose_force_signing(Compose *compose, PrefsAccount *account)
                }
        }
        if (privacy != NULL) {
-               compose->privacy_system = g_strdup(privacy);
+               if (compose->privacy_system == NULL)
+                       compose->privacy_system = g_strdup(privacy);
                compose_update_privacy_system_menu_item(compose, FALSE);
                compose_use_signing(compose, TRUE);
        }
 }      
 
-Compose *compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
+static Compose *compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
 {
        MsgInfo *msginfo;
        guint list_len;
@@ -1165,56 +1237,56 @@ Compose *compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
 
        switch (mode) {
        case COMPOSE_REPLY:
-               compose = compose_reply(msginfo, prefs_common.reply_with_quote,
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_CHECK,
                              FALSE, prefs_common.default_reply_list, FALSE, body);
                break;
        case COMPOSE_REPLY_WITH_QUOTE:
-               compose = compose_reply(msginfo, TRUE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_FORCED
                        FALSE, prefs_common.default_reply_list, FALSE, body);
                break;
        case COMPOSE_REPLY_WITHOUT_QUOTE:
-               compose = compose_reply(msginfo, FALSE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_SKIP
                        FALSE, prefs_common.default_reply_list, FALSE, NULL);
                break;
        case COMPOSE_REPLY_TO_SENDER:
-               compose = compose_reply(msginfo, prefs_common.reply_with_quote,
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_CHECK,
                              FALSE, FALSE, TRUE, body);
                break;
        case COMPOSE_FOLLOWUP_AND_REPLY_TO:
                compose = compose_followup_and_reply_to(msginfo,
-                                             prefs_common.reply_with_quote,
+                                             COMPOSE_QUOTE_CHECK,
                                              FALSE, FALSE, body);
                break;
        case COMPOSE_REPLY_TO_SENDER_WITH_QUOTE:
-               compose = compose_reply(msginfo, TRUE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_FORCED
                        FALSE, FALSE, TRUE, body);
                break;
        case COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE:
-               compose = compose_reply(msginfo, FALSE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_SKIP
                        FALSE, FALSE, TRUE, NULL);
                break;
        case COMPOSE_REPLY_TO_ALL:
-               compose = compose_reply(msginfo, prefs_common.reply_with_quote,
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_CHECK,
                        TRUE, FALSE, FALSE, body);
                break;
        case COMPOSE_REPLY_TO_ALL_WITH_QUOTE:
-               compose = compose_reply(msginfo, TRUE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_FORCED
                        TRUE, FALSE, FALSE, body);
                break;
        case COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE:
-               compose = compose_reply(msginfo, FALSE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_SKIP
                        TRUE, FALSE, FALSE, NULL);
                break;
        case COMPOSE_REPLY_TO_LIST:
-               compose = compose_reply(msginfo, prefs_common.reply_with_quote,
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_CHECK,
                        FALSE, TRUE, FALSE, body);
                break;
        case COMPOSE_REPLY_TO_LIST_WITH_QUOTE:
-               compose = compose_reply(msginfo, TRUE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_FORCED
                        FALSE, TRUE, FALSE, body);
                break;
        case COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE:
-               compose = compose_reply(msginfo, FALSE
+               compose = compose_reply(msginfo, COMPOSE_QUOTE_SKIP
                        FALSE, TRUE, FALSE, NULL);
                break;
        case COMPOSE_FORWARD:
@@ -1240,9 +1312,13 @@ Compose *compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
                compose = compose_redirect(NULL, msginfo, FALSE);
                break;
        default:
-               g_warning("compose_reply(): invalid Compose Mode: %d\n", mode);
+               g_warning("compose_reply_mode(): invalid Compose Mode: %d\n", mode);
        }
        
+       if (compose == NULL) {
+               alertpanel_error(_("Unable to reply. The original email probably doesn't exist."));
+               return NULL;
+       }
        ifactory = gtk_item_factory_from_widget(compose->menubar);
 
        compose->rmode = mode;
@@ -1279,20 +1355,24 @@ Compose *compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
        return compose;
 }
 
-Compose *compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
-                  gboolean to_ml, gboolean to_sender, 
+static Compose *compose_reply(MsgInfo *msginfo,
+                                  ComposeQuoteMode quote_mode,
+                                  gboolean to_all,
+                                  gboolean to_ml,
+                                  gboolean to_sender, 
                   const gchar *body)
 {
-       return compose_generic_reply(msginfo, quote, to_all, to_ml, 
+       return compose_generic_reply(msginfo, quote_mode, to_all, to_ml, 
                              to_sender, FALSE, body);
 }
 
-Compose *compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
+static Compose *compose_followup_and_reply_to(MsgInfo *msginfo,
+                                  ComposeQuoteMode quote_mode,
                                   gboolean to_all,
                                   gboolean to_sender,
                                   const gchar *body)
 {
-       return compose_generic_reply(msginfo, quote, to_all, FALSE, 
+       return compose_generic_reply(msginfo, quote_mode, to_all, FALSE, 
                              to_sender, TRUE, body);
 }
 
@@ -1307,7 +1387,7 @@ static void compose_extract_original_charset(Compose *compose)
                info = compose->targetinfo;
        }
        if (info) {
-               MimeInfo *mimeinfo = procmime_scan_message(info);
+               MimeInfo *mimeinfo = procmime_scan_message_short(info);
                MimeInfo *partinfo = mimeinfo;
                while (partinfo && partinfo->type != MIMETYPE_TEXT)
                        partinfo = procmime_mimeinfo_next(partinfo);
@@ -1338,7 +1418,8 @@ static void compose_extract_original_charset(Compose *compose)
                                compose);                       \
 }
 
-static Compose *compose_generic_reply(MsgInfo *msginfo, gboolean quote,
+static Compose *compose_generic_reply(MsgInfo *msginfo,
+                                 ComposeQuoteMode quote_mode,
                                  gboolean to_all, gboolean to_ml,
                                  gboolean to_sender,
                                  gboolean followup_and_reply_to,
@@ -1347,29 +1428,20 @@ static Compose *compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        GtkItemFactory *ifactory;
        Compose *compose;
        PrefsAccount *account = NULL;
-       PrefsAccount *reply_account;
        GtkTextView *textview;
        GtkTextBuffer *textbuf;
-
+       gboolean quote = FALSE;
+       const gchar *qmark = NULL;
+       const gchar *body_fmt = NULL;
+       START_TIMING("");
        g_return_val_if_fail(msginfo != NULL, NULL);
        g_return_val_if_fail(msginfo->folder != NULL, NULL);
 
        account = account_get_reply_account(msginfo, prefs_common.reply_account_autosel);
-       
-       g_return_val_if_fail(account != NULL, NULL);
 
-       if (to_sender && account->protocol == A_NNTP &&
-           !followup_and_reply_to) {
-               reply_account =
-                       account_find_from_address(account->address);
-               if (!reply_account)
-                       reply_account = compose_current_mail_account();
-               if (!reply_account)
-                       return NULL;
-       } else
-               reply_account = account;
+       g_return_val_if_fail(account != NULL, NULL);
 
-       compose = compose_create(account, COMPOSE_REPLY, FALSE);
+       compose = compose_create(account, msginfo->folder, COMPOSE_REPLY, FALSE);
 
        compose->updating = TRUE;
 
@@ -1405,29 +1477,42 @@ static Compose *compose_generic_reply(MsgInfo *msginfo, gboolean quote,
 
        undo_block(compose->undostruct);
 #ifdef USE_ASPELL
-       if (msginfo->folder && msginfo->folder->prefs && 
-           msginfo->folder->prefs && 
-           msginfo->folder->prefs->enable_default_dictionary &&
-           compose->gtkaspell)
-               gtkaspell_change_dict(compose->gtkaspell, 
-                   msginfo->folder->prefs->default_dictionary);
+               compose_set_dictionaries_from_folder_prefs(compose, msginfo->folder);
 #endif
 
-       if (quote) {
-               gchar *qmark;
+       if (quote_mode == COMPOSE_QUOTE_FORCED ||
+                       (quote_mode == COMPOSE_QUOTE_CHECK && prefs_common.reply_with_quote)) {
+               /* use the reply format of folder (if enabled), or the account's one
+                  (if enabled) or fallback to the global reply format, which is always
+                  enabled (even if empty), and use the relevant quotemark */
+               quote = TRUE;
+               if (msginfo->folder && msginfo->folder->prefs &&
+                               msginfo->folder->prefs->reply_with_format) {
+                       qmark = msginfo->folder->prefs->reply_quotemark;
+                       body_fmt = msginfo->folder->prefs->reply_body_format;
+
+               } else if (account->reply_with_format) {
+                       qmark = account->reply_quotemark;
+                       body_fmt = account->reply_body_format;
 
-               if (prefs_common.quotemark && *prefs_common.quotemark)
+               } else {
                        qmark = prefs_common.quotemark;
-               else
-                       qmark = "> ";
+                       body_fmt = prefs_common.quotefmt;
+               }
+       }
 
+       if (quote) {
+               /* empty quotemark is not allowed */
+               if (qmark == NULL || *qmark == '\0')
+                       qmark = "> ";
                compose_quote_fmt(compose, compose->replyinfo,
-                                 prefs_common.quotefmt,
-                                 qmark, body, FALSE,
-                                         _("Message reply format error."));
+                                 body_fmt, qmark, body, FALSE, TRUE,
+                                         _("Message reply format error at line %d."));
+               compose_attach_from_list(compose, quote_fmt_get_attachments_list(), FALSE);
                quote_fmt_reset_vartable();
        }
-       if (procmime_msginfo_is_encrypted(compose->replyinfo)) {
+
+       if (MSG_IS_ENCRYPTED(compose->replyinfo->flags)) {
                compose_force_encryption(compose, account, FALSE);
        }
 
@@ -1451,12 +1536,14 @@ static Compose *compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        compose_set_title(compose);
 
        compose->updating = FALSE;
-
+       compose->draft_timeout_tag = -1; /* desinhibit auto-drafting after loading */
+       SCROLL_TO_CURSOR(compose);
+       
        if (compose->deferred_destroy) {
                compose_destroy(compose);
                return NULL;
        }
-
+       END_TIMING();
        return compose;
 }
 
@@ -1485,7 +1572,7 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
                                (msginfo)))
                account = cur_account;
 
-       compose = compose_create(account, COMPOSE_FORWARD, batch);
+       compose = compose_create(account, msginfo->folder, COMPOSE_FORWARD, batch);
 
        compose->updating = TRUE;
        compose->fwdinfo = procmsg_msginfo_get_full_info(msginfo);
@@ -1516,7 +1603,7 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
        if (as_attach) {
                gchar *msgfile;
 
-               msgfile = procmsg_get_message_file_path(msginfo);
+               msgfile = procmsg_get_message_file(msginfo);
                if (!is_file_exist(msgfile))
                        g_warning("%s: file not exist\n", msgfile);
                else
@@ -1525,23 +1612,39 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
 
                g_free(msgfile);
        } else {
-               gchar *qmark;
+               const gchar *qmark = NULL;
+               const gchar *body_fmt = prefs_common.fw_quotefmt;
                MsgInfo *full_msginfo;
 
                full_msginfo = procmsg_msginfo_get_full_info(msginfo);
                if (!full_msginfo)
                        full_msginfo = procmsg_msginfo_copy(msginfo);
 
-               if (prefs_common.fw_quotemark &&
-                   *prefs_common.fw_quotemark)
+               /* use the forward format of folder (if enabled), or the account's one
+                  (if enabled) or fallback to the global forward format, which is always
+                  enabled (even if empty), and use the relevant quotemark */
+               if (msginfo->folder && msginfo->folder->prefs &&
+                               msginfo->folder->prefs->forward_with_format) {
+                       qmark = msginfo->folder->prefs->forward_quotemark;
+                       body_fmt = msginfo->folder->prefs->forward_body_format;
+
+               } else if (account->forward_with_format) {
+                       qmark = account->forward_quotemark;
+                       body_fmt = account->forward_body_format;
+
+               } else {
                        qmark = prefs_common.fw_quotemark;
-               else
+                       body_fmt = prefs_common.fw_quotefmt;
+               }
+
+               /* empty quotemark is not allowed */
+               if (qmark == NULL || *qmark == '\0')
                        qmark = "> ";
 
                compose_quote_fmt(compose, full_msginfo,
-                                 prefs_common.fw_quotefmt,
-                                 qmark, body, FALSE,
-                                         _("Message forward format error."));
+                                 body_fmt, qmark, body, FALSE, TRUE,
+                                         _("Message forward format error at line %d."));
+               compose_attach_from_list(compose, quote_fmt_get_attachments_list(), FALSE);
                quote_fmt_reset_vartable();
                compose_attach_parts(compose, msginfo);
 
@@ -1581,6 +1684,8 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
        compose_set_title(compose);
 
        compose->updating = FALSE;
+       compose->draft_timeout_tag = -1; /* desinhibit auto-drafting after loading */
+       SCROLL_TO_CURSOR(compose);
 
        if (compose->deferred_destroy) {
                compose_destroy(compose);
@@ -1592,7 +1697,7 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
 
 #undef INSERT_FW_HEADER
 
-Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
+static Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
 {
        Compose *compose;
        GtkTextView *textview;
@@ -1624,7 +1729,7 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
                MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
        }
 
-       compose = compose_create(account, COMPOSE_FORWARD, FALSE);
+       compose = compose_create(account, ((MsgInfo *)msginfo_list->data)->folder, COMPOSE_FORWARD, FALSE);
 
        compose->updating = TRUE;
 
@@ -1634,7 +1739,7 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
        
        undo_block(compose->undostruct);
        for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
-               msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
+               msgfile = procmsg_get_message_file((MsgInfo *)msginfo->data);
 
                if (!is_file_exist(msgfile))
                        g_warning("%s: file not exist\n", msgfile);
@@ -1682,6 +1787,8 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
        compose_set_title(compose);
 
        compose->updating = FALSE;
+       compose->draft_timeout_tag = -1; /* desinhibit auto-drafting after loading */
+       SCROLL_TO_CURSOR(compose);
 
        if (compose->deferred_destroy) {
                compose_destroy(compose);
@@ -1738,6 +1845,36 @@ static void compose_colorize_signature(Compose *compose)
                }
 }
 
+#define BLOCK_WRAP() {                                                 \
+       prev_autowrap = compose->autowrap;                              \
+       buffer = gtk_text_view_get_buffer(                              \
+                                       GTK_TEXT_VIEW(compose->text));  \
+       compose->autowrap = FALSE;                                      \
+                                                                       \
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
+                               G_CALLBACK(compose_changed_cb),         \
+                               compose);                               \
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
+                               G_CALLBACK(text_inserted),              \
+                               compose);                               \
+}
+#define UNBLOCK_WRAP() {                                               \
+       compose->autowrap = prev_autowrap;                              \
+       if (compose->autowrap) {                                        \
+               gint old = compose->draft_timeout_tag;                  \
+               compose->draft_timeout_tag = -2;                        \
+               compose_wrap_all(compose);                              \
+               compose->draft_timeout_tag = old;                       \
+       }                                                               \
+                                                                       \
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
+                               G_CALLBACK(compose_changed_cb),         \
+                               compose);                               \
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
+                               G_CALLBACK(text_inserted),              \
+                               compose);                               \
+}
+
 Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
 {
        Compose *compose = NULL;
@@ -1767,6 +1904,11 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
                gint id, param;
 
                /* Select Account from queue headers */
+               if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
+                                            sizeof(queueheader_buf), "X-Claws-Account-Id:")) {
+                       id = atoi(&queueheader_buf[strlen("X-Claws-Account-Id:")]);
+                       account = account_find_from_id(id);
+               }
                if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
                                             sizeof(queueheader_buf), "X-Sylpheed-Account-Id:")) {
                        id = atoi(&queueheader_buf[strlen("X-Sylpheed-Account-Id:")]);
@@ -1786,17 +1928,32 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
                                                                sizeof(queueheader_buf), "S:")) {
                        account = account_find_from_address(queueheader_buf);
                }
+               if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
+                                            sizeof(queueheader_buf), "X-Claws-Sign:")) {
+                       param = atoi(&queueheader_buf[strlen("X-Claws-Sign:")]);
+                       use_signing = param;
+                       
+               }
                if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
                                             sizeof(queueheader_buf), "X-Sylpheed-Sign:")) {
                        param = atoi(&queueheader_buf[strlen("X-Sylpheed-Sign:")]);
                        use_signing = param;
                        
                }
+               if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
+                                            sizeof(queueheader_buf), "X-Claws-Encrypt:")) {
+                       param = atoi(&queueheader_buf[strlen("X-Claws-Encrypt:")]);
+                       use_encryption = param;
+               }
                if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
                                             sizeof(queueheader_buf), "X-Sylpheed-Encrypt:")) {
                        param = atoi(&queueheader_buf[strlen("X-Sylpheed-Encrypt:")]);
                        use_encryption = param;
                }
+                if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
+                                            sizeof(queueheader_buf), "X-Claws-Privacy-System:")) {
+                        privacy_system = g_strdup(&queueheader_buf[strlen("X-Claws-Privacy-System:")]);
+                }
                 if (!procheader_get_header_from_msginfo(msginfo, queueheader_buf, 
                                             sizeof(queueheader_buf), "X-Sylpheed-Privacy-System:")) {
                         privacy_system = g_strdup(&queueheader_buf[strlen("X-Sylpheed-Privacy-System:")]);
@@ -1844,7 +2001,7 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
         }
        g_return_val_if_fail(account != NULL, NULL);
 
-       compose = compose_create(account, COMPOSE_REEDIT, batch);
+       compose = compose_create(account, msginfo->folder, COMPOSE_REEDIT, batch);
        
        compose->replyinfo = replyinfo;
        compose->fwdinfo = fwdinfo;
@@ -1905,7 +2062,7 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
        
-       if (procmime_msginfo_is_encrypted(msginfo)) {
+       if (MSG_IS_ENCRYPTED(msginfo->flags)) {
                fp = procmime_get_first_encrypted_text_content(msginfo);
                if (fp) {
                        compose_force_encryption(compose, account, TRUE);
@@ -1919,14 +2076,13 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
 
        if (fp != NULL) {
                gboolean prev_autowrap = compose->autowrap;
-
-               compose->autowrap = FALSE;
+               GtkTextBuffer *buffer = textbuf;
+               BLOCK_WRAP();
                while (fgets(buf, sizeof(buf), fp) != NULL) {
                        strcrchomp(buf);
                        gtk_text_buffer_insert(textbuf, &iter, buf, -1);
                }
-               compose_wrap_all_full(compose, FALSE);
-               compose->autowrap = prev_autowrap;
+               UNBLOCK_WRAP();
                fclose(fp);
        }
        
@@ -1947,6 +2103,8 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch)
        compose_set_title(compose);
 
        compose->updating = FALSE;
+       compose->draft_timeout_tag = -1; /* desinhibit auto-drafting after loading */
+       SCROLL_TO_CURSOR(compose);
 
        if (compose->deferred_destroy) {
                compose_destroy(compose);
@@ -1973,7 +2131,7 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo,
                                        prefs_common.reply_account_autosel);
        g_return_val_if_fail(account != NULL, NULL);
 
-       compose = compose_create(account, COMPOSE_REDIRECT, batch);
+       compose = compose_create(account, msginfo->folder, COMPOSE_REDIRECT, batch);
 
        compose->updating = TRUE;
 
@@ -1986,7 +2144,7 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo,
 
        gtk_widget_grab_focus(compose->header_last->entry);
 
-       filename = procmsg_get_message_file_path(msginfo);
+       filename = procmsg_get_message_file(msginfo);
 
        if (filename == NULL) {
                compose->updating = FALSE;
@@ -2015,8 +2173,8 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo,
                                   msginfo->subject);
        gtk_editable_set_editable(GTK_EDITABLE(compose->subject_entry), FALSE);
 
-       compose_quote_fmt(compose, msginfo, "%M", NULL, NULL, FALSE,
-                                         _("Message redirect format error."));
+       compose_quote_fmt(compose, msginfo, "%M", NULL, NULL, FALSE, FALSE,
+                                         _("Message redirect format error at line %d."));
        quote_fmt_reset_vartable();
        gtk_text_view_set_editable(GTK_TEXT_VIEW(compose->text), FALSE);
 
@@ -2055,6 +2213,8 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo,
        compose->modified = FALSE;
        compose_set_title(compose);
        compose->updating = FALSE;
+       compose->draft_timeout_tag = -1; /* desinhibit auto-drafting after loading */
+       SCROLL_TO_CURSOR(compose);
 
        if (compose->deferred_destroy) {
                compose_destroy(compose);
@@ -2072,7 +2232,7 @@ GList *compose_get_compose_list(void)
 void compose_entry_append(Compose *compose, const gchar *address,
                          ComposeEntryType type)
 {
-       gchar *header;
+       const gchar *header;
        gchar *cur, *begin;
        gboolean in_quote = FALSE;
        if (!address || *address == '\0') return;
@@ -2098,7 +2258,7 @@ void compose_entry_append(Compose *compose, const gchar *address,
                header = N_("To:");
                break;
        }
-       header = prefs_common.trans_hdr ? gettext(header) : header;
+       header = prefs_common_translated_header_name(header);
        
        cur = begin = (gchar *)address;
        
@@ -2134,7 +2294,7 @@ void compose_entry_append(Compose *compose, const gchar *address,
        }
 }
 
-void compose_entry_mark_default_to(Compose *compose, const gchar *mailto)
+static void compose_entry_mark_default_to(Compose *compose, const gchar *mailto)
 {
        static GdkColor yellow;
        static GdkColor black;
@@ -2222,7 +2382,7 @@ static void compose_entries_set(Compose *compose, const gchar *mailto)
        gchar *subject = NULL;
        gchar *body = NULL;
        gchar *temp = NULL;
-       guint  len = 0;
+       gsize  len = 0;
        gchar *attach = NULL;
        
        scan_mailto_url(mailto, &to, &cc, NULL, &subject, &body, &attach);
@@ -2476,6 +2636,7 @@ static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
                                const gchar *fmt, const gchar *qmark,
                                const gchar *body, gboolean rewrap,
+                               gboolean need_unescape,
                                const gchar *err_msg)
 {
        MsgInfo* dummyinfo = NULL;
@@ -2498,7 +2659,12 @@ static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
        }
 
        if (qmark != NULL) {
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account);
+#endif
                quote_fmt_scan_string(qmark);
                quote_fmt_parse();
 
@@ -2510,24 +2676,35 @@ static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
        }
 
        if (fmt && *fmt != '\0') {
-               gchar *tmp = NULL;
 
                if (trimmed_body)
                        while (*trimmed_body == '\n')
                                trimmed_body++;
 
-               /* decode \-escape sequences in the internal representation of the quote format */
-               tmp = malloc(strlen(fmt)+1);
-               pref_get_unescaped_pref(tmp, fmt);
-
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, quote_str, trimmed_body, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, quote_str, trimmed_body, FALSE, compose->account);
-               quote_fmt_scan_string(tmp);
-               quote_fmt_parse();
-               g_free(tmp);
+#endif
+               if (need_unescape) {
+                       gchar *tmp = NULL;
+
+                       /* decode \-escape sequences in the internal representation of the quote format */
+                       tmp = malloc(strlen(fmt)+1);
+                       pref_get_unescaped_pref(tmp, fmt);
+                       quote_fmt_scan_string(tmp);
+                       quote_fmt_parse();
+                       g_free(tmp);
+               } else {
+                       quote_fmt_scan_string(fmt);
+                       quote_fmt_parse();
+               }
 
                buf = quote_fmt_get_buffer();
                if (buf == NULL) {
-                       alertpanel_error(err_msg);
+                       gint line = quote_fmt_get_line();
+                       alertpanel_error(err_msg, line);
                        goto error;
                }
        } else
@@ -2701,13 +2878,21 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
                                          msginfo->from ? msginfo->from : "",
                                          COMPOSE_TO);
                        else if (!to_all && !to_sender) {
-                               /* reply to the last list of recipients */
-                               compose_entry_append(compose,
-                                         msginfo->to ? msginfo->to : "",
-                                         COMPOSE_TO);
-                               compose_entry_append(compose,
-                                         msginfo->cc ? msginfo->cc : "",
-                                         COMPOSE_CC);
+                               if (!folder_has_parent_of_type(msginfo->folder, F_QUEUE) &&
+                                   !folder_has_parent_of_type(msginfo->folder, F_OUTBOX) &&
+                                   !folder_has_parent_of_type(msginfo->folder, F_DRAFT)) {
+                                       compose_entry_append(compose,
+                                                 msginfo->from ? msginfo->from : "",
+                                                 COMPOSE_TO);
+                               } else {
+                                       /* replying to own mail, use original recp */
+                                       compose_entry_append(compose,
+                                                 msginfo->to ? msginfo->to : "",
+                                                 COMPOSE_TO);
+                                       compose_entry_append(compose,
+                                                 msginfo->cc ? msginfo->cc : "",
+                                                 COMPOSE_CC);
+                               }
                        }
                }
        } else {
@@ -2779,17 +2964,17 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
 
        to_table = g_hash_table_new(g_str_hash, g_str_equal);
        if (replyto)
-               g_hash_table_insert(to_table, g_strdup(replyto), GINT_TO_POINTER(1));
-       if (compose->account)
-               g_hash_table_insert(to_table, g_strdup(compose->account->address),
+               g_hash_table_insert(to_table, g_utf8_strdown(replyto, -1), GINT_TO_POINTER(1));
+       if (compose->account) {
+               g_hash_table_insert(to_table, g_utf8_strdown(compose->account->address, -1),
                                    GINT_TO_POINTER(1));
-
+       }
        /* remove address on To: and that of current account */
        for (cur = cc_list; cur != NULL; ) {
                GSList *next = cur->next;
                gchar *addr;
 
-               addr = g_strdup(cur->data);
+               addr = g_utf8_strdown(cur->data, -1);
                extract_address(addr);
 
                if (GPOINTER_TO_INT(g_hash_table_lookup(to_table, addr)) == 1)
@@ -2852,15 +3037,13 @@ static void compose_insert_sig(Compose *compose, gboolean replace)
        GtkTextMark *mark;
        GtkTextIter iter, iter_end;
        gint cur_pos;
-       gchar *search = NULL;
        gboolean prev_autowrap;
-       gboolean found = FALSE, shift = FALSE;
-
+       gboolean found = FALSE;
+       gboolean exists = FALSE;
        
        g_return_if_fail(compose->account != NULL);
 
-       prev_autowrap = compose->autowrap;
-       compose->autowrap = FALSE;
+       BLOCK_WRAP();
 
        g_signal_handlers_block_by_func(G_OBJECT(buffer),
                                        G_CALLBACK(compose_changed_cb),
@@ -2872,54 +3055,55 @@ static void compose_insert_sig(Compose *compose, gboolean replace)
 
        gtk_text_buffer_get_end_iter(buffer, &iter);
 
-       search = compose->sig_str;
-again:
-       if (replace && search) {
+       exists = (compose->sig_str != NULL);
+
+       if (replace) {
                GtkTextIter first_iter, start_iter, end_iter;
 
                gtk_text_buffer_get_start_iter(buffer, &first_iter);
 
-               if (compose->sig_str[0] == '\0')
+               if (!exists || compose->sig_str[0] == '\0')
                        found = FALSE;
                else
-                       found = gtk_text_iter_forward_search(&first_iter,
-                                                            search,
-                                                            GTK_TEXT_SEARCH_TEXT_ONLY,
-                                                            &start_iter, &end_iter,
-                                                            NULL);
+                       found = gtk_text_iter_forward_to_tag_toggle(&first_iter,
+                                       compose->signature_tag);
 
                if (found) {
-                       gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
-                       iter = start_iter;
-               }
+                       /* include previous \n\n */
+                       gtk_text_iter_backward_chars(&first_iter, 2);
+                       start_iter = first_iter;
+                       end_iter = first_iter;
+                       /* skip re-start */
+                       found = gtk_text_iter_forward_to_tag_toggle(&end_iter,
+                                       compose->signature_tag);
+                       found &= gtk_text_iter_forward_to_tag_toggle(&end_iter,
+                                       compose->signature_tag);
+                       if (found) {
+                               gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
+                               iter = start_iter;
+                       }
+               } 
        } 
-       if (replace && !found && search && strlen(search) > 2
-       &&  search[0] == '\n' && search[1] == '\n') {
-               search ++;
-               shift = TRUE;
-               goto again;
-       }
 
        g_free(compose->sig_str);
        compose->sig_str = compose_get_signature_str(compose);
-       if (!compose->sig_str || (replace && !compose->account->auto_sig))
-               compose->sig_str = g_strdup("");
 
        cur_pos = gtk_text_iter_get_offset(&iter);
-       if (shift && found)
-               gtk_text_buffer_insert(buffer, &iter, compose->sig_str + 1, -1);
-       else
-               gtk_text_buffer_insert(buffer, &iter, compose->sig_str, -1);
-       /* skip \n\n */
-       gtk_text_buffer_get_iter_at_offset(buffer, &iter, cur_pos);
-       gtk_text_iter_forward_char(&iter);
-       gtk_text_iter_forward_char(&iter);
-       gtk_text_buffer_get_end_iter(buffer, &iter_end);
-       gtk_text_buffer_apply_tag_by_name(buffer,"signature",&iter, &iter_end);
 
-       if (cur_pos > gtk_text_buffer_get_char_count (buffer))
-               cur_pos = gtk_text_buffer_get_char_count (buffer);
+       if (!compose->sig_str || (replace && !compose->account->auto_sig)) {
+               g_free(compose->sig_str);
+               compose->sig_str = NULL;
+       } else {
+               gtk_text_buffer_insert(buffer, &iter, compose->sig_str, -1);
+               /* remove \n\n */
+               gtk_text_buffer_get_iter_at_offset(buffer, &iter, cur_pos);
+               gtk_text_iter_forward_chars(&iter, 2);
+               gtk_text_buffer_get_end_iter(buffer, &iter_end);
+               gtk_text_buffer_apply_tag_by_name(buffer,"signature",&iter, &iter_end);
 
+               if (cur_pos > gtk_text_buffer_get_char_count (buffer))
+                       cur_pos = gtk_text_buffer_get_char_count (buffer);
+       }
        /* put the cursor where it should be 
         * either where the quote_fmt says, either before the signature */
        if (compose->set_cursor_pos < 0)
@@ -2933,9 +3117,7 @@ again:
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
                
-       compose->autowrap = prev_autowrap;
-       if (compose->autowrap)
-               compose_wrap_all(compose);
+       UNBLOCK_WRAP();
 }
 
 static gchar *compose_get_signature_str(Compose *compose)
@@ -3077,6 +3259,17 @@ static gboolean compose_attach_append(Compose *compose, const gchar *file,
        gboolean has_binary = FALSE;
 
        if (!is_file_exist(file)) {
+               gchar *file_from_uri = g_filename_from_uri(file, NULL, NULL);
+               gboolean result = FALSE;
+               if (file_from_uri && is_file_exist(file_from_uri)) {
+                       result = compose_attach_append(
+                                               compose, file_from_uri,
+                                               filename,
+                                               content_type);
+               }
+               g_free(file_from_uri);
+               if (result)
+                       return TRUE;
                alertpanel_error("File %s doesn't exist\n", filename);
                return FALSE;
        }
@@ -3171,6 +3364,7 @@ static gboolean compose_attach_append(Compose *compose, const gchar *file,
                           -1);
        
        g_auto_pointer_free(auto_ainfo);
+       compose_attach_update_label(compose);
        return TRUE;
 }
 
@@ -3243,6 +3437,8 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
      
        child = (MimeInfo *) mimeinfo->node->children->data;
        while (child != NULL) {
+               gint err;
+
                if (child == encrypted) {
                        /* skip this part of tree */
                        NEXT_PART_NOT_CHILD(child);
@@ -3261,8 +3457,8 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
                }
 
                outfile = procmime_get_tmp_file_name(child);
-               if (procmime_get_part(outfile, child) < 0)
-                       g_warning("Can't get the part of multipart message.");
+               if ((err = procmime_get_part(outfile, child)) < 0)
+                       g_warning("Can't get the part of multipart message. (%s)", strerror(-err));
                else {
                        gchar *content_type;
 
@@ -3270,7 +3466,10 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
 
                        /* if we meet a pgp signature, we don't attach it, but
                         * we force signing. */
-                       if (strcmp(content_type, "application/pgp-signature")) {
+                       if ((strcmp(content_type, "application/pgp-signature") &&
+                           strcmp(content_type, "application/pkcs7-signature") &&
+                           strcmp(content_type, "application/x-pkcs7-signature"))
+                           || compose->mode == COMPOSE_REDIRECT) {
                                partname = procmime_mimeinfo_get_parameter(child, "filename");
                                if (partname == NULL)
                                        partname = procmime_mimeinfo_get_parameter(child, "name");
@@ -3433,8 +3632,16 @@ static gboolean compose_get_line_break_pos(GtkTextBuffer *buffer,
        gtk_text_iter_forward_to_line_end(&line_end);
        str = gtk_text_buffer_get_text(buffer, &iter, &line_end, FALSE);
        len = g_utf8_strlen(str, -1);
+       
+       if (len == 0) {
+               g_free(str);
+               g_warning("compose_get_line_break_pos: len = 0!\n");
+               return FALSE;
+       }
+
        /* g_print("breaking line: %d: %s (len = %d)\n",
                gtk_text_iter_get_line(&iter), str, len); */
+
        attrs = g_new(PangoLogAttr, len + 1);
 
        pango_default_break(str, -1, NULL, attrs, len + 1);
@@ -3624,8 +3831,7 @@ static gboolean compose_join_next_line(Compose *compose,
                g_warning("alloc error scanning URIs\n"); \
        }
 
-static gboolean automatic_break = FALSE;
-static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter, gboolean force)
+static gboolean compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter, gboolean force)
 {
        GtkTextView *text = GTK_TEXT_VIEW(compose->text);
        GtkTextBuffer *buffer;
@@ -3639,6 +3845,18 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
        gint nouri_start = -1, nouri_stop = -1;
        gint num_blocks = 0;
        gint quotelevel = -1;
+       gboolean modified = force;
+       gboolean removed = FALSE;
+       gboolean modified_before_remove = FALSE;
+       gint lines = 0;
+       gboolean start = TRUE;
+
+       if (force) {
+               modified = TRUE;
+       }
+       if (compose->draft_timeout_tag == -2) {
+               modified = TRUE;
+       }
 
        compose->autowrap = FALSE;
 
@@ -3652,24 +3870,26 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
        }
 
-       /* move to paragraph start */
-       gtk_text_iter_set_line_offset(&iter, 0);
-       if (gtk_text_iter_ends_line(&iter)) {
-               while (gtk_text_iter_ends_line(&iter) &&
-                      gtk_text_iter_forward_line(&iter))
-                       ;
-       } else {
-               while (gtk_text_iter_backward_line(&iter)) {
-                       if (gtk_text_iter_ends_line(&iter)) {
-                               gtk_text_iter_forward_line(&iter);
-                               break;
+
+       if (compose->draft_timeout_tag == -2) {
+               if (gtk_text_iter_ends_line(&iter)) {
+                       while (gtk_text_iter_ends_line(&iter) &&
+                              gtk_text_iter_forward_line(&iter))
+                               ;
+               } else {
+                       while (gtk_text_iter_backward_line(&iter)) {
+                               if (gtk_text_iter_ends_line(&iter)) {
+                                       gtk_text_iter_forward_line(&iter);
+                                       break;
+                               }
                        }
                }
+       } else {
+               /* move to line start */
+               gtk_text_iter_set_line_offset(&iter, 0);
        }
-
        /* go until paragraph end (empty line) */
-       
-       while (!gtk_text_iter_ends_line(&iter)) {
+       while (start || !gtk_text_iter_ends_line(&iter)) {
                gchar *scanpos = NULL;
                /* parse table - in order of priority */
                struct table {
@@ -3704,6 +3924,7 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                gchar *o_walk = NULL, *walk = NULL, *bp = NULL, *ep = NULL;
                gint walk_pos;
                
+               start = FALSE;
                if (!prev_autowrap && num_blocks == 0) {
                        num_blocks++;
                        g_signal_handlers_block_by_func(G_OBJECT(buffer),
@@ -3718,12 +3939,6 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                quote_str = compose_get_quote_str(buffer, &iter, &quote_len);
 
                if (quote_str) {
-                       if (!wrap_quote) {
-                               if (startq_offset == -1) {
-                                       startq_offset = gtk_text_iter_get_offset(&iter);
-                               }
-                               goto colorize;
-                       }
                        debug_print("compose_beautify_paragraph(): quote_str = '%s'\n", quote_str);
                        if (startq_offset == -1) 
                                startq_offset = gtk_text_iter_get_offset(&iter);
@@ -3735,6 +3950,9 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                                else
                                        quotelevel = 2;
                        }
+                       if (!wrap_quote) {
+                               goto colorize;
+                       }
                } else {
                        if (startq_offset == -1)
                                noq_offset = gtk_text_iter_get_offset(&iter);
@@ -3744,19 +3962,23 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                if (prev_autowrap == FALSE && !force && !wrap_quote) {
                        goto colorize;
                }
-               if (compose_get_line_break_pos(buffer, &iter, &break_pos,
+               if (gtk_text_iter_ends_line(&iter)) {
+                       goto colorize;
+               } else if (compose_get_line_break_pos(buffer, &iter, &break_pos,
                                               prefs_common.linewrap_len,
                                               quote_len)) {
                        GtkTextIter prev, next, cur;
-                       
+
                        if (prev_autowrap != FALSE || force) {
-                               automatic_break = TRUE;
+                               compose->automatic_break = TRUE;
+                               modified = TRUE;
                                gtk_text_buffer_insert(buffer, &break_pos, "\n", 1);
-                               automatic_break = FALSE;
+                               compose->automatic_break = FALSE;
                        } else if (quote_str && wrap_quote) {
-                               automatic_break = TRUE;
+                               compose->automatic_break = TRUE;
+                               modified = TRUE;
                                gtk_text_buffer_insert(buffer, &break_pos, "\n", 1);
-                               automatic_break = FALSE;
+                               compose->automatic_break = FALSE;
                        } else 
                                goto colorize;
                        /* remove trailing spaces */
@@ -3783,7 +4005,7 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                                                       quote_str, -1);
 
                        iter = break_pos;
-                       compose_join_next_line(compose, buffer, &iter, quote_str);
+                       modified |= compose_join_next_line(compose, buffer, &iter, quote_str);
 
                        /* move iter to current line start */
                        gtk_text_iter_set_line_offset(&iter, 0);
@@ -3791,10 +4013,11 @@ static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter,
                                g_free(quote_str);
                                quote_str = NULL;
                        }
-                       continue;
+                       continue;       
                } else {
                        /* move iter to next line start */
                        iter = break_pos;
+                       lines++;
                }
 
 colorize:
@@ -3852,15 +4075,43 @@ colorize:
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &startquote, startq_offset);
                        endquote = iter;
+
                        switch (quotelevel) {
-                       case 0: gtk_text_buffer_apply_tag_by_name(
-                                       buffer, "quote0", &startquote, &endquote);
+                       case 0: 
+                               if (!gtk_text_iter_has_tag(&startquote, compose->quote0_tag) ||
+                                   !gtk_text_iter_has_tag(&end_of_line, compose->quote0_tag)) {
+                                       gtk_text_buffer_apply_tag_by_name(
+                                               buffer, "quote0", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote1", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote2", &startquote, &endquote);
+                                       modified = TRUE;
+                               }
                                break;
-                       case 1: gtk_text_buffer_apply_tag_by_name(
-                                       buffer, "quote1", &startquote, &endquote);
+                       case 1: 
+                               if (!gtk_text_iter_has_tag(&startquote, compose->quote1_tag) ||
+                                   !gtk_text_iter_has_tag(&end_of_line, compose->quote1_tag)) {
+                                       gtk_text_buffer_apply_tag_by_name(
+                                               buffer, "quote1", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote0", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote2", &startquote, &endquote);
+                                       modified = TRUE;
+                               }
                                break;
-                       case 2: gtk_text_buffer_apply_tag_by_name(
-                                       buffer, "quote2", &startquote, &endquote);
+                       case 2: 
+                               if (!gtk_text_iter_has_tag(&startquote, compose->quote2_tag) ||
+                                   !gtk_text_iter_has_tag(&end_of_line, compose->quote2_tag)) {
+                                       gtk_text_buffer_apply_tag_by_name(
+                                               buffer, "quote2", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote0", &startquote, &endquote);
+                                       gtk_text_buffer_remove_tag_by_name(
+                                               buffer, "quote1", &startquote, &endquote);
+                                       modified = TRUE;
+                               }
                                break;
                        }
                        startq_offset = -1;
@@ -3869,39 +4120,71 @@ colorize:
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &startnoquote, noq_offset);
                        endnoquote = iter;
-                       gtk_text_buffer_remove_tag_by_name(
-                               buffer, "quote0", &startnoquote, &endnoquote);
-                       gtk_text_buffer_remove_tag_by_name(
-                               buffer, "quote1", &startnoquote, &endnoquote);
-                       gtk_text_buffer_remove_tag_by_name(
-                               buffer, "quote2", &startnoquote, &endnoquote);
+
+                       if ((gtk_text_iter_has_tag(&startnoquote, compose->quote0_tag)
+                         && gtk_text_iter_has_tag(&end_of_line, compose->quote0_tag)) ||
+                           (gtk_text_iter_has_tag(&startnoquote, compose->quote1_tag)
+                         && gtk_text_iter_has_tag(&end_of_line, compose->quote1_tag)) ||
+                           (gtk_text_iter_has_tag(&startnoquote, compose->quote2_tag)
+                         && gtk_text_iter_has_tag(&end_of_line, compose->quote2_tag))) {
+                               gtk_text_buffer_remove_tag_by_name(
+                                       buffer, "quote0", &startnoquote, &endnoquote);
+                               gtk_text_buffer_remove_tag_by_name(
+                                       buffer, "quote1", &startnoquote, &endnoquote);
+                               gtk_text_buffer_remove_tag_by_name(
+                                       buffer, "quote2", &startnoquote, &endnoquote);
+                               modified = TRUE;
+                       }
                        noq_offset = -1;
                }
                
-               /* always */ {
+               if (uri_start != nouri_start && uri_stop != nouri_stop) {
                        GtkTextIter nouri_start_iter, nouri_end_iter;
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &nouri_start_iter, nouri_start);
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &nouri_end_iter, nouri_stop);
-                       gtk_text_buffer_remove_tag_by_name(
-                               buffer, "link", &nouri_start_iter, &nouri_end_iter);
+                       if (gtk_text_iter_has_tag(&nouri_start_iter, compose->uri_tag) &&
+                           gtk_text_iter_has_tag(&nouri_end_iter, compose->uri_tag)) {
+                               gtk_text_buffer_remove_tag_by_name(
+                                       buffer, "link", &nouri_start_iter, &nouri_end_iter);
+                               modified_before_remove = modified;
+                               modified = TRUE;
+                               removed = TRUE;
+                       }
                }
                if (uri_start > 0 && uri_stop > 0) {
-                       GtkTextIter uri_start_iter, uri_end_iter;
+                       GtkTextIter uri_start_iter, uri_end_iter, back;
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &uri_start_iter, uri_start);
                        gtk_text_buffer_get_iter_at_offset(
                                buffer, &uri_end_iter, uri_stop);
-                       gtk_text_buffer_apply_tag_by_name(
-                               buffer, "link", &uri_start_iter, &uri_end_iter);
+                       back = uri_end_iter;
+                       gtk_text_iter_backward_char(&back);
+                       if (!gtk_text_iter_has_tag(&uri_start_iter, compose->uri_tag) ||
+                           !gtk_text_iter_has_tag(&back, compose->uri_tag)) {
+                               gtk_text_buffer_apply_tag_by_name(
+                                       buffer, "link", &uri_start_iter, &uri_end_iter);
+                               modified = TRUE;
+                               if (removed && !modified_before_remove) {
+                                       modified = FALSE;
+                               } 
+                       }
+               }
+               if (!modified) {
+                       debug_print("not modified, out after %d lines\n", lines);
+                       goto end;
                }
        }
 
+       debug_print("modified, out after %d lines\n", lines);
+end:
        if (par_iter)
                *par_iter = iter;
        undo_wrapping(compose->undostruct, FALSE);
        compose->autowrap = prev_autowrap;
+       
+       return modified;
 }
 
 void compose_action_cb(void *data)
@@ -3920,12 +4203,13 @@ static void compose_wrap_all_full(Compose *compose, gboolean force)
        GtkTextView *text = GTK_TEXT_VIEW(compose->text);
        GtkTextBuffer *buffer;
        GtkTextIter iter;
+       gboolean modified = TRUE;
 
        buffer = gtk_text_view_get_buffer(text);
 
        gtk_text_buffer_get_start_iter(buffer, &iter);
-       while (!gtk_text_iter_is_end(&iter))
-               compose_beautify_paragraph(compose, &iter, force);
+       while (!gtk_text_iter_is_end(&iter) && modified)
+               modified = compose_beautify_paragraph(compose, &iter, force);
 
 }
 
@@ -3940,11 +4224,16 @@ static void compose_set_title(Compose *compose)
        subject = gtk_editable_get_chars(
                        GTK_EDITABLE(compose->subject_entry), 0, -1);
 
+#ifndef MAEMO
        if (subject && strlen(subject))
                str = g_strdup_printf(_("%s - Compose message%s"),
                                      subject, edited); 
        else
                str = g_strdup_printf(_("[no subject] - Compose message%s"), edited);
+#else
+       str = g_strdup(_("Compose message"));
+#endif
+
        gtk_window_set_title(GTK_WINDOW(compose->window), str);
        g_free(str);
        g_free(subject);
@@ -4075,6 +4364,21 @@ static void compose_select_account(Compose *compose, PrefsAccount *account,
                compose_insert_sig(compose, TRUE);
                undo_unblock(compose->undostruct);
        }
+
+#ifdef USE_ASPELL
+       /* use account's dict info if set */
+       if (compose->gtkaspell) {
+               if (account->enable_default_dictionary)
+                       gtkaspell_change_dict(compose->gtkaspell,
+                                       account->default_dictionary, FALSE);
+               if (account->enable_default_alt_dictionary)
+                       gtkaspell_change_alt_dict(compose->gtkaspell,
+                                       account->default_alt_dictionary);
+               if (account->enable_default_dictionary
+                       || account->enable_default_alt_dictionary)
+                       compose_spell_menu_changed(compose);
+       }
+#endif
 }
 
 gboolean compose_check_for_valid_recipient(Compose *compose) {
@@ -4097,18 +4401,19 @@ gboolean compose_check_for_valid_recipient(Compose *compose) {
        for (list = compose->header_list; list; list = list->next) {
                gchar *header;
                gchar *entry;
-               header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
+               header = gtk_editable_get_chars(GTK_EDITABLE(GTK_BIN(((ComposeHeaderEntry *)list->data)->combo)->child), 0, -1);
                entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
+
                g_strstrip(entry);
                if (entry[0] != '\0') {
                        for (strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
-                               if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
+                               if (!strcmp(header, prefs_common_translated_header_name(*strptr))) {
                                        compose->to_list = address_list_append(compose->to_list, entry);
                                        recipient_found = TRUE;
                                }
                        }
                        for (strptr = recipient_headers_news; *strptr != NULL; strptr++) {
-                               if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
+                               if (!strcmp(header, prefs_common_translated_header_name(*strptr))) {
                                        compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
                                        recipient_found = TRUE;
                                }
@@ -4130,10 +4435,10 @@ static gboolean compose_check_for_set_recipients(Compose *compose)
                        gchar *entry;
                        gchar *header;
                        entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
-                       header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
+                       header = gtk_editable_get_chars(GTK_EDITABLE(GTK_BIN(((ComposeHeaderEntry *)list->data)->combo)->child), 0, -1);
                        g_strstrip(entry);
                        if (strcmp(entry, compose->account->auto_cc)
-                       ||  strcmp(header, (prefs_common.trans_hdr ? gettext("Cc:") : "Cc:"))) {
+                       ||  strcmp(header, prefs_common_translated_header_name("Cc:"))) {
                                found_other = TRUE;
                                g_free(entry);
                                break;
@@ -4161,10 +4466,10 @@ static gboolean compose_check_for_set_recipients(Compose *compose)
                        gchar *entry;
                        gchar *header;
                        entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
-                       header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
+                       header = gtk_editable_get_chars(GTK_EDITABLE(GTK_BIN(((ComposeHeaderEntry *)list->data)->combo)->child), 0, -1);
                        g_strstrip(entry);
                        if (strcmp(entry, compose->account->auto_bcc)
-                       ||  strcmp(header, (prefs_common.trans_hdr ? gettext("Bcc:") : "Bcc:"))) {
+                       ||  strcmp(header, prefs_common_translated_header_name("Bcc:"))) {
                                found_other = TRUE;
                                g_free(entry);
                                break;
@@ -4187,7 +4492,7 @@ static gboolean compose_check_for_set_recipients(Compose *compose)
        return TRUE;
 }
 
-static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
+static gboolean compose_check_entries(Compose *compose, gboolean check_everything)
 {
        const gchar *str;
 
@@ -4205,17 +4510,30 @@ static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
 
        if (!compose->batch) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
-               if (*str == '\0' && check_subject == TRUE) {
+               if (*str == '\0' && check_everything == TRUE && 
+                   compose->mode != COMPOSE_REDIRECT) {
                        AlertValue aval;
+                       gchar *button_label;
+                       gchar *message;
 
-                       aval = alertpanel(_("Send"),
-                                         _("Subject is empty. Send it anyway?"),
-                                         GTK_STOCK_CANCEL, _("+_Send"), NULL);
+                       if (compose->sending)
+                               button_label = _("+_Send");
+                       else
+                               button_label = _("+_Queue");
+                       message = g_strdup_printf(_("Subject is empty. %s it anyway?"),
+                                       compose->sending?_("Send"):_("Queue"));
+
+                       aval = alertpanel(compose->sending?_("Send"):_("Send later"), message,
+                                         GTK_STOCK_CANCEL, button_label, NULL);
+                       g_free(message);
                        if (aval != G_ALERTALTERNATE)
                                return FALSE;
                }
        }
 
+       if (check_everything && hooks_invoke(COMPOSE_CHECK_BEFORE_SEND_HOOKLIST, compose))
+               return FALSE;
+
        return TRUE;
 }
 
@@ -4229,8 +4547,9 @@ gint compose_send(Compose *compose)
        gchar *errstr = NULL;
        gchar *tmsgid = NULL;
        MainWindow *mainwin = mainwindow_get_mainwindow();
+       gboolean queued_removed = FALSE;
 
-       if (prefs_common.send_dialog_mode != SEND_DIALOG_ALWAYS
+       if (prefs_common.send_dialog_invisible
                        || compose->batch == TRUE)
                discard_window = TRUE;
 
@@ -4257,6 +4576,8 @@ gint compose_send(Compose *compose)
                } else if (val == -5) {
                        alertpanel_error(_("Could not queue message for sending:\n\n"
                                           "Couldn't get recipient encryption key."));
+               } else if (val == -6) {
+                       /* silent error */
                } else if (val == -3) {
                        if (privacy_peek_error())
                        alertpanel_error(_("Could not queue message for sending:\n\n"
@@ -4291,18 +4612,17 @@ gint compose_send(Compose *compose)
        }
        if (msgpath == NULL) {
                msgpath = folder_item_fetch_msg(folder, msgnum);
-               val = procmsg_send_message_queue(msgpath, &errstr, folder, msgnum);
+               val = procmsg_send_message_queue(msgpath, &errstr, folder, msgnum, &queued_removed);
                g_free(msgpath);
        } else {
-               val = procmsg_send_message_queue(msgpath, &errstr, folder, msgnum);
+               val = procmsg_send_message_queue(msgpath, &errstr, folder, msgnum, &queued_removed);
                g_unlink(msgpath);
                g_free(msgpath);
        }
        if (!discard_window) {
-               compose->sending = FALSE;
-               compose_allow_user_actions (compose, TRUE);
                if (val != 0) {
-                       folder_item_remove_msg(folder, msgnum);
+                       if (!queued_removed)
+                               folder_item_remove_msg(folder, msgnum);
                        folder_item_scan(folder);
                        if (tmsgid) {
                                /* make sure we delete that */
@@ -4317,7 +4637,8 @@ gint compose_send(Compose *compose)
        }
 
        if (val == 0) {
-               folder_item_remove_msg(folder, msgnum);
+               if (!queued_removed)
+                       folder_item_remove_msg(folder, msgnum);
                folder_item_scan(folder);
                if (tmsgid) {
                        /* make sure we delete that */
@@ -4328,15 +4649,16 @@ gint compose_send(Compose *compose)
                                procmsg_msginfo_free(tmp);
                        }
                }
-               if (!discard_window)
+               if (!discard_window) {
+                       compose->sending = FALSE;
+                       compose_allow_user_actions (compose, TRUE);
                        compose_close(compose);
+               }
        } else {
                if (errstr) {
-                       gchar *tmp = g_strdup_printf(_("%s\nUse \"Send queued messages\" from "
+                       alertpanel_error_log(_("%s\nUse \"Send queued messages\" from "
                                   "the main window to retry."), errstr);
                        g_free(errstr);
-                       alertpanel_error_log(tmp);
-                       g_free(tmp);
                } else {
                        alertpanel_error_log(_("The message was queued but could not be "
                                   "sent.\nUse \"Send queued messages\" from "
@@ -4384,18 +4706,19 @@ static gint compose_redirect_write_headers_from_headerlist(Compose *compose,
        GSList *list;
        ComposeHeaderEntry *headerentry;
        const gchar *headerentryname;
-       gchar *cc_hdr;
-       gchar *to_hdr;
+       const gchar *cc_hdr;
+       const gchar *to_hdr;
+       gboolean err = FALSE;
 
        debug_print("Writing redirect header\n");
 
-       cc_hdr = prefs_common.trans_hdr ? _("Cc:") : "Cc:";
-       to_hdr = prefs_common.trans_hdr ? _("To:") : "To:";
+       cc_hdr = prefs_common_translated_header_name("Cc:");
+       to_hdr = prefs_common_translated_header_name("To:");
 
        first_to_address = TRUE;
        for (list = compose->header_list; list; list = list->next) {
                headerentry = ((ComposeHeaderEntry *)list->data);
-               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
+               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_BIN(headerentry->combo)->child));
 
                if (g_utf8_collate(headerentryname, to_hdr) == 0) {
                        const gchar *entstr = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
@@ -4407,23 +4730,23 @@ static gint compose_redirect_write_headers_from_headerlist(Compose *compose,
                                        strlen("Resent-To") + 2, TRUE);
 
                                if (first_to_address) {
-                                       fprintf(fp, "Resent-To: ");
+                                       err |= (fprintf(fp, "Resent-To: ") < 0);
                                        first_to_address = FALSE;
                                } else {
-                                       fprintf(fp, ",");
+                                       err |= (fprintf(fp, ",") < 0);
                                 }
-                               fprintf(fp, "%s", buf);
+                               err |= (fprintf(fp, "%s", buf) < 0);
                        }
                }
        }
        if (!first_to_address) {
-               fprintf(fp, "\n");
+               err |= (fprintf(fp, "\n") < 0);
        }
 
        first_cc_address = TRUE;
        for (list = compose->header_list; list; list = list->next) {
                headerentry = ((ComposeHeaderEntry *)list->data);
-               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
+               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_BIN(headerentry->combo)->child));
 
                if (g_utf8_collate(headerentryname, cc_hdr) == 0) {
                        const gchar *strg = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
@@ -4435,20 +4758,20 @@ static gint compose_redirect_write_headers_from_headerlist(Compose *compose,
                                        strlen("Resent-Cc") + 2, TRUE);
 
                                 if (first_cc_address) {
-                                        fprintf(fp, "Resent-Cc: ");
+                                        err |= (fprintf(fp, "Resent-Cc: ") < 0);
                                         first_cc_address = FALSE;
                                 } else {
-                                        fprintf(fp, ",");
+                                        err |= (fprintf(fp, ",") < 0);
                                 }
-                               fprintf(fp, "%s", buf);
+                               err |= (fprintf(fp, "%s", buf) < 0);
                        }
                }
        }
        if (!first_cc_address) {
-               fprintf(fp, "\n");
+               err |= (fprintf(fp, "\n") < 0);
         }
        
-       return(0);
+       return (err ? -1:0);
 }
 
 static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
@@ -4457,6 +4780,7 @@ static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
        gchar *str;
        const gchar *entstr;
        /* struct utsname utsbuf; */
+       gboolean err = FALSE;
 
        g_return_val_if_fail(fp != NULL, -1);
        g_return_val_if_fail(compose->account != NULL, -1);
@@ -4464,17 +4788,17 @@ static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
 
        /* Resent-Date */
        get_rfc822_date(buf, sizeof(buf));
-       fprintf(fp, "Resent-Date: %s\n", buf);
+       err |= (fprintf(fp, "Resent-Date: %s\n", buf) < 0);
 
        /* Resent-From */
        if (compose->account->name && *compose->account->name) {
                compose_convert_header
                        (compose, buf, sizeof(buf), compose->account->name,
                         strlen("From: "), TRUE);
-               fprintf(fp, "Resent-From: %s <%s>\n",
-                       buf, compose->account->address);
+               err |= (fprintf(fp, "Resent-From: %s <%s>\n",
+                       buf, compose->account->address) < 0);
        } else
-               fprintf(fp, "Resent-From: %s\n", compose->account->address);
+               err |= (fprintf(fp, "Resent-From: %s\n", compose->account->address) < 0);
 
        /* Subject */
        entstr = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
@@ -4484,23 +4808,32 @@ static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
                if (*str != '\0') {
                        compose_convert_header(compose, buf, sizeof(buf), str,
                                               strlen("Subject: "), FALSE);
-                       fprintf(fp, "Subject: %s\n", buf);
+                       err |= (fprintf(fp, "Subject: %s\n", buf) < 0);
                }
        }
 
        /* Resent-Message-ID */
-       if (compose->account->gen_msgid) {
-               generate_msgid(buf, sizeof(buf));
-               fprintf(fp, "Resent-Message-ID: <%s>\n", buf);
-               compose->msgid = g_strdup(buf);
+       if (compose->account->set_domain && compose->account->domain) {
+               g_snprintf(buf, sizeof(buf), "%s", compose->account->domain); 
+       } else if (!strncmp(get_domain_name(), "localhost", strlen("localhost"))) {
+               g_snprintf(buf, sizeof(buf), "%s", 
+                       strchr(compose->account->address, '@') ?
+                               strchr(compose->account->address, '@')+1 :
+                               compose->account->address);
+       } else {
+               g_snprintf(buf, sizeof(buf), "%s", "");
        }
+       generate_msgid(buf, sizeof(buf));
+       err |= (fprintf(fp, "Resent-Message-ID: <%s>\n", buf) < 0);
+       compose->msgid = g_strdup(buf);
 
-       compose_redirect_write_headers_from_headerlist(compose, fp);
+       if (compose_redirect_write_headers_from_headerlist(compose, fp))
+               return -1;
 
        /* separator between header and body */
-       fputs("\n", fp);
+       err |= (fputs("\n", fp) == EOF);
 
-       return 0;
+       return (err ? -1:0);
 }
 
 static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
@@ -4510,6 +4843,7 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
        gchar buf[BUFFSIZE];
        int i = 0;
        gboolean skip = FALSE;
+       gboolean err = FALSE;
        gchar *not_included[]={
                "Return-Path:",         "Delivered-To:",        "Received:",
                "Subject:",             "X-UIDL:",              "AF:",
@@ -4520,8 +4854,10 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
                "SSH:",                 "R:",                   "MAID:",
                "NAID:",                "RMID:",                "FMID:",
                "SCF:",                 "RRCPT:",               "NG:",
+               "X-Claws-Privacy",      "X-Claws-Sign:",        "X-Claws-Encrypt",
+               "X-Claws-End-Special-Headers:",                 "X-Claws-Account-Id:",
                "X-Sylpheed-Privacy",   "X-Sylpheed-Sign:",     "X-Sylpheed-Encrypt",
-               "X-Sylpheed-End-Special-Headers:",
+               "X-Sylpheed-End-Special-Headers:",              "X-Sylpheed-Account-Id:",
                NULL
                };
        if ((fp = g_fopen(compose->redirect_filename, "rb")) == NULL) {
@@ -4546,7 +4882,7 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
                if (!prefs_common.redirect_keep_from) {
                        if (g_ascii_strncasecmp(buf, "From:",
                                          strlen("From:")) == 0) {
-                               fputs(" (by way of ", fdest);
+                               err |= (fputs(" (by way of ", fdest) == EOF);
                                if (compose->account->name
                                    && *compose->account->name) {
                                        compose_convert_header
@@ -4554,13 +4890,13 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
                                                 compose->account->name,
                                                 strlen("From: "),
                                                 FALSE);
-                                       fprintf(fdest, "%s <%s>",
+                                       err |= (fprintf(fdest, "%s <%s>",
                                                buf,
-                                               compose->account->address);
+                                               compose->account->address) < 0);
                                } else
-                                       fprintf(fdest, "%s",
-                                               compose->account->address);
-                               fputs(")", fdest);
+                                       err |= (fprintf(fdest, "%s",
+                                               compose->account->address) < 0);
+                               err |= (fputs(")", fdest) == EOF);
                        }
                }
 
@@ -4568,7 +4904,11 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
                        goto error;
        }
 
-       compose_redirect_write_headers(compose, fdest);
+       if (err)
+               goto error;
+
+       if (compose_redirect_write_headers(compose, fdest))
+               goto error;
 
        while ((len = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
                if (fwrite(buf, sizeof(gchar), len, fdest) != len)
@@ -4724,7 +5064,7 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action, gbool
                encoding = ENC_QUOTED_PRINTABLE;
        }
        
-       debug_print("main text: %d bytes encoded as %s in %d\n",
+       debug_print("main text: %zd bytes encoded as %s in %d\n",
                strlen(buf), out_codeset, encoding);
 
        /* check for line length limit */
@@ -4862,13 +5202,15 @@ static gint compose_remove_reedit_target(Compose *compose, gboolean force)
                if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
                        g_warning("can't remove the old message\n");
                        return -1;
+               } else {
+                       debug_print("removed reedit target %d\n", msginfo->msgnum);
                }
        }
 
        return 0;
 }
 
-void compose_remove_draft(Compose *compose)
+static void compose_remove_draft(Compose *compose)
 {
        FolderItem *drafts;
        MsgInfo *msginfo = compose->targetinfo;
@@ -4885,6 +5227,32 @@ gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item, gchar **ms
 {
        return compose_queue_sub (compose, msgnum, item, msgpath, FALSE, remove_reedit_target);
 }
+
+static gboolean compose_warn_encryption(Compose *compose)
+{
+       const gchar *warning = privacy_get_encrypt_warning(compose->privacy_system);
+       AlertValue val = G_ALERTALTERNATE;
+       
+       if (warning == NULL)
+               return TRUE;
+
+       val = alertpanel_full(_("Encryption warning"), warning,
+                 GTK_STOCK_CANCEL, _("+C_ontinue"), NULL,
+                 TRUE, NULL, ALERT_WARNING, G_ALERTALTERNATE);
+       if (val & G_ALERTDISABLE) {
+               val &= ~G_ALERTDISABLE;
+               if (val == G_ALERTALTERNATE)
+                       privacy_inhibit_encrypt_warning(compose->privacy_system,
+                               TRUE);
+       }
+
+       if (val == G_ALERTALTERNATE) {
+               return TRUE;
+       } else {
+               return FALSE;
+       } 
+}
+
 static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item, 
                              gchar **msgpath, gboolean check_subject,
                              gboolean remove_reedit_target)
@@ -4896,7 +5264,8 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
        gint num;
         static gboolean lock = FALSE;
        PrefsAccount *mailac = NULL, *newsac = NULL;
-       
+       gboolean err = FALSE;
+
        debug_print("queueing message...\n");
        g_return_val_if_fail(compose->account != NULL, -1);
 
@@ -4939,8 +5308,9 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
        }
 
        /* write queue header */
-       tmp = g_strdup_printf("%s%cqueue.%p", get_tmp_dir(),
-                             G_DIR_SEPARATOR, compose);
+       tmp = g_strdup_printf("%s%cqueue.%p%08x", get_tmp_dir(),
+                             G_DIR_SEPARATOR, compose, (guint) rand());
+       debug_print("queuing to %s\n", tmp);
        if ((fp = g_fopen(tmp, "wb")) == NULL) {
                FILE_OP_ERROR(tmp, "fopen");
                g_free(tmp);
@@ -4954,57 +5324,64 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
        }
 
        /* queueing variables */
-       fprintf(fp, "AF:\n");
-       fprintf(fp, "NF:0\n");
-       fprintf(fp, "PS:10\n");
-       fprintf(fp, "SRH:1\n");
-       fprintf(fp, "SFN:\n");
-       fprintf(fp, "DSR:\n");
+       err |= (fprintf(fp, "AF:\n") < 0);
+       err |= (fprintf(fp, "NF:0\n") < 0);
+       err |= (fprintf(fp, "PS:10\n") < 0);
+       err |= (fprintf(fp, "SRH:1\n") < 0);
+       err |= (fprintf(fp, "SFN:\n") < 0);
+       err |= (fprintf(fp, "DSR:\n") < 0);
        if (compose->msgid)
-               fprintf(fp, "MID:<%s>\n", compose->msgid);
+               err |= (fprintf(fp, "MID:<%s>\n", compose->msgid) < 0);
        else
-               fprintf(fp, "MID:\n");
-       fprintf(fp, "CFG:\n");
-       fprintf(fp, "PT:0\n");
-       fprintf(fp, "S:%s\n", compose->account->address);
-       fprintf(fp, "RQ:\n");
+               err |= (fprintf(fp, "MID:\n") < 0);
+       err |= (fprintf(fp, "CFG:\n") < 0);
+       err |= (fprintf(fp, "PT:0\n") < 0);
+       err |= (fprintf(fp, "S:%s\n", compose->account->address) < 0);
+       err |= (fprintf(fp, "RQ:\n") < 0);
        if (mailac)
-               fprintf(fp, "SSV:%s\n", mailac->smtp_server);
+               err |= (fprintf(fp, "SSV:%s\n", mailac->smtp_server) < 0);
        else
-               fprintf(fp, "SSV:\n");
+               err |= (fprintf(fp, "SSV:\n") < 0);
        if (newsac)
-               fprintf(fp, "NSV:%s\n", newsac->nntp_server);
+               err |= (fprintf(fp, "NSV:%s\n", newsac->nntp_server) < 0);
        else
-               fprintf(fp, "NSV:\n");
-       fprintf(fp, "SSH:\n");
+               err |= (fprintf(fp, "NSV:\n") < 0);
+       err |= (fprintf(fp, "SSH:\n") < 0);
        /* write recepient list */
        if (compose->to_list) {
-               fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data);
+               err |= (fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data) < 0);
                for (cur = compose->to_list->next; cur != NULL;
                     cur = cur->next)
-                       fprintf(fp, ",<%s>", (gchar *)cur->data);
-               fprintf(fp, "\n");
+                       err |= (fprintf(fp, ",<%s>", (gchar *)cur->data) < 0);
+               err |= (fprintf(fp, "\n") < 0);
        }
        /* write newsgroup list */
        if (compose->newsgroup_list) {
-               fprintf(fp, "NG:");
-               fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
+               err |= (fprintf(fp, "NG:") < 0);
+               err |= (fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data) < 0);
                for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
-                       fprintf(fp, ",%s", (gchar *)cur->data);
-               fprintf(fp, "\n");
+                       err |= (fprintf(fp, ",%s", (gchar *)cur->data) < 0);
+               err |= (fprintf(fp, "\n") < 0);
        }
        /* Sylpheed account IDs */
        if (mailac)
-               fprintf(fp, "MAID:%d\n", mailac->account_id);
+               err |= (fprintf(fp, "MAID:%d\n", mailac->account_id) < 0);
        if (newsac)
-               fprintf(fp, "NAID:%d\n", newsac->account_id);
+               err |= (fprintf(fp, "NAID:%d\n", newsac->account_id) < 0);
 
        
        if (compose->privacy_system != NULL) {
-               fprintf(fp, "X-Sylpheed-Privacy-System:%s\n", compose->privacy_system);
-               fprintf(fp, "X-Sylpheed-Sign:%d\n", compose->use_signing);
+               err |= (fprintf(fp, "X-Claws-Privacy-System:%s\n", compose->privacy_system) < 0);
+               err |= (fprintf(fp, "X-Claws-Sign:%d\n", compose->use_signing) < 0);
                if (compose->use_encryption) {
                        gchar *encdata;
+                       if (!compose_warn_encryption(compose)) {
+                               lock = FALSE;
+                               fclose(fp);
+                               g_unlink(tmp);
+                               g_free(tmp);
+                               return -6;
+                       }
                        if (mailac && mailac->encrypt_to_self) {
                                GSList *tmp_list = g_slist_copy(compose->to_list);
                                tmp_list = g_slist_append(tmp_list, compose->account->address);
@@ -5015,12 +5392,12 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
                        }
                        if (encdata != NULL) {
                                if (strcmp(encdata, "_DONT_ENCRYPT_")) {
-                                       fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
-                                       fprintf(fp, "X-Sylpheed-Encrypt-Data:%s\n", 
-                                               encdata);
+                                       err |= (fprintf(fp, "X-Claws-Encrypt:%d\n", compose->use_encryption) < 0);
+                                       err |= (fprintf(fp, "X-Claws-Encrypt-Data:%s\n", 
+                                               encdata) < 0);
                                } /* else we finally dont want to encrypt */
                        } else {
-                               fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
+                               err |= (fprintf(fp, "X-Claws-Encrypt:%d\n", compose->use_encryption) < 0);
                                /* and if encdata was null, it means there's been a problem in 
                                 * key selection */
                                lock = FALSE;
@@ -5038,19 +5415,19 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
                gchar *savefolderid;
                
                savefolderid = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
-               fprintf(fp, "SCF:%s\n", savefolderid);
+               err |= (fprintf(fp, "SCF:%s\n", savefolderid) < 0);
                g_free(savefolderid);
        }
        /* Save copy folder */
        if (compose->return_receipt) {
-               fprintf(fp, "RRCPT:1\n");
+               err |= (fprintf(fp, "RRCPT:1\n") < 0);
        }
        /* Message-ID of message replying to */
        if ((compose->replyinfo != NULL) && (compose->replyinfo->msgid != NULL)) {
                gchar *folderid;
                
                folderid = folder_item_get_identifier(compose->replyinfo->folder);
-               fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid);
+               err |= (fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid) < 0);
                g_free(folderid);
        }
        /* Message-ID of message forwarding to */
@@ -5058,12 +5435,12 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
                gchar *folderid;
                
                folderid = folder_item_get_identifier(compose->fwdinfo->folder);
-               fprintf(fp, "FMID:%s\t%d\t%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid);
+               err |= (fprintf(fp, "FMID:%s\t%d\t%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid) < 0);
                g_free(folderid);
        }
 
        /* end of headers */
-       fprintf(fp, "X-Sylpheed-End-Special-Headers: 1\n");
+       err |= (fprintf(fp, "X-Claws-End-Special-Headers: 1\n") < 0);
 
        if (compose->redirect_filename != NULL) {
                if (compose_redirect_write_to_file(compose, fp) < 0) {
@@ -5083,7 +5460,14 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
                        return result - 1; /* -2 for a generic error, -3 for signing error, -4 for encoding */
                }
        }
-
+       if (err == TRUE) {
+               g_warning("failed to write queue message\n");
+               fclose(fp);
+               g_unlink(tmp);
+               g_free(tmp);
+               lock = FALSE;
+               return -2;
+       }
        if (fclose(fp) == EOF) {
                FILE_OP_ERROR(tmp, "fclose");
                g_unlink(tmp);
@@ -5207,11 +5591,12 @@ static void compose_add_headerfield_from_headerlist(Compose *compose,
                                                    const gchar *fieldname,
                                                    const gchar *seperator)
 {
-       gchar *str, *fieldname_w_colon, *trans_fieldname;
+       gchar *str, *fieldname_w_colon;
        gboolean add_field = FALSE;
        GSList *list;
        ComposeHeaderEntry *headerentry;
-       const gchar * headerentryname;
+       const gchar *headerentryname;
+       const gchar *trans_fieldname;
        GString *fieldstr;
 
        if (IS_IN_CUSTOM_HEADER(fieldname))
@@ -5222,11 +5607,11 @@ static void compose_add_headerfield_from_headerlist(Compose *compose,
        fieldstr = g_string_sized_new(64);
 
        fieldname_w_colon = g_strconcat(fieldname, ":", NULL);
-       trans_fieldname = (prefs_common.trans_hdr ? gettext(fieldname_w_colon) : fieldname_w_colon);
+       trans_fieldname = prefs_common_translated_header_name(fieldname_w_colon);
 
        for (list = compose->header_list; list; list = list->next) {
                headerentry = ((ComposeHeaderEntry *)list->data);
-               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
+               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_BIN(headerentry->combo)->child));
 
                if (!g_utf8_collate(trans_fieldname, headerentryname)) {
                        str = gtk_editable_get_chars(GTK_EDITABLE(headerentry->entry), 0, -1);
@@ -5351,11 +5736,19 @@ static gchar *compose_get_header(Compose *compose)
        g_free(str);
 
        /* Message-ID */
-       if (compose->account->gen_msgid) {
-               generate_msgid(buf, sizeof(buf));
-               g_string_append_printf(header, "Message-ID: <%s>\n", buf);
-               compose->msgid = g_strdup(buf);
+       if (compose->account->set_domain && compose->account->domain) {
+               g_snprintf(buf, sizeof(buf), "%s", compose->account->domain); 
+       } else if (!strncmp(get_domain_name(), "localhost", strlen("localhost"))) {
+               g_snprintf(buf, sizeof(buf), "%s", 
+                       strchr(compose->account->address, '@') ?
+                               strchr(compose->account->address, '@')+1 :
+                               compose->account->address);
+       } else {
+               g_snprintf(buf, sizeof(buf), "%s", "");
        }
+       generate_msgid(buf, sizeof(buf));
+       g_string_append_printf(header, "Message-ID: <%s>\n", buf);
+       compose->msgid = g_strdup(buf);
 
        if (compose->remove_references == FALSE) {
                /* In-Reply-To */
@@ -5456,14 +5849,14 @@ static gchar *compose_get_header(Compose *compose)
                gchar *tmp;
                gchar *headername;
                gchar *headername_wcolon;
-               gchar *headername_trans;
+               const gchar *headername_trans;
                gchar *headervalue;
                gchar **string;
                gboolean standard_header = FALSE;
 
                headerentry = ((ComposeHeaderEntry *)list->data);
                
-               tmp = g_strdup(gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)));
+               tmp = g_strdup(gtk_entry_get_text(GTK_ENTRY(GTK_BIN(headerentry->combo)->child)));
                if (strchr(tmp, ' ') != NULL || strchr(tmp, '\r') != NULL || strchr(tmp, '\n') != NULL) {
                        g_free(tmp);
                        continue;
@@ -5484,8 +5877,8 @@ static gchar *compose_get_header(Compose *compose)
                subst_char(headervalue, '\n', ' ');
                string = std_headers;
                while (*string != NULL) {
-                       headername_trans = prefs_common.trans_hdr ? gettext(*string) : *string;
-                       if (!strcmp(headername_trans,headername_wcolon))
+                       headername_trans = prefs_common_translated_header_name(*string);
+                       if (!strcmp(headername_trans, headername_wcolon))
                                standard_header = TRUE;
                        string++;
                }
@@ -5567,36 +5960,79 @@ static void compose_convert_header(Compose *compose, gchar *dest, gint len, gcha
        g_free(tmpstr);
 }
 
+static void compose_add_to_addressbook_cb(GtkMenuItem *menuitem, gpointer user_data)
+{
+       gchar *address;
+
+       g_return_if_fail(user_data != NULL);
+
+       address = g_strdup(gtk_entry_get_text(GTK_ENTRY(user_data)));
+       g_strstrip(address);
+       if (*address != '\0') {
+               gchar *name = procheader_get_fromname(address);
+               extract_address(address);
+               addressbook_add_contact(name, address, NULL, NULL);
+       }
+       g_free(address);
+}
+
+static void compose_entry_popup_extend(GtkEntry *entry, GtkMenu *menu, gpointer user_data)
+{
+       GtkWidget *menuitem;
+       gchar *address;
+
+       g_return_if_fail(menu != NULL);
+       g_return_if_fail(GTK_IS_MENU_SHELL(menu));
+
+       menuitem = gtk_separator_menu_item_new();
+       gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), menuitem);
+       gtk_widget_show(menuitem);
+
+       menuitem = gtk_menu_item_new_with_mnemonic(_("Add to address _book"));
+       gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), menuitem);
+
+       address = g_strdup(gtk_entry_get_text(GTK_ENTRY(entry)));
+       g_strstrip(address);
+       if (*address == '\0') {
+               gtk_widget_set_sensitive(GTK_WIDGET(menuitem), FALSE);
+       }
+
+       g_signal_connect(G_OBJECT(menuitem), "activate",
+                        G_CALLBACK(compose_add_to_addressbook_cb), entry);
+       gtk_widget_show(menuitem);
+}
+
 static void compose_create_header_entry(Compose *compose) 
 {
        gchar *headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
 
        GtkWidget *combo;
        GtkWidget *entry;
-       GList *combo_list = NULL;
        gchar **string;
        const gchar *header = NULL;
        ComposeHeaderEntry *headerentry;
        gboolean standard_header = FALSE;
-
+       
        headerentry = g_new0(ComposeHeaderEntry, 1);
 
        /* Combo box */
-       combo = gtk_combo_new();
+       combo = gtk_combo_box_entry_new_text();
        string = headers; 
        while(*string != NULL) {
-               combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
+               gtk_combo_box_append_text(GTK_COMBO_BOX(combo),
+                       (gchar*)prefs_common_translated_header_name(*string));
                string++;
        }
-       gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
-       g_list_free(combo_list);
-       gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), TRUE);
-       g_signal_connect(G_OBJECT(GTK_COMBO(combo)->entry), "grab_focus",
+       gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);
+       g_signal_connect(G_OBJECT(GTK_BIN(combo)->child), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
        gtk_widget_show(combo);
-       gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
+       gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1,
+                       compose->header_nextrow, compose->header_nextrow+1,
+                       GTK_SHRINK, GTK_FILL, 0, 0);
        if (compose->header_last) {     
-               const gchar *last_header_entry = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
+               const gchar *last_header_entry = gtk_entry_get_text(
+                               GTK_ENTRY(GTK_BIN(compose->header_last->combo)->child));
                string = headers;
                while (*string != NULL) {
                        if (!strcmp(*string, last_header_entry))
@@ -5604,22 +6040,22 @@ static void compose_create_header_entry(Compose *compose)
                        string++;
                }
                if (standard_header)
-                       header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
+                       header = gtk_entry_get_text(GTK_ENTRY(GTK_BIN(compose->header_last->combo)->child));
        }
        if (!compose->header_last || !standard_header) {
                switch(compose->account->protocol) {
                        case A_NNTP:
-                               header = prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:";
+                               header = prefs_common_translated_header_name("Newsgroups:");
                                break;
                        default:
-                               header = prefs_common.trans_hdr ? _("To:") : "To:";
+                               header = prefs_common_translated_header_name("To:");
                                break;
                }                                                                   
        }
        if (header)
-               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
+               gtk_entry_set_text(GTK_ENTRY(GTK_BIN(combo)->child), header);
 
-       g_signal_connect_after(G_OBJECT(GTK_COMBO(combo)->entry), "grab_focus",
+       g_signal_connect_after(G_OBJECT(GTK_BIN(combo)->child), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
 
        /* Entry field */
@@ -5627,7 +6063,9 @@ static void compose_create_header_entry(Compose *compose)
        gtk_widget_show(entry);
        gtk_tooltips_set_tip(compose->tooltips, entry,
                _("Use <tab> to autocomplete from addressbook"), NULL);
-       gtk_table_attach(GTK_TABLE(compose->header_table), entry, 1, 2, compose->header_nextrow, compose->header_nextrow+1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
+       gtk_table_attach(GTK_TABLE(compose->header_table), entry, 1, 2,
+                       compose->header_nextrow, compose->header_nextrow+1,
+                       GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
 
         g_signal_connect(G_OBJECT(entry), "key-press-event", 
                         G_CALLBACK(compose_headerentry_key_press_event_cb), 
@@ -5648,6 +6086,9 @@ static void compose_create_header_entry(Compose *compose)
        g_signal_connect(G_OBJECT(entry), "drag-drop",
                         G_CALLBACK(compose_drag_drop),
                         compose);
+       g_signal_connect(G_OBJECT(entry), "populate-popup",
+                        G_CALLBACK(compose_entry_popup_extend),
+                        NULL);
        
        address_completion_register_entry(GTK_ENTRY(entry), TRUE);
 
@@ -5657,16 +6098,19 @@ static void compose_create_header_entry(Compose *compose)
         headerentry->headernum = compose->header_nextrow;
 
         compose->header_nextrow++;
-       compose->header_last = headerentry;
+       compose->header_last = headerentry;             
+       compose->header_list =
+               g_slist_append(compose->header_list,
+                              headerentry);
 }
 
-static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) 
+static void compose_add_header_entry(Compose *compose, const gchar *header, gchar *text) 
 {
        ComposeHeaderEntry *last_header;
        
        last_header = compose->header_last;
-       
-       gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
+
+       gtk_entry_set_text(GTK_ENTRY(GTK_BIN(last_header->combo)->child), header);
        gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
 }
 
@@ -5680,6 +6124,7 @@ static void compose_remove_header_entries(Compose *compose)
                gtk_widget_destroy(headerentry->entry);
                g_free(headerentry);
        }
+       compose->header_last = NULL;
        g_slist_free(compose->header_list);
        compose->header_list = NULL;
        compose->header_nextrow = 1;
@@ -5703,7 +6148,7 @@ static GtkWidget *compose_create_header(Compose *compose)
        gtk_widget_show(header_table);
        gtk_container_set_border_width(GTK_CONTAINER(header_table), BORDER_WIDTH);
        gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table);
-       gtk_viewport_set_shadow_type(GTK_VIEWPORT(GTK_BIN(header_scrolledwin)->child), GTK_SHADOW_ETCHED_IN);
+       gtk_viewport_set_shadow_type(GTK_VIEWPORT(GTK_BIN(header_scrolledwin)->child), GTK_SHADOW_NONE);
        count = 0;
 
        /* option menu for selecting accounts */
@@ -5723,7 +6168,18 @@ static GtkWidget *compose_create_header(Compose *compose)
        return header_scrolledwin ;
 }
 
-GtkWidget *compose_create_attach(Compose *compose)
+static gboolean popup_attach_button_pressed(GtkWidget *widget, gpointer data)
+{
+       Compose *compose = (Compose *)data;
+       GdkEventButton event;
+       
+       event.button = 3;
+       event.time = gtk_get_current_event_time();
+
+       return attach_button_pressed(compose->attach_clist, &event, compose);
+}
+
+static GtkWidget *compose_create_attach(Compose *compose)
 {
        GtkWidget *attach_scrwin;
        GtkWidget *attach_clist;
@@ -5779,6 +6235,15 @@ GtkWidget *compose_create_attach(Compose *compose)
                         G_CALLBACK(attach_selected), compose);
        g_signal_connect(G_OBJECT(attach_clist), "button_press_event",
                         G_CALLBACK(attach_button_pressed), compose);
+#ifndef MAEMO
+       g_signal_connect(G_OBJECT(attach_clist), "popup-menu",
+                        G_CALLBACK(popup_attach_button_pressed), compose);
+#else
+       gtk_widget_tap_and_hold_setup(GTK_WIDGET(attach_clist), NULL, NULL,
+                       GTK_TAP_AND_HOLD_NONE | GTK_TAP_AND_HOLD_NO_INTERNALS);
+       g_signal_connect(G_OBJECT(attach_clist), "tap-and-hold",
+                        G_CALLBACK(popup_attach_button_pressed), compose);
+#endif
        g_signal_connect(G_OBJECT(attach_clist), "key_press_event",
                         G_CALLBACK(attach_key_pressed), compose);
 
@@ -5881,32 +6346,6 @@ static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose)
 static void entry_paste_clipboard(Compose *compose, GtkWidget *entry, gboolean wrap,
                                  GdkAtom clip, GtkTextIter *insert_place);
 
-#define BLOCK_WRAP() {                                                 \
-       prev_autowrap = compose->autowrap;                              \
-       buffer = gtk_text_view_get_buffer(                              \
-                                       GTK_TEXT_VIEW(compose->text));  \
-       compose->autowrap = FALSE;                                      \
-                                                                       \
-       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
-                               G_CALLBACK(compose_changed_cb),         \
-                               compose);                               \
-       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
-                               G_CALLBACK(text_inserted),              \
-                               compose);                               \
-}
-#define UNBLOCK_WRAP() {                                               \
-       compose->autowrap = prev_autowrap;                              \
-       if (compose->autowrap)                                          \
-               compose_wrap_all(compose);                              \
-                                                                       \
-       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
-                               G_CALLBACK(compose_changed_cb),         \
-                               compose);                               \
-       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
-                               G_CALLBACK(text_inserted),              \
-                               compose);                               \
-}
-
 
 static gboolean text_clicked(GtkWidget *text, GdkEventButton *event,
                                        Compose *compose)
@@ -6004,8 +6443,21 @@ static void compose_spell_menu_changed(void *data)
 }
 #endif
 
+static gboolean compose_popup_menu(GtkWidget *widget, gpointer data)
+{
+       Compose *compose = (Compose *)data;
+       GdkEventButton event;
+       
+       event.button = 3;
+       event.time = gtk_get_current_event_time();
+
+       return text_clicked(compose->text, &event, compose);
+}
+
 static gboolean compose_force_window_origin = TRUE;
-static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
+static Compose *compose_create(PrefsAccount *account,
+                                                FolderItem *folder,
+                                                ComposeMode mode,
                                                 gboolean batch)
 {
        Compose   *compose;
@@ -6015,6 +6467,10 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        GtkWidget *handlebox;
 
        GtkWidget *notebook;
+       
+       GtkWidget *attach_hbox;
+       GtkWidget *attach_lab1;
+       GtkWidget *attach_lab2;
 
        GtkWidget *vbox2;
 
@@ -6061,13 +6517,15 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
 
        compose->batch = batch;
        compose->account = account;
+       compose->folder = folder;
        
        compose->mutex = g_mutex_new();
        compose->set_cursor_pos = -1;
 
        compose->tooltips = gtk_tooltips_new();
 
-       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+       window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "compose");
+
        gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
        gtk_widget_set_size_request(window, -1, prefs_common.compose_height);
 
@@ -6084,11 +6542,12 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        }
        gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL,
                                      &geometry, GDK_HINT_MIN_SIZE);
-       
+
+#ifndef MAEMO  
        if (compose_force_window_origin)
                gtk_widget_set_uposition(window, prefs_common.compose_x, 
                                 prefs_common.compose_y);
-
+#endif
        g_signal_connect(G_OBJECT(window), "delete_event",
                         G_CALLBACK(compose_delete_cb), compose);
        MANAGE_WINDOW_SIGNALS_CONNECT(window);
@@ -6112,8 +6571,13 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
 
        gtk_widget_realize(handlebox);
+#ifdef MAEMO
+       compose->toolbar = toolbar_create(TOOLBAR_COMPOSE, window,
+                                         (gpointer)compose);
+#else
        compose->toolbar = toolbar_create(TOOLBAR_COMPOSE, handlebox,
                                          (gpointer)compose);
+#endif
 
        vbox2 = gtk_vbox_new(FALSE, 2);
        gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
@@ -6129,9 +6593,20 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
                        compose_create_header(compose),
                        gtk_label_new_with_mnemonic(_("Hea_der")));
        /* attachment list */
+       attach_hbox = gtk_hbox_new(FALSE, 0);
+       gtk_widget_show(attach_hbox);
+       
+       attach_lab1 = gtk_label_new_with_mnemonic(_("_Attachments"));
+       gtk_widget_show(attach_lab1);
+       gtk_box_pack_start(GTK_BOX(attach_hbox), attach_lab1, TRUE, TRUE, 0);
+       
+       attach_lab2 = gtk_label_new("");
+       gtk_widget_show(attach_lab2);
+       gtk_box_pack_start(GTK_BOX(attach_hbox), attach_lab2, FALSE, FALSE, 0);
+       
        gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
                        compose_create_attach(compose),
-                       gtk_label_new_with_mnemonic(_("_Attachments")));
+                       attach_hbox);
        /* Others Tab */
        gtk_notebook_append_page(GTK_NOTEBOOK(notebook),
                        compose_create_others(compose),
@@ -6146,7 +6621,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        gtk_box_pack_start(GTK_BOX(subject_hbox), subject_frame, TRUE, TRUE, 0);
        gtk_widget_show(subject_frame);
 
-       subject = gtk_hbox_new(FALSE, 0);
+       subject = gtk_hbox_new(FALSE, HSPACING_NARROW);
        gtk_container_set_border_width(GTK_CONTAINER(subject), 0);
        gtk_widget_show(subject);
 
@@ -6205,6 +6680,15 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
                         G_CALLBACK(text_inserted), compose);
        g_signal_connect(G_OBJECT(text), "button_press_event",
                         G_CALLBACK(text_clicked), compose);
+#ifndef MAEMO
+       g_signal_connect(G_OBJECT(text), "popup-menu",
+                        G_CALLBACK(compose_popup_menu), compose);
+#else
+       gtk_widget_tap_and_hold_setup(GTK_WIDGET(text), NULL, NULL,
+                       GTK_TAP_AND_HOLD_NONE | GTK_TAP_AND_HOLD_NO_INTERNALS);
+       g_signal_connect(G_OBJECT(text), "tap-and-hold",
+                        G_CALLBACK(compose_popup_menu), compose);
+#endif
        g_signal_connect(G_OBJECT(subject_entry), "changed",
                         G_CALLBACK(compose_changed_cb), compose);
 
@@ -6224,6 +6708,12 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        paned = gtk_vpaned_new();
        gtk_paned_set_gutter_size(GTK_PANED(paned), 12);
        gtk_container_add(GTK_CONTAINER(vbox2), paned);
+#ifdef MAEMO
+       if( maemo_mainwindow_is_fullscreen(mainwindow_get_mainwindow()->window) )
+               gtk_widget_set_size_request(edit_vbox, -1, mode == COMPOSE_NEW ? 300 : 280);
+       else
+               gtk_widget_set_size_request(edit_vbox, -1, mode == COMPOSE_NEW ? 250 : 230);
+#endif
        gtk_paned_add1(GTK_PANED(paned), notebook);
        gtk_paned_add2(GTK_PANED(paned), edit_vbox);
        gtk_widget_show_all(paned);
@@ -6268,6 +6758,9 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
 
        compose->paned = paned;
 
+       compose->attach_label  = attach_lab2;
+
+       compose->notebook      = notebook;
        compose->edit_vbox     = edit_vbox;
        compose->ruler_hbox    = ruler_hbox;
        compose->ruler         = ruler;
@@ -6320,7 +6813,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        compose->exteditor_file    = NULL;
        compose->exteditor_pid     = -1;
        compose->exteditor_tag     = -1;
-       compose->draft_timeout_tag = -1;
+       compose->draft_timeout_tag = -2; /* inhibit auto-drafting while loading */
 
 #if USE_ASPELL
        menu_set_sensitive(ifactory, "/Spelling", FALSE);
@@ -6329,11 +6822,13 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
                    strcmp(prefs_common.dictionary, "")) {
                        gtkaspell = gtkaspell_new(prefs_common.aspell_path,
                                                  prefs_common.dictionary,
+                                                 prefs_common.alt_dictionary,
                                                  conv_get_locale_charset_str(),
                                                  prefs_common.misspelled_col,
                                                  prefs_common.check_while_typing,
                                                  prefs_common.recheck_when_changing_dict,
                                                  prefs_common.use_alternate,
+                                                 prefs_common.use_both_dicts,
                                                  GTK_TEXT_VIEW(text),
                                                  GTK_WINDOW(compose->window),
                                                  compose_spell_menu_changed,
@@ -6375,9 +6870,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
        menu_set_sensitive(ifactory, "/Options/Reply mode", compose->mode == COMPOSE_REPLY);
 
        if (account->protocol != A_NNTP)
-               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("To:") : "To:");
+               gtk_entry_set_text(GTK_ENTRY(GTK_BIN(compose->header_last->combo)->child),
+                               prefs_common_translated_header_name("To:"));
        else
-               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:");
+               gtk_entry_set_text(GTK_ENTRY(GTK_BIN(compose->header_last->combo)->child),
+                               prefs_common_translated_header_name("Newsgroups:"));
 
        addressbook_set_target_compose(compose);
        
@@ -6415,6 +6912,10 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode,
                gtk_widget_realize(window);
        } else {
                gtk_widget_show(window);
+#ifdef MAEMO
+               maemo_window_full_screen_if_needed(GTK_WINDOW(window));
+               maemo_connect_key_press_to_mainwindow(GTK_WINDOW(window));
+#endif
        }
        
        return compose;
@@ -6477,6 +6978,9 @@ static GtkWidget *compose_account_option_menu_create(Compose *compose)
        g_signal_connect(G_OBJECT(optmenu), "changed",
                        G_CALLBACK(account_activated),
                        compose);
+       g_signal_connect(G_OBJECT(from_name), "populate-popup",
+                        G_CALLBACK(compose_entry_popup_extend),
+                        NULL);
 
        gtk_box_pack_start(GTK_BOX(hbox), optmenubox, FALSE, FALSE, 0);
        gtk_box_pack_start(GTK_BOX(hbox), from_name, TRUE, TRUE, 0);
@@ -6507,8 +7011,7 @@ static void compose_reply_change_mode(gpointer data,
        gboolean was_modified = compose->modified;
 
        gboolean all = FALSE, ml = FALSE, sender = FALSE, followup = FALSE;
-       if (compose->mode != COMPOSE_REPLY)
-               return;
+       
        g_return_if_fail(compose->replyinfo != NULL);
        
        if (action == COMPOSE_REPLY && prefs_common.default_reply_list)
@@ -6524,6 +7027,14 @@ static void compose_reply_change_mode(gpointer data,
 
        compose_remove_header_entries(compose);
        compose_reply_set_entry(compose, compose->replyinfo, all, ml, sender, followup);
+       if (compose->account->set_autocc && compose->account->auto_cc)
+               compose_entry_append(compose, compose->account->auto_cc, COMPOSE_CC);
+
+       if (compose->account->set_autobcc && compose->account->auto_bcc) 
+               compose_entry_append(compose, compose->account->auto_bcc, COMPOSE_BCC);
+       
+       if (compose->account->set_autoreplyto && compose->account->auto_replyto)
+               compose_entry_append(compose, compose->account->auto_replyto, COMPOSE_REPLYTO);
        compose_show_first_last_header(compose, TRUE);
        compose->modified = was_modified;
        compose_set_title(compose);
@@ -6637,12 +7148,9 @@ static void compose_update_privacy_system_menu_item(Compose * compose, gboolean
                        gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                
                if (warn && !found && strlen(compose->privacy_system)) {
-                       gchar *tmp = g_strdup_printf(
-                               _("The privacy system '%s' cannot be loaded. You "
+                       alertpanel_warning(_("The privacy system '%s' cannot be loaded. You "
                                  "will not be able to sign or encrypt this message."),
                                  compose->privacy_system);
-                       alertpanel_warning(tmp);
-                       g_free(tmp);
                }
        } 
 
@@ -6719,7 +7227,7 @@ void compose_update_actions_menu(Compose *compose)
        action_update_compose_menu(ifactory, "/Tools/Actions", compose);
 }
 
-void compose_update_privacy_systems_menu(Compose *compose)
+static void compose_update_privacy_systems_menu(Compose *compose)
 {
        static gchar *branch_path = "/Options/Privacy System";
        GtkItemFactory *ifactory;
@@ -6790,6 +7298,44 @@ void compose_reflect_prefs_pixmap_theme(void)
        }
 }
 
+static const gchar *compose_quote_char_from_context(Compose *compose)
+{
+       const gchar *qmark = NULL;
+
+       g_return_val_if_fail(compose != NULL, NULL);
+
+       switch (compose->mode) {
+               /* use forward-specific quote char */
+               case COMPOSE_FORWARD:
+               case COMPOSE_FORWARD_AS_ATTACH:
+               case COMPOSE_FORWARD_INLINE:
+                       if (compose->folder && compose->folder->prefs &&
+                                       compose->folder->prefs->forward_with_format)
+                               qmark = compose->folder->prefs->forward_quotemark;
+                       else if (compose->account->forward_with_format)
+                               qmark = compose->account->forward_quotemark;
+                       else
+                               qmark = prefs_common.fw_quotemark;
+                       break;
+
+               /* use reply-specific quote char in all other modes */
+               default:
+                       if (compose->folder && compose->folder->prefs &&
+                                       compose->folder->prefs->reply_with_format)
+                               qmark = compose->folder->prefs->reply_quotemark;
+                       else if (compose->account->reply_with_format)
+                               qmark = compose->account->reply_quotemark;
+                       else
+                               qmark = prefs_common.quotemark;
+                       break;
+       }
+
+       if (qmark == NULL || *qmark == '\0')
+               qmark = "> ";
+
+       return qmark;
+}
+
 static void compose_template_apply(Compose *compose, Template *tmpl,
                                   gboolean replace)
 {
@@ -6797,10 +7343,10 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
        GtkTextBuffer *buffer;
        GtkTextMark *mark;
        GtkTextIter iter;
-       gchar *qmark;
+       const gchar *qmark;
        gchar *parsed_str = NULL;
        gint cursor_pos = 0;
-       const gchar *err_msg = _("Template body format error.");
+       const gchar *err_msg = _("Template body format error at line %d.");
        if (!tmpl) return;
 
        /* process the body */
@@ -6809,10 +7355,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
        buffer = gtk_text_view_get_buffer(text);
 
        if (tmpl->value) {
-               if (prefs_common.quotemark && *prefs_common.quotemark)
-                       qmark = prefs_common.quotemark;
-               else
-                       qmark = "> ";
+               qmark = compose_quote_char_from_context(compose);
 
                if (compose->replyinfo != NULL) {
 
@@ -6822,7 +7365,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
                        gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
 
                        parsed_str = compose_quote_fmt(compose, compose->replyinfo,
-                                                  tmpl->value, qmark, NULL, FALSE, err_msg);
+                                                  tmpl->value, qmark, NULL, FALSE, FALSE, err_msg);
 
                } else if (compose->fwdinfo != NULL) {
 
@@ -6832,7 +7375,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
                        gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
 
                        parsed_str = compose_quote_fmt(compose, compose->fwdinfo,
-                                                  tmpl->value, qmark, NULL, FALSE, err_msg);
+                                                  tmpl->value, qmark, NULL, FALSE, FALSE, err_msg);
 
                } else {
                        MsgInfo* dummyinfo = compose_msginfo_new_from_compose(compose);
@@ -6849,7 +7392,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
                                gtk_text_buffer_set_text(buffer, "", -1);
 
                        parsed_str = compose_quote_fmt(compose, dummyinfo,
-                                                          tmpl->value, qmark, tmp, FALSE, err_msg);
+                                                          tmpl->value, qmark, tmp, FALSE, FALSE, err_msg);
                        procmsg_msginfo_free( dummyinfo );
 
                        g_free( tmp );
@@ -6882,11 +7425,12 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
        /* process the other fields */
 
        compose_template_apply_fields(compose, tmpl);
+       compose_attach_from_list(compose, quote_fmt_get_attachments_list(), FALSE);
        quote_fmt_reset_vartable();
        compose_changed_cb(NULL, compose);
 }
 
-void compose_template_apply_fields(Compose *compose, Template *tmpl)
+static void compose_template_apply_fields(Compose *compose, Template *tmpl)
 {
        MsgInfo* dummyinfo = NULL;
        MsgInfo *msginfo = NULL;
@@ -6902,39 +7446,54 @@ void compose_template_apply_fields(Compose *compose, Template *tmpl)
        }
 
        if (tmpl->to && *tmpl->to != '\0') {
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account);
+#endif
                quote_fmt_scan_string(tmpl->to);
                quote_fmt_parse();
 
                buf = quote_fmt_get_buffer();
                if (buf == NULL) {
-                       alertpanel_error(_("Message To format error."));
+                       alertpanel_error(_("Template To format error."));
                } else {
                        compose_entry_append(compose, buf, COMPOSE_TO);
                }
        }
 
        if (tmpl->cc && *tmpl->cc != '\0') {
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account);
+#endif
                quote_fmt_scan_string(tmpl->cc);
                quote_fmt_parse();
 
                buf = quote_fmt_get_buffer();
                if (buf == NULL) {
-                       alertpanel_error(_("Message Cc format error."));
+                       alertpanel_error(_("Template Cc format error."));
                } else {
                        compose_entry_append(compose, buf, COMPOSE_CC);
                }
        }
 
        if (tmpl->bcc && *tmpl->bcc != '\0') {
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account);
+#endif
                quote_fmt_scan_string(tmpl->bcc);
                quote_fmt_parse();
 
                buf = quote_fmt_get_buffer();
                if (buf == NULL) {
-                       alertpanel_error(_("Message Bcc format error."));
+                       alertpanel_error(_("Template Bcc format error."));
                } else {
                        compose_entry_append(compose, buf, COMPOSE_BCC);
                }
@@ -6942,13 +7501,18 @@ void compose_template_apply_fields(Compose *compose, Template *tmpl)
 
        /* process the subject */
        if (tmpl->subject && *tmpl->subject != '\0') {
+#ifdef USE_ASPELL
+               quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account,
+                               compose->gtkaspell);
+#else
                quote_fmt_init(msginfo, NULL, NULL, FALSE, compose->account);
+#endif
                quote_fmt_scan_string(tmpl->subject);
                quote_fmt_parse();
 
                buf = quote_fmt_get_buffer();
                if (buf == NULL) {
-                       alertpanel_error(_("Message subject format error."));
+                       alertpanel_error(_("Template subject format error."));
                } else {
                        gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf);
                }
@@ -7045,6 +7609,30 @@ static void compose_attach_info_free(AttachInfo *ainfo)
        g_free(ainfo);
 }
 
+static void compose_attach_update_label(Compose *compose)
+{
+       GtkTreeIter iter;
+       gint i = 1;
+       gchar *text;
+       GtkTreeModel *model;
+       
+       if(compose == NULL)
+               return;
+               
+       model = gtk_tree_view_get_model(GTK_TREE_VIEW(compose->attach_clist));
+       if(!gtk_tree_model_get_iter_first(model, &iter)) {
+               gtk_label_set_text(GTK_LABEL(compose->attach_label), "");       
+               return;
+       }
+       
+       while(gtk_tree_model_iter_next(model, &iter))
+               i++;
+       
+       text = g_strdup_printf("(%d)", i);
+       gtk_label_set_text(GTK_LABEL(compose->attach_label), text);
+       g_free(text);
+}
+
 static void compose_attach_remove_selected(Compose *compose)
 {
        GtkTreeView *tree_view = GTK_TREE_VIEW(compose->attach_clist);
@@ -7079,6 +7667,7 @@ static void compose_attach_remove_selected(Compose *compose)
        }
 
        g_list_free(sel);
+       compose_attach_update_label(compose);
 }
 
 static struct _AttachProperty
@@ -7257,7 +7846,7 @@ static void compose_attach_property_create(gboolean *cancelled)
 
        debug_print("Creating attach_property window...\n");
 
-       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+       window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "compose_attach_property");
        gtk_widget_set_size_request(window, 480, -1);
        gtk_container_set_border_width(GTK_CONTAINER(window), 8);
        gtk_window_set_title(GTK_WINDOW(window), _("Properties"));
@@ -7282,7 +7871,7 @@ static void compose_attach_property_create(gboolean *cancelled)
        gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, (0 + 1), 
                         GTK_FILL, 0, 0, 0); 
        gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); 
-       mimetype_entry = gtk_combo_new(); 
+       mimetype_entry = gtk_combo_box_entry_new_text(); 
        gtk_table_attach(GTK_TABLE(table), mimetype_entry, 1, 2, 0, (0 + 1), 
                         GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
                         
@@ -7302,14 +7891,14 @@ static void compose_attach_property_create(gboolean *cancelled)
                                        (GCompareFunc)strcmp2);
        }
 
-       gtk_combo_set_popdown_strings(GTK_COMBO(mimetype_entry), strlist);
-
        for (mime_type_list = strlist; mime_type_list != NULL; 
-               mime_type_list = mime_type_list->next)
+               mime_type_list = mime_type_list->next) {
+               gtk_combo_box_append_text(GTK_COMBO_BOX(mimetype_entry), mime_type_list->data);
                g_free(mime_type_list->data);
+       }
        g_list_free(strlist);
-                        
-       mimetype_entry = GTK_COMBO(mimetype_entry)->entry;                       
+       gtk_combo_box_set_active(GTK_COMBO_BOX(mimetype_entry), 0);              
+       mimetype_entry = GTK_BIN(mimetype_entry)->child;                         
 
        label = gtk_label_new(_("Encoding"));
        gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
@@ -7837,13 +8426,13 @@ static void compose_send_cb(gpointer data, guint action, GtkWidget *widget)
        Compose *compose = (Compose *)data;
        
        if (prefs_common.work_offline && 
-           !inc_offline_should_override(
+           !inc_offline_should_override(TRUE,
                _("Claws Mail needs network access in order "
                  "to send this email.")))
                return;
        
-       if (compose->draft_timeout_tag != -1) { /* CLAWS: disable draft timeout */
-               gtk_timeout_remove(compose->draft_timeout_tag);
+       if (compose->draft_timeout_tag >= 0) { /* CLAWS: disable draft timeout */
+               g_source_remove(compose->draft_timeout_tag);
                compose->draft_timeout_tag = -1;
        }
 
@@ -7876,16 +8465,29 @@ static void compose_send_later_cb(gpointer data, guint action,
        } else if (val == -5) {
                alertpanel_error(_("Could not queue message for sending:\n\n"
                                   "Couldn't get recipient encryption key."));
+       } else if (val == -6) {
+               /* silent error */
        }
        toolbar_main_set_sensitive(mainwindow_get_mainwindow());
 }
 
-void compose_draft (gpointer data) 
+#define DRAFTED_AT_EXIT "drafted_at_exit"
+static void compose_register_draft(MsgInfo *info)
 {
-       compose_draft_cb(data, COMPOSE_QUIT_EDITING, NULL);     
+       gchar *filepath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
+                                     DRAFTED_AT_EXIT, NULL);
+       FILE *fp = fopen(filepath, "ab");
+       
+       if (fp) {
+               fprintf(fp, "%s\t%d\n", folder_item_get_identifier(info->folder), 
+                               info->msgnum);
+               fclose(fp);
+       }
+               
+       g_free(filepath);       
 }
 
-static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
+gboolean compose_draft (gpointer data, guint action) 
 {
        Compose *compose = (Compose *)data;
        FolderItem *draft;
@@ -7896,11 +8498,15 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        MsgInfo *newmsginfo;
        FILE *fp;
        gboolean target_locked = FALSE;
-       
-       if (lock) return;
+       gboolean err = FALSE;
+
+       if (lock) return FALSE;
+
+       if (compose->sending)
+               return TRUE;
 
        draft = account_get_special_folder(compose->account, F_DRAFT);
-       g_return_if_fail(draft != NULL);
+       g_return_val_if_fail(draft != NULL, FALSE);
        
        if (!g_mutex_trylock(compose->mutex)) {
                /* we don't want to lock the mutex once it's available,
@@ -7908,7 +8514,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                 * it is compose_close - which means once unlocked,
                 * the compose struct will be freed */
                debug_print("couldn't lock mutex, probably sending\n");
-               return;
+               return FALSE;
        }
        
        lock = TRUE;
@@ -7917,7 +8523,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                              G_DIR_SEPARATOR, compose);
        if ((fp = g_fopen(tmp, "wb")) == NULL) {
                FILE_OP_ERROR(tmp, "fopen");
-               goto unlock;
+               goto warn_err;
        }
 
        /* chmod for security */
@@ -7927,23 +8533,23 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        }
 
        /* Save draft infos */
-       fprintf(fp, "X-Sylpheed-Account-Id:%d\n", compose->account->account_id);
-       fprintf(fp, "S:%s\n", compose->account->address);
+       err |= (fprintf(fp, "X-Claws-Account-Id:%d\n", compose->account->account_id) < 0);
+       err |= (fprintf(fp, "S:%s\n", compose->account->address) < 0);
 
        if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
                gchar *savefolderid;
 
                savefolderid = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
-               fprintf(fp, "SCF:%s\n", savefolderid);
+               err |= (fprintf(fp, "SCF:%s\n", savefolderid) < 0);
                g_free(savefolderid);
        }
        if (compose->return_receipt) {
-               fprintf(fp, "RRCPT:1\n");
+               err |= (fprintf(fp, "RRCPT:1\n") < 0);
        }
        if (compose->privacy_system) {
-               fprintf(fp, "X-Sylpheed-Sign:%d\n", compose->use_signing);
-               fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
-               fprintf(fp, "X-Sylpheed-Privacy-System:%s\n", compose->privacy_system);
+               err |= (fprintf(fp, "X-Claws-Sign:%d\n", compose->use_signing) < 0);
+               err |= (fprintf(fp, "X-Claws-Encrypt:%d\n", compose->use_encryption) < 0);
+               err |= (fprintf(fp, "X-Claws-Privacy-System:%s\n", compose->privacy_system) < 0);
        }
 
        /* Message-ID of message replying to */
@@ -7951,7 +8557,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                gchar *folderid;
                
                folderid = folder_item_get_identifier(compose->replyinfo->folder);
-               fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid);
+               err |= (fprintf(fp, "RMID:%s\t%d\t%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid) < 0);
                g_free(folderid);
        }
        /* Message-ID of message forwarding to */
@@ -7959,20 +8565,25 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                gchar *folderid;
                
                folderid = folder_item_get_identifier(compose->fwdinfo->folder);
-               fprintf(fp, "FMID:%s\t%d\t%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid);
+               err |= (fprintf(fp, "FMID:%s\t%d\t%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid) < 0);
                g_free(folderid);
        }
 
        /* end of headers */
-       fprintf(fp, "X-Sylpheed-End-Special-Headers: 1\n");
+       err |= (fprintf(fp, "X-Claws-End-Special-Headers: 1\n") < 0);
+
+       if (err) {
+               fclose(fp);
+               goto warn_err;
+       }
 
        if (compose_write_to_file(compose, fp, COMPOSE_WRITE_FOR_STORE, action != COMPOSE_AUTO_SAVE) < 0) {
                fclose(fp);
-               g_unlink(tmp);
-               g_free(tmp);
-               goto unlock;
+               goto warn_err;
+       }
+       if (fclose(fp) == EOF) {
+               goto warn_err;
        }
-       fclose(fp);
        
        if (compose->targetinfo) {
                target_locked = MSG_IS_LOCKED(compose->targetinfo->flags);
@@ -7982,10 +8593,48 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 
        folder_item_scan(draft);
        if ((msgnum = folder_item_add_msg(draft, tmp, &flag, TRUE)) < 0) {
+               MsgInfo *tmpinfo = NULL;
+               debug_print("didn't get msgnum after adding draft [%s]\n", compose->msgid?compose->msgid:"no msgid");
+               if (compose->msgid) {
+                       tmpinfo = folder_item_get_msginfo_by_msgid(draft, compose->msgid);
+               }
+               if (tmpinfo) {
+                       msgnum = tmpinfo->msgnum;
+                       procmsg_msginfo_free(tmpinfo);
+                       debug_print("got draft msgnum %d from scanning\n", msgnum);
+               } else {
+                       debug_print("didn't get draft msgnum after scanning\n");
+               }
+       } else {
+               debug_print("got draft msgnum %d from adding\n", msgnum);
+       }
+       if (msgnum < 0) {
+warn_err:
                g_unlink(tmp);
                g_free(tmp);
-               if (action != COMPOSE_AUTO_SAVE)
-                       alertpanel_error(_("Could not save draft."));
+               if (action != COMPOSE_AUTO_SAVE) {
+                       if (action != COMPOSE_DRAFT_FOR_EXIT)
+                               alertpanel_error(_("Could not save draft."));
+                       else {
+                               AlertValue val;
+                               gtkut_window_popup(compose->window);
+                               val = alertpanel_full(_("Could not save draft"),
+                                       _("Could not save draft.\n"
+                                       "Do you want to cancel exit or discard this email?"),
+                                         _("_Cancel exit"), _("_Discard email"), NULL,
+                                         FALSE, NULL, ALERT_QUESTION, G_ALERTDEFAULT);
+                               if (val == G_ALERTALTERNATE) {
+                                       lock = FALSE;
+                                       g_mutex_unlock(compose->mutex); /* must be done before closing */
+                                       compose_close(compose);
+                                       return TRUE;
+                               } else {
+                                       lock = FALSE;
+                                       g_mutex_unlock(compose->mutex); /* must be done before closing */
+                                       return FALSE;
+                               }
+                       }
+               }
                goto unlock;
        }
        g_free(tmp);
@@ -7995,6 +8644,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        }
 
        newmsginfo = folder_item_get_msginfo(draft, msgnum);
+
        if (newmsginfo) {
                procmsg_msginfo_unset_flags(newmsginfo, ~0, ~0);
                if (target_locked)
@@ -8005,23 +8655,26 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                        procmsg_msginfo_set_flags(newmsginfo, 0,
                                                  MSG_HAS_ATTACHMENT);
 
+               if (action == COMPOSE_DRAFT_FOR_EXIT) {
+                       compose_register_draft(newmsginfo);
+               }
                procmsg_msginfo_free(newmsginfo);
        }
        
        folder_item_scan(draft);
        
-       if (action == COMPOSE_QUIT_EDITING) {
+       if (action == COMPOSE_QUIT_EDITING || action == COMPOSE_DRAFT_FOR_EXIT) {
                lock = FALSE;
                g_mutex_unlock(compose->mutex); /* must be done before closing */
                compose_close(compose);
-               return;
+               return TRUE;
        } else {
                struct stat s;
                gchar *path;
 
                path = folder_item_fetch_msg(draft, msgnum);
                if (path == NULL) {
-                       debug_print("can't fetch %s:%d\n",draft->path, msgnum);
+                       debug_print("can't fetch %s:%d\n", draft->path, msgnum);
                        goto unlock;
                }
                if (g_stat(path, &s) < 0) {
@@ -8050,19 +8703,54 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 unlock:
        lock = FALSE;
        g_mutex_unlock(compose->mutex);
+       return TRUE;
 }
 
-static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
+void compose_clear_exit_drafts(void)
 {
-       Compose *compose = (Compose *)data;
-       GList *file_list;
+       gchar *filepath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
+                                     DRAFTED_AT_EXIT, NULL);
+       if (is_file_exist(filepath))
+               g_unlink(filepath);
+       
+       g_free(filepath);
+}
 
-       if (compose->redirect_filename != NULL)
-               return;
+void compose_reopen_exit_drafts(void)
+{
+       gchar *filepath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
+                                     DRAFTED_AT_EXIT, NULL);
+       FILE *fp = fopen(filepath, "rb");
+       gchar buf[1024];
+       
+       if (fp) {
+               while (fgets(buf, sizeof(buf), fp)) {
+                       gchar **parts = g_strsplit(buf, "\t", 2);
+                       const gchar *folder = parts[0];
+                       int msgnum = parts[1] ? atoi(parts[1]):-1;
+                       
+                       if (folder && *folder && msgnum > -1) {
+                               FolderItem *item = folder_find_item_from_identifier(folder);
+                               MsgInfo *info = folder_item_get_msginfo(item, msgnum);
+                               if (info)
+                                       compose_reedit(info, FALSE);
+                       }
+                       g_strfreev(parts);
+               }       
+               fclose(fp);
+       }       
+       g_free(filepath);
+       compose_clear_exit_drafts();
+}
 
-       file_list = filesel_select_multiple_files_open(_("Select file"));
+static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
+{
+       compose_draft(data, action);
+}
 
-       if (file_list) {
+static void compose_attach_from_list(Compose *compose, GList *file_list, gboolean free_data)
+{
+       if (compose && file_list) {
                GList *tmp;
 
                for ( tmp = file_list; tmp; tmp = tmp->next) {
@@ -8070,11 +8758,29 @@ static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
                        gchar *utf8_filename = conv_filename_to_utf8(file);
                        compose_attach_append(compose, file, utf8_filename, NULL);
                        compose_changed_cb(NULL, compose);
+                       if (free_data) {
                        g_free(file);
+                               tmp->data = NULL;
+                       }
                        g_free(utf8_filename);
                }
+       }
+}
+
+static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
+{
+       Compose *compose = (Compose *)data;
+       GList *file_list;
+
+       if (compose->redirect_filename != NULL)
+               return;
+
+       file_list = filesel_select_multiple_files_open(_("Select file"));
+
+       if (file_list) {
+               compose_attach_from_list(compose, file_list, TRUE);
                g_list_free(file_list);
-       }               
+       }
 }
 
 static void compose_insert_file_cb(gpointer data, guint action,
@@ -8133,6 +8839,11 @@ static gint compose_delete_cb(GtkWidget *widget, GdkEventAny *event,
        return TRUE;
 }
 
+void compose_close_toolbar(Compose *compose)
+{
+       compose_close_cb(compose, 0, NULL);
+}
+
 static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
@@ -8324,15 +9035,21 @@ static void entry_allsel(GtkWidget *entry)
 
 static void compose_cut_cb(Compose *compose)
 {
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           )
                entry_cut_clipboard(compose->focused_editable);
 }
 
 static void compose_copy_cb(Compose *compose)
 {
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           )
                entry_copy_clipboard(compose->focused_editable);
 }
 
@@ -8352,8 +9069,11 @@ static void compose_paste_cb(Compose *compose)
 static void compose_paste_as_quote_cb(Compose *compose)
 {
        gint wrap_quote = prefs_common.linewrap_quote;
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable)) {
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           ) {
                /* let text_insert() (called directly or at a later time
                 * after the gtk_editable_paste_clipboard) know that 
                 * text is to be inserted as a quotation. implemented
@@ -8377,8 +9097,11 @@ static void compose_paste_no_wrap_cb(Compose *compose)
        gint prev_autowrap;
        GtkTextBuffer *buffer;
        BLOCK_WRAP();
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           )
                entry_paste_clipboard(compose, compose->focused_editable, FALSE,
                        GDK_SELECTION_CLIPBOARD, NULL);
        UNBLOCK_WRAP();
@@ -8389,8 +9112,11 @@ static void compose_paste_wrap_cb(Compose *compose)
        gint prev_autowrap;
        GtkTextBuffer *buffer;
        BLOCK_WRAP();
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           )
                entry_paste_clipboard(compose, compose->focused_editable, TRUE,
                        GDK_SELECTION_CLIPBOARD, NULL);
        UNBLOCK_WRAP();
@@ -8398,8 +9124,11 @@ static void compose_paste_wrap_cb(Compose *compose)
 
 static void compose_allsel_cb(Compose *compose)
 {
-       if (compose->focused_editable &&
-           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+       if (compose->focused_editable 
+#ifndef MAEMO
+           && GTK_WIDGET_HAS_FOCUS(compose->focused_editable)
+#endif
+           )
                entry_allsel(compose->focused_editable);
 }
 
@@ -8722,12 +9451,52 @@ static void compose_grab_focus_cb(GtkWidget *widget, Compose *compose)
 
        if (GTK_IS_EDITABLE(widget) || GTK_IS_TEXT_VIEW(widget))
                compose->focused_editable = widget;
+       
+#ifdef MAEMO
+       if (GTK_IS_TEXT_VIEW(widget) 
+           && gtk_paned_get_child1(GTK_PANED(compose->paned)) != compose->edit_vbox) {
+               gtk_widget_ref(compose->notebook);
+               gtk_widget_ref(compose->edit_vbox);
+               gtk_container_remove(GTK_CONTAINER(compose->paned), compose->notebook);
+               gtk_container_remove(GTK_CONTAINER(compose->paned), compose->edit_vbox);
+               gtk_paned_add1(GTK_PANED(compose->paned), compose->edit_vbox);
+               gtk_paned_add2(GTK_PANED(compose->paned), compose->notebook);
+               gtk_widget_unref(compose->notebook);
+               gtk_widget_unref(compose->edit_vbox);
+               g_signal_handlers_block_by_func(G_OBJECT(widget),
+                                       G_CALLBACK(compose_grab_focus_cb),
+                                       compose);
+               gtk_widget_grab_focus(widget);
+               g_signal_handlers_unblock_by_func(G_OBJECT(widget),
+                                       G_CALLBACK(compose_grab_focus_cb),
+                                       compose);
+       } else if (!GTK_IS_TEXT_VIEW(widget) 
+                  && gtk_paned_get_child1(GTK_PANED(compose->paned)) != compose->notebook) {
+               gtk_widget_ref(compose->notebook);
+               gtk_widget_ref(compose->edit_vbox);
+               gtk_container_remove(GTK_CONTAINER(compose->paned), compose->notebook);
+               gtk_container_remove(GTK_CONTAINER(compose->paned), compose->edit_vbox);
+               gtk_paned_add1(GTK_PANED(compose->paned), compose->notebook);
+               gtk_paned_add2(GTK_PANED(compose->paned), compose->edit_vbox);
+               gtk_widget_unref(compose->notebook);
+               gtk_widget_unref(compose->edit_vbox);
+               g_signal_handlers_block_by_func(G_OBJECT(widget),
+                                       G_CALLBACK(compose_grab_focus_cb),
+                                       compose);
+               gtk_widget_grab_focus(widget);
+               g_signal_handlers_unblock_by_func(G_OBJECT(widget),
+                                       G_CALLBACK(compose_grab_focus_cb),
+                                       compose);
+       }
+#endif
 }
 
 static void compose_changed_cb(GtkTextBuffer *textbuf, Compose *compose)
 {
        compose->modified = TRUE;
+#ifndef MAEMO
        compose_set_title(compose);
+#endif
 }
 
 static void compose_wrap_cb(gpointer data, guint action, GtkWidget *widget)
@@ -8819,10 +9588,13 @@ static void compose_attach_drag_received_cb (GtkWidget          *widget,
            && gtk_drag_get_source_widget(context) != 
                summary_get_main_widget(mainwindow_get_mainwindow()->summaryview)) {
                list = uri_list_extract_filenames((const gchar *)data->data);
-               for (tmp = list; tmp != NULL; tmp = tmp->next)
+               for (tmp = list; tmp != NULL; tmp = tmp->next) {
+                       gchar *utf8_filename = conv_filename_to_utf8((const gchar *)tmp->data);
                        compose_attach_append
                                (compose, (const gchar *)tmp->data,
-                                (const gchar *)tmp->data, NULL);
+                                utf8_filename, NULL);
+                       g_free(utf8_filename);
+               }
                if (list) compose_changed_cb(NULL, compose);
                list_free_strings(list);
                g_list_free(list);
@@ -8992,7 +9764,7 @@ static void compose_toggle_remove_refs_cb(gpointer data, guint action,
                compose->remove_references = FALSE;
 }
 
-gboolean compose_headerentry_key_press_event_cb(GtkWidget *entry,
+static gboolean compose_headerentry_key_press_event_cb(GtkWidget *entry,
                                            GdkEventKey *event,
                                            ComposeHeaderEntry *headerentry)
 {
@@ -9024,14 +9796,10 @@ gboolean compose_headerentry_key_press_event_cb(GtkWidget *entry,
        return FALSE;
 }
 
-gboolean compose_headerentry_changed_cb(GtkWidget *entry,
+static gboolean compose_headerentry_changed_cb(GtkWidget *entry,
                                    ComposeHeaderEntry *headerentry)
 {
        if (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) != 0) {
-               headerentry->compose->header_list =
-                       g_slist_append(headerentry->compose->header_list,
-                                      headerentry);
-               
                compose_create_header_entry(headerentry->compose);
                g_signal_handlers_disconnect_matched
                        (G_OBJECT(entry), G_SIGNAL_MATCH_DATA,
@@ -9054,6 +9822,7 @@ static void compose_show_first_last_header(Compose *compose, gboolean show_first
 
        vadj = gtk_viewport_get_vadjustment(GTK_VIEWPORT(compose->header_table->parent));
        gtk_adjustment_set_value(vadj, (show_first ? vadj->lower : vadj->upper));
+       gtk_adjustment_changed(vadj);
 }
 
 static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
@@ -9070,22 +9839,24 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                                        compose);
        if (paste_as_quotation) {
                gchar *new_text;
-               gchar *qmark;
+               const gchar *qmark;
+               guint pos = 0;
+               GtkTextIter start_iter;
 
                if (len < 0)
                        len = strlen(text);
 
                new_text = g_strndup(text, len);
-               if (prefs_common.quotemark && *prefs_common.quotemark)
-                       qmark = prefs_common.quotemark;
-               else
-                       qmark = "> ";
+
+               qmark = compose_quote_char_from_context(compose);
 
                mark = gtk_text_buffer_create_mark(buffer, NULL, iter, FALSE);
                gtk_text_buffer_place_cursor(buffer, iter);
 
-               compose_quote_fmt(compose, NULL, "%Q", qmark, new_text, TRUE,
-                                                 _("Quote format error."));
+               pos = gtk_text_iter_get_offset(iter);
+
+               compose_quote_fmt(compose, NULL, "%Q", qmark, new_text, TRUE, FALSE,
+                                                 _("Quote format error at line %d."));
                quote_fmt_reset_vartable();
                g_free(new_text);
                g_object_set_data(G_OBJECT(compose->text), "paste_as_quotation",
@@ -9093,8 +9864,15 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                                  
                gtk_text_buffer_get_iter_at_mark(buffer, iter, mark);
                gtk_text_buffer_place_cursor(buffer, iter);
+               gtk_text_buffer_delete_mark(buffer, mark);
+
+               gtk_text_buffer_get_iter_at_offset(buffer, &start_iter, pos);
+               mark = gtk_text_buffer_create_mark(buffer, NULL, &start_iter, FALSE);
+               compose_beautify_paragraph(compose, &start_iter, FALSE);
+               gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, mark);
+               gtk_text_buffer_delete_mark(buffer, mark);
        } else {
-               if (strcmp(text, "\n") || automatic_break
+               if (strcmp(text, "\n") || compose->automatic_break
                || gtk_text_iter_starts_line(iter))
                        gtk_text_buffer_insert(buffer, iter, text, len);
                else {
@@ -9104,12 +9882,12 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                }
        }
        
-       mark = gtk_text_buffer_create_mark(buffer, NULL, iter, FALSE);
-       
-       compose_beautify_paragraph(compose, iter, FALSE);
-
-       gtk_text_buffer_get_iter_at_mark(buffer, iter, mark);
-       gtk_text_buffer_delete_mark(buffer, mark);
+       if (!paste_as_quotation) {
+               mark = gtk_text_buffer_create_mark(buffer, NULL, iter, FALSE);
+               compose_beautify_paragraph(compose, iter, FALSE);
+               gtk_text_buffer_get_iter_at_mark(buffer, iter, mark);
+               gtk_text_buffer_delete_mark(buffer, mark);
+       }
 
        g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
                                          G_CALLBACK(text_inserted),
@@ -9117,8 +9895,9 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
        g_signal_stop_emission_by_name(G_OBJECT(buffer), "insert-text");
 
        if (prefs_common.autosave && 
-           gtk_text_buffer_get_char_count(buffer) % prefs_common.autosave_length == 0)
-               compose->draft_timeout_tag = gtk_timeout_add
+           gtk_text_buffer_get_char_count(buffer) % prefs_common.autosave_length == 0 &&
+           compose->draft_timeout_tag != -2 /* disabled while loading */)
+               compose->draft_timeout_tag = g_timeout_add
                        (500, (GtkFunction) compose_defer_auto_save_draft, compose);
 }
 static gint compose_defer_auto_save_draft(Compose *compose)
@@ -9194,9 +9973,20 @@ static PrefsAccount *compose_guess_forward_account_from_msginfo(MsgInfo *msginfo
        if (!account && prefs_common.forward_account_autosel) {
                gchar cc[BUFFSIZE];
                if (!procheader_get_header_from_msginfo
-                       (msginfo, cc,sizeof cc , "CC:")) { /* Found a CC header */
-                       extract_address(cc);
-                       account = account_find_from_address(cc);
+                       (msginfo, cc,sizeof cc , "Cc:")) { 
+                       gchar *buf = cc + strlen("Cc:");
+                       extract_address(buf);
+                       account = account_find_from_address(buf);
+                }
+       }
+       
+       if (!account && prefs_common.forward_account_autosel) {
+               gchar deliveredto[BUFFSIZE];
+               if (!procheader_get_header_from_msginfo
+                       (msginfo, deliveredto,sizeof deliveredto , "Delivered-To:")) { 
+                       gchar *buf = deliveredto + strlen("Delivered-To:");
+                       extract_address(buf);
+                       account = account_find_from_address(buf);
                 }
        }
        
@@ -9212,6 +10002,7 @@ gboolean compose_close(Compose *compose)
                 * drafting to be done, before destroying the compose under
                 * it. */
                debug_print("waiting for drafting to finish...\n");
+               compose_allow_user_actions(compose, FALSE);
                g_timeout_add (500, (GSourceFunc) compose_close, compose);
                return FALSE;
        }
@@ -9256,17 +10047,20 @@ static void compose_reply_from_messageview_real(MessageView *msgview, GSList *ms
        if (g_slist_length(msginfo_list) == 1 && !opening_multiple) {
                MimeInfo *mimeinfo = messageview_get_selected_mime_part(msgview);
                MsgInfo *orig_msginfo = (MsgInfo *)msginfo_list->data;
-               
+
                if (mimeinfo != NULL && mimeinfo->type == MIMETYPE_MESSAGE && 
                    !g_ascii_strcasecmp(mimeinfo->subtype, "rfc822")) {
                        tmp_msginfo = procmsg_msginfo_new_from_mimeinfo(
                                                orig_msginfo, mimeinfo);
                        if (tmp_msginfo != NULL) {
                                new_msglist = g_slist_append(NULL, tmp_msginfo);
-                               if (procmime_msginfo_is_encrypted(orig_msginfo)) {
-                                       originally_enc = TRUE;
-                               }
-                       } 
+
+                               originally_enc = MSG_IS_ENCRYPTED(orig_msginfo->flags);
+                               tmp_msginfo->folder = orig_msginfo->folder;
+                               tmp_msginfo->msgnum = orig_msginfo->msgnum; 
+                               if (orig_msginfo->tags)
+                                       tmp_msginfo->tags = g_slist_copy(orig_msginfo->tags);
+                       }
                }
        }
 
@@ -9280,7 +10074,7 @@ static void compose_reply_from_messageview_real(MessageView *msgview, GSList *ms
        } else
                compose = compose_reply_mode((ComposeMode)action, msginfo_list, body);
 
-       if (originally_enc) {
+       if (compose && originally_enc) {
                compose_force_encryption(compose, compose->account, FALSE);
        }
 
@@ -9374,33 +10168,33 @@ static MsgInfo *compose_msginfo_new_from_compose(Compose *compose)
        for (list = compose->header_list; list; list = list->next) {
                gchar *header = gtk_editable_get_chars(
                                                                GTK_EDITABLE(
-                                                               GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
+                                                               GTK_BIN(((ComposeHeaderEntry *)list->data)->combo)->child), 0, -1);
                gchar *entry = gtk_editable_get_chars(
                                                                GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
 
-               if ( strcasecmp(header, (prefs_common.trans_hdr ? gettext("To:") : "To:")) == 0 ) {
+               if ( strcasecmp(header, prefs_common_translated_header_name("To:")) == 0 ) {
                        if ( newmsginfo->to == NULL ) {
                                newmsginfo->to = g_strdup(entry);
-                       } else {
+                       } else if (entry && *entry) {
                                gchar *tmp = g_strconcat(newmsginfo->to, ", ", entry, NULL);
                                g_free(newmsginfo->to);
                                newmsginfo->to = tmp;
                        }
                } else
-               if ( strcasecmp(header, (prefs_common.trans_hdr ? gettext("Cc:") : "Cc:")) == 0 ) {
+               if ( strcasecmp(header, prefs_common_translated_header_name("Cc:")) == 0 ) {
                        if ( newmsginfo->cc == NULL ) {
                                newmsginfo->cc = g_strdup(entry);
-                       } else {
+                       } else if (entry && *entry) {
                                gchar *tmp = g_strconcat(newmsginfo->cc, ", ", entry, NULL);
                                g_free(newmsginfo->cc);
                                newmsginfo->cc = tmp;
                        }
                } else
                if ( strcasecmp(header,
-                                               (prefs_common.trans_hdr ? gettext("Newsgroups:") : "Newsgroups:")) == 0 ) {
+                                               prefs_common_translated_header_name("Newsgroups:")) == 0 ) {
                        if ( newmsginfo->newsgroups == NULL ) {
                                newmsginfo->newsgroups = g_strdup(entry);
-                       } else {
+                       } else if (entry && *entry) {
                                gchar *tmp = g_strconcat(newmsginfo->newsgroups, ", ", entry, NULL);
                                g_free(newmsginfo->newsgroups);
                                newmsginfo->newsgroups = tmp;
@@ -9416,6 +10210,29 @@ static MsgInfo *compose_msginfo_new_from_compose(Compose *compose)
        return newmsginfo;
 }
 
+#ifdef USE_ASPELL
+/* update compose's dictionaries from folder dict settings */
+static void compose_set_dictionaries_from_folder_prefs(Compose *compose,
+                                               FolderItem *folder_item)
+{
+       g_return_if_fail(compose != NULL);
+
+       if (compose->gtkaspell && folder_item && folder_item->prefs) {
+               FolderItemPrefs *prefs = folder_item->prefs;
+
+               if (prefs->enable_default_dictionary)
+                       gtkaspell_change_dict(compose->gtkaspell,
+                                       prefs->default_dictionary, FALSE);
+               if (folder_item->prefs->enable_default_alt_dictionary)
+                       gtkaspell_change_alt_dict(compose->gtkaspell,
+                                       prefs->default_alt_dictionary);
+               if (prefs->enable_default_dictionary
+                       || prefs->enable_default_alt_dictionary)
+                       compose_spell_menu_changed(compose);
+       }
+}
+#endif
+
 /*
  * End of Source.
  */