Sync with hiro's cvs 10 to 17.
[claws.git] / src / compose.c
index d640069ebce5951ee8ac864ca19be074f22ab361..5332fa4f48f8aa272a28a3a7b0a953420513a925 100644 (file)
@@ -53,6 +53,8 @@
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
+#include <sys/types.h>
+#include <sys/stat.h>
 #include <unistd.h>
 #include <time.h>
 /* #include <sys/utsname.h> */
 #  include <wctype.h>
 #endif
 
-
-#include "gtkstext.h"
-
 #include "intl.h"
 #include "main.h"
 #include "mainwindow.h"
 #include "compose.h"
+#include "gtkstext.h"
 #include "addressbook.h"
 #include "folderview.h"
 #include "procmsg.h"
 #include "menu.h"
+#include "stock_pixmap.h"
 #include "send.h"
+#include "imap.h"
 #include "news.h"
 #include "customheader.h"
 #include "prefs_common.h"
 #include "gtkshruler.h"
 #include "folder.h"
 #include "addr_compl.h"
-#include "template_select.h"
+#include "quote_fmt.h"
+#include "template.h"
+#include "undo.h"
+#include "foldersel.h"
 
 #if USE_GPGME
 #  include "rfc2015.h"
 #endif
 
-#include "quote_fmt.h"
-
 typedef enum
 {
        COL_MIMETYPE = 0,
@@ -124,24 +127,33 @@ static GdkColor quote_color = {0, 0, 0, 0xbfff};
 
 static GList *compose_list = NULL;
 
+Compose *compose_generic_new                   (PrefsAccount   *account,
+                                                const gchar    *to,
+                                                FolderItem     *item);
+
 static Compose *compose_create                 (PrefsAccount   *account,
                                                 ComposeMode     mode);
 static void compose_toolbar_create             (Compose        *compose,
                                                 GtkWidget      *container);
 static GtkWidget *compose_account_option_menu_create
                                                (Compose        *compose);
+static void compose_set_template_menu          (Compose        *compose);
+static void compose_template_apply             (Compose        *compose,
+                                                Template       *tmpl);
 static void compose_destroy                    (Compose        *compose);
 
+static void compose_entries_set                        (Compose        *compose,
+                                                const gchar    *mailto);
 static gint compose_parse_header               (Compose        *compose,
                                                 MsgInfo        *msginfo);
 static gchar *compose_parse_references         (const gchar    *ref,
                                                 const gchar    *msgid);
-static void compose_quote_file                 (Compose        *compose,
-                                                MsgInfo        *msginfo,
-                                                FILE           *fp);
-static gchar *compose_quote_parse_fmt          (Compose        *compose,
+
+static gchar *compose_quote_fmt                        (Compose        *compose,
                                                 MsgInfo        *msginfo,
-                                                const gchar    *fmt);
+                                                const gchar    *fmt,
+                                                const gchar    *qmark);
+
 static void compose_reply_set_entry            (Compose        *compose,
                                                 MsgInfo        *msginfo,
                                                 gboolean        to_all,
@@ -175,7 +187,8 @@ static gint compose_save_to_outbox          (Compose        *compose,
                                                 const gchar    *file);
 static gint compose_remove_reedit_target       (Compose        *compose);
 static gint compose_queue                      (Compose        *compose,
-                                                const gchar    *file);
+                                                gint           *msgnum,
+                                                FolderItem     **item);
 static void compose_write_attach               (Compose        *compose,
                                                 FILE           *fp);
 static gint compose_write_headers              (Compose        *compose,
@@ -217,6 +230,11 @@ static void compose_input_cb                       (gpointer           data,
 static void compose_set_ext_editor_sensitive   (Compose           *compose,
                                                 gboolean           sensitive);
 
+static void compose_undo_state_changed         (UndoMain       *undostruct,
+                                                gint            undo_state,
+                                                gint            redo_state,
+                                                gpointer        data);
+
 static gint calc_cursor_xpos   (GtkSText       *text,
                                 gint            extra,
                                 gint            char_width);
@@ -248,12 +266,10 @@ static void toolbar_linewrap_cb           (GtkWidget      *widget,
                                         gpointer        data);
 static void toolbar_address_cb         (GtkWidget      *widget,
                                         gpointer        data);
-static void template_select_cb         (gpointer        daat,
-                                        guint           action,
-                                        GtkWidget      *widget);
 
+static void select_account             (Compose        *compose,
+                                        PrefsAccount   *ac);
 
-static void select_account(Compose * compose, PrefsAccount * ac);
 static void account_activated          (GtkMenuItem    *menuitem,
                                         gpointer        data);
 
@@ -290,9 +306,12 @@ static void compose_insert_file_cb (gpointer        data,
 static void compose_close_cb           (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
+
 static void compose_address_cb         (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
+static void compose_template_activate_cb(GtkWidget     *widget,
+                                        gpointer        data);
 
 static void compose_ext_editor_cb      (gpointer        data,
                                         guint           action,
@@ -304,6 +323,8 @@ static gint compose_delete_cb               (GtkWidget      *widget,
 static void compose_destroy_cb         (GtkWidget      *widget,
                                         Compose        *compose);
 
+static void compose_undo_cb            (Compose        *compose);
+static void compose_redo_cb            (Compose        *compose);
 static void compose_cut_cb             (Compose        *compose);
 static void compose_copy_cb            (Compose        *compose);
 static void compose_paste_cb           (Compose        *compose);
@@ -323,6 +344,7 @@ static void compose_key_press_cb    (GtkWidget      *widget,
                                         Compose        *compose);
 #endif
 
+#if 0
 static void compose_toggle_to_cb       (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
@@ -341,6 +363,7 @@ static void compose_toggle_followupto_cb(gpointer    data,
 static void compose_toggle_attach_cb   (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
+#endif
 static void compose_toggle_ruler_cb    (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
@@ -372,6 +395,7 @@ static void compose_insert_drag_received_cb (GtkWidget              *widget,
                                             guint               time,
                                             gpointer            user_data);
 
+#if 0
 static void to_activated               (GtkWidget      *widget,
                                         Compose        *compose);
 static void newsgroups_activated       (GtkWidget      *widget,
@@ -386,28 +410,25 @@ static void replyto_activated             (GtkWidget      *widget,
                                         Compose        *compose);
 static void followupto_activated       (GtkWidget      *widget,
                                         Compose        *compose);
-static void compose_attach_parts(Compose * compose,
-                                MsgInfo * msginfo);
+#endif
 
-static gchar *compose_quote_fmt                (Compose        *compose,
-                                        MsgInfo        *msginfo,
-                                        const gchar    *fmt,
-                                        const gchar    * qmark);
+static void compose_attach_parts       (Compose        *compose,
+                                        MsgInfo        *msginfo);
 
 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                                  gboolean to_all,
                                  gboolean ignore_replyto,
                                  gboolean followup_and_reply_to);
 
-void compose_headerentry_changed_cb    (GtkWidget *entry,
-                                        compose_headerentry *headerentry);
-void compose_headerentry_key_press_event_cb    (GtkWidget *entry,
-                                                GdkEventKey *event,
-                                                compose_headerentry *headerentry);
+void compose_headerentry_changed_cb       (GtkWidget          *entry,
+                                           ComposeHeaderEntry *headerentry);
+void compose_headerentry_key_press_event_cb(GtkWidget         *entry,
+                                           GdkEventKey        *event,
+                                           ComposeHeaderEntry *headerentry);
 
-Compose * compose_generic_new (PrefsAccount    *account,
-                              const gchar      *to,
-                              FolderItem       *item);
+static void compose_show_first_last_header (Compose *compose, gboolean show_first);
+
+static void compose_ctl_enter_send_shortcut_cb(GtkWidget *w, Compose *compose);
 
 static GtkItemFactoryEntry compose_popup_entries[] =
 {
@@ -426,28 +447,43 @@ static GtkItemFactoryEntry compose_entries[] =
        {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
        {N_("/_File/_Close"),                   "<alt>W", compose_close_cb, 0, NULL},
 
-       {N_("/_Edit"),             NULL, NULL, 0, "<Branch>"},
-       {N_("/_Edit/_Undo"),       "<control>Z", NULL, 0, NULL},
-       {N_("/_Edit/_Redo"),       "<control>Y", NULL, 0, NULL},
-       {N_("/_Edit/---"),         NULL, NULL, 0, "<Separator>"},
-       {N_("/_Edit/Cu_t"),        "<control>X", compose_cut_cb,    0, NULL},
-       {N_("/_Edit/_Copy"),       "<control>C", compose_copy_cb,   0, NULL},
-       {N_("/_Edit/_Paste"),      "<control>V", compose_paste_cb,  0, NULL},
-       {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
-       {N_("/_Edit/---"),         NULL, NULL, 0, "<Separator>"},
-       {N_("/_Edit/_Wrap current paragraph"), "<alt>L", compose_wrap_line, 0, NULL},
+       {N_("/_Edit"),                  NULL, NULL, 0, "<Branch>"},
+       {N_("/_Edit/_Undo"),            "<control>Z", compose_undo_cb, 0, NULL},
+       {N_("/_Edit/_Redo"),            "<control>Y", compose_redo_cb, 0, NULL},
+       {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
+       {N_("/_Edit/Cu_t"),             "<control>X", compose_cut_cb,    0, NULL},
+       {N_("/_Edit/_Copy"),            "<control>C", compose_copy_cb,   0, NULL},
+       {N_("/_Edit/_Paste"),           "<control>V", compose_paste_cb,  0, NULL},
+       {N_("/_Edit/Select _all"),      "<control>A", compose_allsel_cb, 0, NULL},
+       {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
+       {N_("/_Edit/_Wrap current paragraph"),
+                                       "<alt>L", compose_wrap_line, 0, NULL},
        {N_("/_Edit/Wrap all long _lines"),
-                       "<shift><alt>L", compose_wrap_line_all, 0, NULL},
+                                       "<shift><alt>L", compose_wrap_line_all, 0, NULL},
        {N_("/_Edit/Edit with e_xternal editor"),
-                       "<alt>X", compose_ext_editor_cb, 0, NULL},
-
+                                       "<alt>X", compose_ext_editor_cb, 0, NULL},
+#if 0 /* NEW COMPOSE GUI */
+       {N_("/_View"),                  NULL, NULL, 0, "<Branch>"},
+       {N_("/_View/_To"),              NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
+       {N_("/_View/_Cc"),              NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
+       {N_("/_View/_Bcc"),             NULL, compose_toggle_bcc_cb    , 0, "<ToggleItem>"},
+       {N_("/_View/_Reply to"),        NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
+       {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
+       {N_("/_View/_Followup to"),     NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
+       {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
+       {N_("/_View/R_uler"),           NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
+       {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
+       {N_("/_View/_Attachment"),      NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
+#endif
        {N_("/_Message"),               NULL, NULL, 0, "<Branch>"},
-       {N_("/_Message/_Send"),         "<shift><control>S",
+       {N_("/_Message/_Send"),         "<control>Return",
                                        compose_send_cb, 0, NULL},
        {N_("/_Message/Send _later"),   "<shift><alt>S",
                                        compose_send_later_cb,  0, NULL},
        {N_("/_Message/Save to _draft folder"),
                                        "<alt>D", compose_draft_cb, 0, NULL},
+       {N_("/_Message/Save and _keep editing"),
+                                       "<control>S", compose_draft_cb, 1, NULL},
 #if 0 /* NEW COMPOSE GUI */
        {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/_To"),           NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
@@ -469,8 +505,8 @@ static GtkItemFactoryEntry compose_entries[] =
        {N_("/_Tool"),                  NULL, NULL, 0, "<Branch>"},
        {N_("/_Tool/Show _ruler"),      NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
        {N_("/_Tool/_Address book"),    "<alt>A", compose_address_cb , 0, NULL},
-       {N_("/_Tool/_Templates ..."),   NULL, template_select_cb, 0, NULL},
-       {N_("/_Help"),                  NULL, NULL, 0, "<LastBranch>"},
+       {N_("/_Tool/_Template"),        NULL, NULL, 0, "<Branch>"},
+       {N_("/_Help"),                  NULL, NULL, 0, "<Branch>"},
        {N_("/_Help/_About"),           NULL, about_show, 0, NULL}
 };
 
@@ -479,26 +515,81 @@ static GtkTargetEntry compose_mime_types[] =
        {"text/uri-list", 0, 0}
 };
 
-Compose * compose_new(PrefsAccount *account)
+Compose *compose_new(PrefsAccount *account)
 {
        return compose_generic_new(account, NULL, NULL);
 }
 
-Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
+Compose *compose_bounce(PrefsAccount *account, MsgInfo *msginfo)
+{
+       Compose *c;
+       gchar *filename;
+       GtkItemFactory *ifactory;
+       
+       c = compose_generic_new(account, NULL, NULL);
+
+       filename = procmsg_get_message_file(msginfo);
+       if (filename == NULL)
+               return NULL;
+
+       c->bounce_filename = filename;
+
+       if (msginfo->subject)
+               gtk_entry_set_text(GTK_ENTRY(c->subject_entry),
+                                  msginfo->subject);
+       gtk_editable_set_editable(GTK_EDITABLE(c->subject_entry), FALSE);
+
+       compose_quote_fmt(c, msginfo, "%M", NULL);
+       gtk_editable_set_editable(GTK_EDITABLE(c->text), FALSE);
+
+       ifactory = gtk_item_factory_from_widget(c->popupmenu);
+       menu_set_sensitive(ifactory, "/Add...", FALSE);
+       menu_set_sensitive(ifactory, "/Remove", FALSE);
+       menu_set_sensitive(ifactory, "/Property...", FALSE);
+
+       ifactory = gtk_item_factory_from_widget(c->menubar);
+       menu_set_sensitive(ifactory, "/File/Insert file", FALSE);
+       menu_set_sensitive(ifactory, "/File/Attach file", FALSE);
+       menu_set_sensitive(ifactory, "/File/Insert signature", FALSE);
+       menu_set_sensitive(ifactory, "/Edit/Paste", FALSE);
+       menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", FALSE);
+       menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", FALSE);
+       menu_set_sensitive(ifactory, "/Edit/Edit with external editor", FALSE);
+       menu_set_sensitive(ifactory, "/Message/Attach", FALSE);
+#if USE_GPGME
+       menu_set_sensitive(ifactory, "/Message/Sign", FALSE);
+       menu_set_sensitive(ifactory, "/Message/Encrypt", FALSE);
+#endif
+       menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
+       menu_set_sensitive(ifactory, "/Tool/Template", FALSE);
+       
+       gtk_widget_set_sensitive(c->insert_btn, FALSE);
+       gtk_widget_set_sensitive(c->attach_btn, FALSE);
+       gtk_widget_set_sensitive(c->sig_btn, FALSE);
+       gtk_widget_set_sensitive(c->exteditor_btn, FALSE);
+       gtk_widget_set_sensitive(c->linewrap_btn, FALSE);
+
+       return c;
+}
+
+Compose *compose_new_with_recipient(PrefsAccount *account, const gchar *mailto)
 {
-       return compose_generic_new(account, to, NULL);
+       return compose_generic_new(account, mailto, NULL);
 }
 
-Compose * compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
+Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
 {
        return compose_generic_new(account, NULL, item);
 }
 
-Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem *item)
+Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item)
 {
        Compose *compose;
 
-       if (!account) account = cur_account;
+       if (item && item->prefs && item->prefs->enable_default_account)
+               account = account_find_from_id(item->prefs->default_account);
+
+       if (!account) account = cur_account;
        g_return_val_if_fail(account != NULL, NULL);
 
        compose = compose_create(account, COMPOSE_NEW);
@@ -510,15 +601,11 @@ Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem
        gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
        if (account->protocol != A_NNTP) {
-               if (to) {
-                       compose_entry_append(compose, to, COMPOSE_TO);
-                       gtk_widget_grab_focus(compose->subject_entry);
-               } else {
-                       if(item && item->prefs->enable_default_to) {
-                               compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
-                       } else {
-                               gtk_widget_grab_focus(compose->header_last->entry);
-                       }
+               if (mailto) {
+                       compose_entries_set(compose, mailto);
+
+               } else if(item && item->prefs->enable_default_to) {
+                       compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
                }
                if (item && item->ret_rcpt) {
                        GtkItemFactory *ifactory;
@@ -527,12 +614,23 @@ Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem
                        menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
                }
        } else {
-               if (to) {
-                       compose_entry_append(compose, to, COMPOSE_NEWSGROUPS);
-                       gtk_widget_grab_focus(compose->subject_entry);
-               } else
-                       gtk_widget_grab_focus(compose->header_last->entry);
+               if (mailto) {
+                       compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
+               }
        }
+       compose_show_first_last_header(compose, TRUE);
+
+       /* Set save folder */
+       if(item && item->prefs && item->prefs->save_copy_to_folder) {
+               gchar *folderidentifier;
+
+               gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), prefs_common.savemsg);
+               folderidentifier = folder_item_get_identifier(item);
+               gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
+               g_free(folderidentifier);
+       }
+
+       gtk_widget_grab_focus(compose->header_last->entry);
 
        if (prefs_common.auto_exteditor)
                compose_exec_ext_editor(compose);
@@ -549,7 +647,7 @@ msginfo->folder->folder->change_flags(msginfo->folder->folder, \
 }
 
 /*
-Compose * compose_new_followup_and_replyto(PrefsAccount *account,
+Compose *compose_new_followup_and_replyto(PrefsAccount *account,
                                           const gchar *followupto, gchar * to)
 {
        Compose *compose;
@@ -599,21 +697,36 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        g_return_if_fail(msginfo != NULL);
        g_return_if_fail(msginfo->folder != NULL);
 
-       account = msginfo->folder->folder->account;
-       if (!account && msginfo->to && prefs_common.reply_account_autosel) {
-               gchar *to;
-               Xstrdup_a(to, msginfo->to, return);
-               extract_address(to);
-               account = account_find_from_address(to);
-       }
-        if(!account&& prefs_common.reply_account_autosel) {
-                       gchar cc[BUFFSIZE];
-               if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
-                       extract_address(cc);
-                       account = account_find_from_address(cc);
-                }        
+       account = NULL;
+       /* select the account set in folderitem's property (if enabled) */
+       if (msginfo->folder->prefs && msginfo->folder->prefs->enable_default_account)
+               account = account_find_from_id(msginfo->folder->prefs->default_account);
+       
+       /* select the account for the whole folder (IMAP / NNTP) */
+       if (!account)
+               /* FIXME: this is not right, because folder may be nested. we should
+                * ascend the tree until we find a parent with proper account 
+                * information */
+               account = msginfo->folder->folder->account;
+
+       /* select account by to: and cc: header if enabled */
+       if (prefs_common.reply_account_autosel) {
+               if (!account && msginfo->to) {
+                       gchar *to;
+                       Xstrdup_a(to, msginfo->to, return);
+                       extract_address(to);
+                       account = account_find_from_address(to);
+               }
+               if (!account) {
+                       gchar cc[BUFFSIZE];
+                       if(!get_header_from_msginfo(msginfo, cc, sizeof(cc), "CC:")) { /* Found a CC header */
+                               extract_address(cc);
+                               account = account_find_from_address(cc);
+                       }        
+               }
        }
 
+       /* select current account */
        if (!account) account = cur_account;
        g_return_if_fail(account != NULL);
 
@@ -627,13 +740,15 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                        return;
        } else
                reply_account = account;
+
        MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
        MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
-
+       if (MSG_IS_IMAP(msginfo->flags))
+               imap_msg_set_perm_flags(msginfo, MSG_REPLIED);
        CHANGE_FLAGS(msginfo);
 
        compose = compose_create(account, COMPOSE_REPLY);
-       compose->replyinfo = msginfo;
+       compose->replyinfo = procmsg_msginfo_copy(msginfo);
 
 #if 0 /* NEW COMPOSE GUI */
        if (followup_and_reply_to) {
@@ -650,47 +765,44 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
        }
 
+       /* Set save folder */
+       if(msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
+               gchar *folderidentifier;
+
+               gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
+               folderidentifier = folder_item_get_identifier(msginfo->folder);
+               gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
+               g_free(folderidentifier);
+       }
+
        if (compose_parse_header(compose, msginfo) < 0) return;
        compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
                                followup_and_reply_to);
+       compose_show_first_last_header(compose, TRUE);
 
        text = GTK_STEXT(compose->text);
        gtk_stext_freeze(text);
 
        if (quote) {
-               FILE *fp;
+               gchar *qmark;
                gchar *quote_str;
 
-               if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
-                       g_warning(_("Can't get text part\n"));
-               else {
-                       gchar * qmark;
+               if (prefs_common.quotemark && *prefs_common.quotemark)
+                       qmark = prefs_common.quotemark;
+               else
+                       qmark = "> ";
 
-                       if (prefs_common.quotemark && *prefs_common.quotemark)
-                               qmark = prefs_common.quotemark;
-                       else
-                               qmark = "> ";
-
-                       quote_str = compose_quote_fmt(compose, msginfo,
-                                                     prefs_common.quotefmt,
-                                                     qmark);
-
-                       /*
-                       quote_str = compose_quote_parse_fmt
-                               (compose, msginfo, prefs_common.quotefmt);
-                       */
-
-                       if (quote_str != NULL)
-                               gtk_stext_insert(text, NULL, NULL, NULL,
-                                                quote_str, -1);
-                       /*                      g_free(quote_str); */
-                       /* compose_quote_file(compose, msginfo, fp); */
-                       fclose(fp);
-               }
+               quote_str = compose_quote_fmt(compose, msginfo,
+                                             prefs_common.quotefmt,
+                                             qmark);
        }
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
+
+       if (quote && prefs_common.linewrap_quote)
+               compose_wrap_line_all(compose);
+
        gtk_editable_set_position(GTK_EDITABLE(text), 0);
        gtk_stext_set_point(text, 0);
 
@@ -713,20 +825,20 @@ static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
                : mimeinfo->name ? mimeinfo->name : NULL;
 
        if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
-               filename = g_strdup_printf("%s%smimetmp%i.html",
+               filename = g_strdup_printf("%s%smimetmp.%08x.html",
                                           get_mime_tmp_dir(),
                                           G_DIR_SEPARATOR_S,
-                                          mimeinfo);
+                                          (gint)mimeinfo);
                return filename;
        }
        else {
                base = base ? base : "";
                base = g_basename(base);
                if (*base == '\0') {
-                       filename = g_strdup_printf("%s%smimetmp%i",
+                       filename = g_strdup_printf("%s%smimetmp.%08x",
                                                   get_mime_tmp_dir(),
                                                   G_DIR_SEPARATOR_S,
-                                                  mimeinfo);
+                                                  (gint)mimeinfo);
                        return filename;
                }
        }
@@ -737,11 +849,11 @@ static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
        return filename;
 }
 
-static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
+static gchar *mime_extract_file(gchar *source, MimeInfo *partinfo)
 {
        gchar *filename;
 
-       if (!partinfo) return;
+       if (!partinfo) return NULL;
 
        filename = procmime_get_file_name(partinfo);
 
@@ -752,10 +864,8 @@ static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
        return filename;
 }
 
-static void compose_attach_parts(Compose * compose,
-                                MsgInfo * msginfo)
+static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
 {
-
        FILE *fp;
        gchar *file;
        MimeInfo *mimeinfo;
@@ -766,15 +876,15 @@ static void compose_attach_parts(Compose * compose,
        gchar buf[BUFFSIZE];
        glong fpos, prev_fpos;
        gint npart;
-       gchar * source;
-       gchar * filename;
+       gchar *source;
+       gchar *filename;
 
        g_return_if_fail(msginfo != NULL);
        
 #if USE_GPGME
        for (;;) {
                if ((fp = procmsg_open_message(msginfo)) == NULL) return;
-               mimeinfo = procmime_scan_mime_header(fp);
+               mimeinfo = procmime_scan_mime_header(fp, MIME_TEXT);
                if (!mimeinfo) break;
 
                if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
@@ -796,7 +906,7 @@ static void compose_attach_parts(Compose * compose,
        }
 #else /* !USE_GPGME */
        if ((fp = procmsg_open_message(msginfo)) == NULL) return;
-       mimeinfo = procmime_scan_mime_header(fp);
+       mimeinfo = procmime_scan_mime_header(fp, MIME_TEXT);
 #endif /* USE_GPGME */
 
        fclose(fp);
@@ -841,7 +951,7 @@ static void compose_attach_parts(Compose * compose,
 
                prev_fpos = fpos;
 
-               partinfo = procmime_scan_mime_header(fp);
+               partinfo = procmime_scan_mime_header(fp, MIME_TEXT);
                if (!partinfo) break;
 
                if (npart != 0)
@@ -924,35 +1034,33 @@ if (msginfo->var && *msginfo->var) { \
        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
 }
 
-Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
+Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
                         gboolean as_attach)
 {
        Compose *compose;
        /*      PrefsAccount *account; */
        GtkSText *text;
-       FILE *fp;
-       gchar buf[BUFFSIZE];
 
        g_return_val_if_fail(msginfo != NULL, NULL);
        g_return_val_if_fail(msginfo->folder != NULL, NULL);
 
        account = msginfo->folder->folder->account;
-        if (!account && msginfo->to && prefs_common.forward_account_autosel) {
+       if (!account && msginfo->to && prefs_common.forward_account_autosel) {
                gchar *to;
-               Xstrdup_a(to, msginfo->to, return);
+               Xstrdup_a(to, msginfo->to, return NULL);
                extract_address(to);
                account = account_find_from_address(to);
        }
 
-        if(!account && prefs_common.forward_account_autosel) {
-                       gchar cc[BUFFSIZE];
+       if(!account && prefs_common.forward_account_autosel) {
+               gchar cc[BUFFSIZE];
                if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
                        extract_address(cc);
                        account = account_find_from_address(cc);
                 }
        }
 
-        if (account == NULL) {
+       if (account == NULL) {
                account = cur_account;
                /*
                account = msginfo->folder->folder->account;
@@ -963,6 +1071,8 @@ Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
 
        MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
        MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
+       if (MSG_IS_IMAP(msginfo->flags))
+               imap_msg_unset_perm_flags(msginfo, MSG_REPLIED);
        CHANGE_FLAGS(msginfo);
 
        compose = compose_create(account, COMPOSE_FORWARD);
@@ -988,35 +1098,25 @@ Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
 
                g_free(msgfile);
        } else {
-               FILE *fp;
+               gchar *qmark;
                gchar *quote_str;
-               if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
-                       g_warning(_("Can't get text part\n"));
-               else {
-                       gchar * qmark;
 
-                       if (prefs_common.fw_quotemark &&
-                           *prefs_common.fw_quotemark)
-                               qmark = prefs_common.fw_quotemark;
-                       else
-                               qmark = "> ";
-
-                       quote_str = compose_quote_fmt(compose, msginfo,
-                                                     prefs_common.fw_quotefmt,
-                                                     qmark);
-
-                       if (quote_str != NULL)
-                               gtk_stext_insert(text, NULL, NULL, NULL,
-                                                quote_str, -1);
-
-                       fclose(fp);
-               }
+               if (prefs_common.fw_quotemark && *prefs_common.fw_quotemark)
+                       qmark = prefs_common.fw_quotemark;
+               else
+                       qmark = "> ";
 
+               quote_str = compose_quote_fmt(compose, msginfo,
+                                             prefs_common.fw_quotefmt, qmark);
                compose_attach_parts(compose, msginfo);
        }
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
+
+       if (prefs_common.linewrap_quote)
+               compose_wrap_line_all(compose);
+
        gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
        gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
@@ -1027,6 +1127,7 @@ Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
        else
                gtk_widget_grab_focus(compose->newsgroups_entry);
 #endif
+       gtk_widget_grab_focus(compose->header_last->entry);
 
        if (prefs_common.auto_exteditor)
                compose_exec_ext_editor(compose);
@@ -1036,8 +1137,7 @@ Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
 
 #undef INSERT_FW_HEADER
 
-Compose * compose_forward_multiple(PrefsAccount * account, 
-                         GSList *msginfo_list) 
+Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
 {
        Compose *compose;
        GtkSText *text;
@@ -1060,6 +1160,12 @@ Compose * compose_forward_multiple(PrefsAccount * account,
        }
        g_return_val_if_fail(account != NULL, NULL);
 
+       for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
+               MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
+               MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
+               CHANGE_FLAGS(((MsgInfo *)msginfo->data));
+       }
+
        compose = compose_create(account, COMPOSE_FORWARD);
 
        text = GTK_STEXT(compose->text);
@@ -1077,6 +1183,10 @@ Compose * compose_forward_multiple(PrefsAccount * account,
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
+
+       if (prefs_common.linewrap_quote)
+               compose_wrap_line_all(compose);
+
        gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
        gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
@@ -1102,11 +1212,17 @@ void compose_reedit(MsgInfo *msginfo)
        g_return_if_fail(msginfo != NULL);
        g_return_if_fail(msginfo->folder != NULL);
 
-        account = msginfo->folder->folder->account;
+        if (msginfo->folder->stype == F_QUEUE) {
+               gchar account_address[BUFFSIZE];
+               if (!get_header_from_msginfo(msginfo, account_address, sizeof(account_address), "S:")) {
+                       account = account_find_from_address(account_address);
+               }
+       } else 
+               account = msginfo->folder->folder->account;
 
-        if(!account&& prefs_common.reedit_account_autosel) {
+       if (!account && prefs_common.reedit_account_autosel) {
                        gchar from[BUFFSIZE];
-               if(!get_header_from_msginfo(msginfo,from,sizeof(from),"FROM:")){ /* Found a FROM header */
+               if (!get_header_from_msginfo(msginfo, from, sizeof(from), "FROM:")){
                        extract_address(from);
                        account = account_find_from_address(from);
                 }
@@ -1202,6 +1318,75 @@ void compose_entry_append(Compose *compose, const gchar *address,
        compose_add_header_entry(compose, header, (gchar *)address);
 }
 
+static void compose_entries_set(Compose *compose, const gchar *mailto)
+{
+       gchar *subject = NULL;
+       gchar *to = NULL;
+       gchar *cc = NULL;
+       gchar *bcc = NULL;
+       gchar *body = NULL;
+       gchar *p;
+       gchar *tmp_mailto;
+
+       Xstrdup_a(tmp_mailto, mailto, return);
+
+       to = tmp_mailto;
+
+       p = strchr(tmp_mailto, '?');
+       if (p) {
+               *p = '\0';
+               p++;
+       }
+
+       while (p) {
+               gchar *field, *value;
+
+               field = p;
+
+               p = strchr(p, '=');
+               if (!p) break;
+               *p = '\0';
+               p++;
+
+               value = p;
+
+               p = strchr(p, '&');
+               if (p) {
+                       *p = '\0';
+                       p++;
+               }
+
+               if (*value == '\0') continue;
+
+               if (!g_strcasecmp(field, "subject")) {
+                       Xalloca(subject, strlen(value) + 1, return);
+                       decode_uri(subject, value);
+               } else if (!g_strcasecmp(field, "cc")) {
+                       cc = value;
+               } else if (!g_strcasecmp(field, "bcc")) {
+                       bcc = value;
+               } else if (!g_strcasecmp(field, "body")) {
+                       Xalloca(body, strlen(value) + 1, return);
+                       decode_uri(body, value);
+               }
+       }
+
+       if (to)
+               compose_entry_append(compose, to, COMPOSE_TO);
+       if (subject)
+               gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
+       if (cc)
+               compose_entry_append(compose, cc, COMPOSE_CC);
+       if (bcc)
+               compose_entry_append(compose, bcc, COMPOSE_BCC);
+       if (body) {
+               gtk_stext_insert(GTK_STEXT(compose->text),
+                               NULL, NULL, NULL, body, -1);
+               gtk_stext_insert(GTK_STEXT(compose->text),
+                               NULL, NULL, NULL, "\n", 1);
+       }
+}
+
 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
 {
        static HeaderEntry hentry[] = {{"Reply-To:",       NULL, TRUE},
@@ -1246,7 +1431,7 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
        }
        if (hentry[H_X_MAILING_LIST].body != NULL) {
                /* this is good enough to parse debian-devel */
-               char * buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
+               gchar *buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
                g_return_val_if_fail(buf != NULL, -1 );
                if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
                        compose->mailinglist = g_strdup(buf);
@@ -1256,7 +1441,7 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
        }
        if (hentry[H_X_BEENTHERE].body != NULL) {
                /* this is good enough to parse the sylpheed-claws lists */
-               char * buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
+               gchar *buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
                g_return_val_if_fail(buf != NULL, -1 );
                if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
                        compose->mailinglist = g_strdup(buf);
@@ -1364,269 +1549,58 @@ static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
        return new_ref_str;
 }
 
-/*
-static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
+static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
+                               const gchar *fmt, const gchar *qmark)
 {
        GtkSText *text = GTK_STEXT(compose->text);
-       gchar *qmark;
-       gchar *quote_str;
-       GdkColor *qcolor = NULL;
-       gchar buf[BUFFSIZE];
-       gint qlen;
-       gchar *linep, *cur, *leftp;
-       gint line_len, cur_len;
-       gint wrap_len;
-       gint str_len;
-       gint ch_len;
-
-       // if (prefs_common.enable_color) qcolor = &quote_color;
-       if (prefs_common.quotemark && *prefs_common.quotemark)
-               qmark = prefs_common.quotemark;
-       else
-               qmark = "> ";
-       quote_str = compose_quote_parse_fmt(compose, msginfo, qmark);
-       g_return_if_fail(quote_str != NULL);
-       qlen = strlen(quote_str);
-
-       if (!prefs_common.linewrap_quote ||
-           prefs_common.linewrap_len <= qlen) {
-               while (fgets(buf, sizeof(buf), fp) != NULL) {
-                       gtk_stext_insert(text, NULL, qcolor, NULL,
-                                       quote_str, -1);
-                       gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
-               }
-               g_free(quote_str);
-               return;
-       }
-
-       wrap_len = prefs_common.linewrap_len - qlen;
-
-       while (fgets(buf, sizeof(buf), fp) != NULL) {
-               strretchomp(buf);
-               str_len = strlen(buf);
-
-               if (str_len <= wrap_len) {
-                       gtk_stext_insert(text, NULL, qcolor, NULL,
-                                       quote_str, -1);
-                       gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
-                       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
-                       continue;
-               }
-
-               linep = cur = leftp = buf;
-               line_len = cur_len = 0;
-
-               while (*cur != '\0') {
-                       ch_len = mblen(cur, MB_CUR_MAX);
-                       if (ch_len < 0) ch_len = 1;
-
-                       if (ch_len == 1 && isspace(*cur)) {
-                               linep = cur + ch_len;
-                               line_len = cur_len + ch_len;
-                       }
-
-                       if (cur_len + ch_len > wrap_len && line_len > 0) {
-                               gtk_stext_insert(text, NULL, qcolor, NULL,
-                                               quote_str, -1);
-
-                               if (isspace(*(linep - 1)))
-                                       gtk_stext_insert(text, NULL,
-                                                       qcolor, NULL,
-                                                       leftp, line_len - 1);
-                               else
-                                       gtk_stext_insert(text, NULL,
-                                                       qcolor, NULL,
-                                                       leftp, line_len);
-                               gtk_stext_insert(text, NULL, NULL, NULL,
-                                               "\n", 1);
-
-                               leftp = linep;
-                               cur_len = cur_len - line_len + ch_len;
-                               line_len = 0;
-                               cur += ch_len;
-                               continue;
-                       }
+       gchar *quote_str = NULL;
+       gchar *buf;
+       gchar *p, *lastp;
+       gint len;
 
-                       if (ch_len > 1) {
-                               linep = cur + ch_len;
-                               line_len = cur_len + ch_len;
-                       }
-                       cur_len += ch_len;
-                       cur += ch_len;
-               }
+       if (qmark != NULL) {
+               quote_fmt_init(msginfo, NULL);
+               quote_fmt_scan_string(qmark);
+               quote_fmt_parse();
 
-               if (*leftp) {
-                       gtk_stext_insert(text, NULL, qcolor, NULL,
-                                       quote_str, -1);
-                       gtk_stext_insert(text, NULL, qcolor, NULL, leftp, -1);
-                       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
-               }
+               buf = quote_fmt_get_buffer();
+               if (buf == NULL)
+                       alertpanel_error(_("Quote mark format error."));
+               else
+                       Xstrdup_a(quote_str, buf, return NULL)
        }
 
-       g_free(quote_str);
-}
-*/
-
-/*
-static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
-                                     const gchar *fmt)
-{
-       gchar *ext_str;
-       size_t buf_len = 1024;
-       size_t ext_len = 0;
-       gchar *str;
-       gchar *mbs;
-       wchar_t *wcsfmt;
-       wchar_t *sp;
-       gchar tmp[3];
-
-       if (!fmt || *fmt == '\0') return 0;
-
-       Xalloca(mbs, sizeof(wchar_t) + 1, return 0);
-       Xalloca(wcsfmt, (strlen(fmt) + 1) * sizeof(wchar_t), return 0);
-       mbstowcs(wcsfmt, fmt, strlen(fmt) + 1);
-       sp = wcsfmt;
-
-       ext_str = g_malloc(sizeof(gchar) * buf_len);
-       g_return_val_if_fail(ext_str != NULL, NULL);
-
-       while (*sp) {
-               gint len;
-
-               len = wctomb(mbs, *sp);
-               mbs[len] = '\0';
-
-               if (*mbs == '%') {
-                       gchar *p;
-
-                       wctomb(mbs, *(++sp));
-                       str = NULL;
-
-                       switch (*mbs) {
-                       case 'd':
-                               str = msginfo->date;
-                               sp++;
-                               break;
-                       case 'f':
-                               str = msginfo->from;
-                               sp++;
-                               break;
-                       case 'I':
-                               if (!msginfo->fromname) {sp++; break;}
-                               p = msginfo->fromname;
-                               tmp[0] = tmp[1] = tmp[2] = '\0';
-
-                               if (*p && isalnum(*p))
-                                       tmp[0] = toupper(*p);
-                               else {
-                                       sp++;
-                                       break;
-                               }
-
-                               while (*p) {
-                                       while (*p && !isspace(*p)) p++;
-                                       while (*p && isspace(*p)) p++;
-                                       if (*p && isalnum(*p))
-                                               tmp[1] = toupper(*p);
-                               }
-
-                               if (tmp[1]) str = tmp;
-                               sp++;
-                               break;
-                       case 'n':
-                               str = msginfo->fromname;
-                               sp++;
-                               break;
-                       case 'N':
-                               if (!msginfo->fromname) {sp++; break;}
-                               Xstrdup_a(str, msginfo->fromname,
-                                         {sp++; break;});
-                               p = str;
-                               while (*p && !isspace(*p)) p++;
-                               *p = '\0';
-                               sp++;
-                               break;
-                       case 's':
-                               str = msginfo->subject;
-                               sp++;
-                               break;
-                       case 't':
-                               str = msginfo->to;
-                               sp++;
-                               break;
-                       case 'c':
-                               str = msginfo->cc;
-                               sp++;
-                               break;
-                       case 'i':
-                               if (!msginfo->msgid) {sp++; break;}
-                               Xalloca(str, strlen(msginfo->msgid) + 3,
-                                       {sp++; break;});
-                               g_snprintf(str, strlen(msginfo->msgid) + 3,
-                                          "<%s>", msginfo->msgid);
-                               sp++;
-                               break;
-                       case '%':
-                               str = "%";
-                               sp++;
-                               break;
-                       default:
-                               break;
-                       }
-
-                       if (str) {
-                               while (ext_len + strlen(str) + 1 > buf_len)
-                                       buf_len += 1024;
-                               ext_str = g_realloc(ext_str,
-                                                   sizeof(gchar) * buf_len);
-                               g_return_val_if_fail(ext_str != NULL, NULL);
-                               strcpy(ext_str + ext_len, str);
-                               ext_len += strlen(str);
-                       }
-               } else if (*mbs == '\\') {
-                       wctomb(mbs, *(++sp));
-                       str = NULL;
-
-                       switch (*mbs) {
-                       case 'n':
-                               str = "\n";
-                               break;
-                       case 't':
-                               str = "\t";
-                               break;
-                       case '\\':
-                               str = "\\";
-                               break;
-                       default:
-                               break;
-                       }
+       if (fmt && *fmt != '\0') {
+               quote_fmt_init(msginfo, quote_str);
+               quote_fmt_scan_string(fmt);
+               quote_fmt_parse();
 
-                       if (str) {
-                               while (ext_len + strlen(str) + 1 > buf_len)
-                                       buf_len += 1024;
-                               ext_str = g_realloc(ext_str,
-                                                   sizeof(gchar) * buf_len);
-                               g_return_val_if_fail(ext_str != NULL, NULL);
-                               strcpy(ext_str + ext_len, str);
-                               ext_len += strlen(str);
-                               sp++;
-                       }
-               } else {
-                       while (ext_len + len + 1 > buf_len) buf_len += 1024;
-                       ext_str = g_realloc(ext_str, sizeof(gchar) * buf_len);
-                       g_return_val_if_fail(ext_str != NULL, NULL);
-                       strcpy(ext_str + ext_len, mbs);
-                       ext_len += len;
-                       sp++;
+               buf = quote_fmt_get_buffer();
+               if (buf == NULL) {
+                       alertpanel_error(_("Message reply/forward format error."));
+                       return NULL;
                }
+       } else
+               buf = "";
+
+       gtk_stext_freeze(text);
+       gtk_stext_set_point(text, 0);
+       gtk_stext_forward_delete(text, gtk_stext_get_length(text));
+
+       for (p = buf; *p != '\0'; ) {
+               lastp = strchr(p, '\n');
+               len = lastp ? lastp - p + 1 : -1;
+               gtk_stext_insert(text, NULL, NULL, NULL, p, len);
+               if (lastp)
+                       p = lastp + 1;
+               else
+                       break;
        }
 
-       if (ext_str)
-               ext_str = g_realloc(ext_str, strlen(ext_str) + 1);
+       gtk_stext_thaw(text);
 
-       return ext_str;
+       return buf;
 }
-*/
 
 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
                                    gboolean to_all, gboolean ignore_replyto,
@@ -1642,18 +1616,25 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
 
        if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
                compose_entry_append(compose,
-                                   ((compose->mailinglist && !ignore_replyto)
-                                    ? compose->mailinglist
-                                    : (compose->replyto && !ignore_replyto)
+                                   ((compose->replyto && !ignore_replyto)
                                     ? compose->replyto
+                                    : (compose->mailinglist && !ignore_replyto)
+                                    ? compose->mailinglist
                                     : msginfo->from ? msginfo->from : ""),
                                     COMPOSE_TO);
-       if (compose->account->protocol == A_NNTP)
-               compose_entry_append(compose,
-                                    compose->followup_to ? compose->followup_to
-                                    : compose->newsgroups ? compose->newsgroups
-                                    : "",
-                                    COMPOSE_NEWSGROUPS);
+       if (compose->account->protocol == A_NNTP) {
+               if (ignore_replyto)
+                       compose_entry_append
+                               (compose, msginfo->from ? msginfo->from : "",
+                                COMPOSE_TO);
+               else
+                       compose_entry_append
+                               (compose,
+                                compose->followup_to ? compose->followup_to
+                                : compose->newsgroups ? compose->newsgroups
+                                : "",
+                                COMPOSE_NEWSGROUPS);
+       }
 
        if (msginfo->subject && *msginfo->subject) {
                gchar *buf, *buf2, *p;
@@ -1732,13 +1713,15 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
        SET_ADDRESS(COMPOSE_BCC, compose->bcc);
        SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
 
+       compose_show_first_last_header(compose, TRUE);
+
 #if 0 /* NEW COMPOSE GUI */
        if (compose->bcc) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
 
                ifactory = gtk_item_factory_from_widget(compose->menubar);
-               menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
+               menuitem = gtk_item_factory_get_item(ifactory, "/View/Bcc");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
        }
@@ -1748,7 +1731,7 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
 
                ifactory = gtk_item_factory_from_widget(compose->menubar);
                menuitem = gtk_item_factory_get_item
-                       (ifactory, "/Message/Reply to");
+                       (ifactory, "/View/Reply to");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
        }
@@ -1840,6 +1823,7 @@ static void compose_insert_file(Compose *compose, const gchar *file)
 {
        GtkSText *text = GTK_STEXT(compose->text);
        gchar buf[BUFFSIZE];
+       gint len;
        FILE *fp;
 
        g_return_if_fail(file != NULL);
@@ -1851,8 +1835,17 @@ static void compose_insert_file(Compose *compose, const gchar *file)
 
        gtk_stext_freeze(text);
 
-       while (fgets(buf, sizeof(buf), fp) != NULL)
+       while (fgets(buf, sizeof(buf), fp) != NULL) {
+               /* strip <CR> if DOS/Windows file,
+                  replace <CR> with <LF> if Macintosh file. */
+               strcrchomp(buf);
+               len = strlen(buf);
+               if (len > 0 && buf[len - 1] != '\n') {
+                       while (--len >= 0)
+                               if (buf[len] == '\r') buf[len] = '\n';
+               }
                gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
+       }
 
        gtk_stext_thaw(text);
 
@@ -1953,7 +1946,7 @@ static void compose_attach_append(Compose *compose, const gchar *file,
 
                ifactory = gtk_item_factory_from_widget(compose->menubar);
                menuitem = gtk_item_factory_get_item(ifactory,
-                                                    "/Message/Attach");
+                                                    "/View/Attachment");
                gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                               TRUE);
        }
@@ -1979,6 +1972,16 @@ static void compose_attach_append(Compose *compose, const gchar *file,
        compose_attach_info(compose, ainfo, cnttype);
 }
 
+#define GET_CHAR(pos, buf, len)                                                     \
+{                                                                           \
+       if (text->use_wchar)                                                 \
+               len = wctomb(buf, (wchar_t)GTK_STEXT_INDEX(text, (pos)));    \
+       else {                                                               \
+               buf[0] = GTK_STEXT_INDEX(text, (pos));                       \
+               len = 1;                                                     \
+       }                                                                    \
+}
+
 static void compose_wrap_line(Compose *compose)
 {
        GtkSText *text = GTK_STEXT(compose->text);
@@ -1991,25 +1994,17 @@ static void compose_wrap_line(Compose *compose)
        gint line_pos, cur_pos;
        gint line_len, cur_len;
 
-#define GET_STEXT(pos)                                                        \
-       if (text->use_wchar)                                                 \
-               ch_len = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
-       else {                                                               \
-               cbuf[0] = GTK_STEXT_INDEX(text, (pos));                       \
-               ch_len = 1;                                                  \
-       }
-
        gtk_stext_freeze(text);
 
        text_len = gtk_stext_get_length(text);
 
        /* check to see if the point is on the paragraph mark (empty line). */
        cur_pos = gtk_stext_get_point(text);
-       GET_STEXT(cur_pos);
+       GET_CHAR(cur_pos, cbuf, ch_len);
        if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
                if (cur_pos == 0)
                        goto compose_end; /* on the paragraph mark */
-               GET_STEXT(cur_pos - 1);
+               GET_CHAR(cur_pos - 1, cbuf, ch_len);
                if (ch_len == 1 && *cbuf == '\n')
                        goto compose_end; /* on the paragraph mark */
        }
@@ -2017,7 +2012,7 @@ static void compose_wrap_line(Compose *compose)
        /* find paragraph start. */
        line_end = quoted = 0;
        for (p_start = cur_pos; p_start >= 0; --p_start) {
-               GET_STEXT(p_start);
+               GET_CHAR(p_start, cbuf, ch_len);
                if (ch_len == 1 && *cbuf == '\n') {
                        if (quoted)
                                goto compose_end; /* quoted part */
@@ -2041,7 +2036,7 @@ static void compose_wrap_line(Compose *compose)
        /* find paragraph end. */
        line_end = 0;
        for (p_end = cur_pos; p_end < text_len; p_end++) {
-               GET_STEXT(p_end);
+               GET_CHAR(p_end, cbuf, ch_len);
                if (ch_len == 1 && *cbuf == '\n') {
                        if (line_end) {
                                p_end -= 1;
@@ -2068,7 +2063,7 @@ static void compose_wrap_line(Compose *compose)
        for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
                guint space = 0;
 
-               GET_STEXT(cur_pos);
+               GET_CHAR(cur_pos, cbuf, ch_len);
 
                if (ch_len < 0) {
                        cbuf[0] = '\0';
@@ -2082,7 +2077,7 @@ static void compose_wrap_line(Compose *compose)
                        guint replace = 0;
                        if (last_ch_len == 1 && !isspace(last_ch)) {
                                if (cur_pos + 1 < p_end) {
-                                       GET_STEXT(cur_pos + 1);
+                                       GET_CHAR(cur_pos + 1, cbuf, ch_len);
                                        if (ch_len == 1 && !isspace(*cbuf))
                                                replace = 1;
                                }
@@ -2113,7 +2108,7 @@ static void compose_wrap_line(Compose *compose)
                    line_len > 0) {
                        gint tlen = ch_len;
 
-                       GET_STEXT(line_pos - 1);
+                       GET_CHAR(line_pos - 1, cbuf, ch_len);
                        if (ch_len == 1 && isspace(*cbuf)) {
                                gtk_stext_set_point(text, line_pos);
                                gtk_stext_backward_delete(text, 1);
@@ -2144,72 +2139,222 @@ static void compose_wrap_line(Compose *compose)
 
 compose_end:
        gtk_stext_thaw(text);
+}
+
+/* return indent length */
+static guint get_indent_length(GtkSText *text, guint start_pos, guint text_len)
+{
+       gint indent_len = 0;
+       gint i, ch_len;
+       gchar cbuf[MB_LEN_MAX];
+
+       for (i = start_pos; i < text_len; i++) {
+               GET_CHAR(i, cbuf, ch_len);
+               if (ch_len > 1)
+                       break;
+               /* allow space, tab, > or | */
+               if (cbuf[0] != ' ' && cbuf[0] != '\t' &&
+                   cbuf[0] != '>' && cbuf[0] != '|')
+                       break;
+               indent_len++;
+       }
 
-#undef GET_STEXT
+       return indent_len;
 }
 
-/* return str length if text at start_pos matches str else return zero */
-static gint is_gtkstext_string(GtkSText *text, guint start_pos,
-                              guint text_len, gchar *str) {
-       gint is_str, i, str_len;
-       gchar str_ch;
+/* insert quotation string when line was wrapped */
+static guint ins_quote(GtkSText *text, guint quote_len, guint indent_len,
+                      guint prev_line_pos, guint text_len,
+                      gchar *quote_fmt)
+{
+       guint i, ins_len;
+       gchar ch;
 
-       is_str = 0;
-       if (str) {
-               str_len = strlen(str);
-               is_str = 1;
-               for (i = 0; (i < str_len) && (start_pos + i < text_len); i++) {
-                       str_ch = GTK_STEXT_INDEX(text, start_pos + i);
-                       if (*(str + i) != str_ch) {
-                               break;
-                       }
+       if (indent_len) {
+               for (i = 0; i < indent_len; i++) {
+                       ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
+                       gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
                }
-               if (i == 0 || i < str_len)
-                       is_str = 0;
+               ins_len = indent_len;
+       } else {
+               gtk_stext_insert(text, NULL, NULL, NULL, quote_fmt, quote_len);
+               ins_len = quote_len;
        }
 
-       return is_str ? str_len : 0;
+       return ins_len;
+}
+
+#undef WRAP_DEBUG
+#ifdef WRAP_DEBUG
+/* Darko: used when I debug wrapping */
+void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
+{
+       gint i;
+       gchar ch;
+
+       printf("%d [", pos);
+       for (i = pos; i < tlen; i++) {
+               ch = GTK_STEXT_INDEX(text, i);
+               if (breakoncr && ch == '\n')
+                       break;
+               printf("%c", ch);
+       }
+       printf("]\n");
 }
+#endif
 
 static void compose_wrap_line_all(Compose *compose)
 {
        GtkSText *text = GTK_STEXT(compose->text);
-       guint text_len;
-       guint line_pos = 0, cur_pos = 0;
+       guint tlen;
+       guint line_pos = 0, cur_pos = 0, p_pos = 0;
        gint line_len = 0, cur_len = 0;
        gint ch_len;
-       gint is_new_line = 1;
-       guint quote_len = 0;
+       gboolean is_new_line = TRUE, do_delete = FALSE;
+       guint qlen = 0, i_len = 0;
        guint linewrap_quote = prefs_common.linewrap_quote;
-       gchar *quote_fmt = prefs_common.quotemark;
+       guint linewrap_len = prefs_common.linewrap_len;
+       gchar *qfmt = prefs_common.quotemark;
        gchar cbuf[MB_LEN_MAX];
 
        gtk_stext_freeze(text);
 
        /* make text buffer contiguous */
-       gtk_stext_compact_buffer(text);
+       /* gtk_stext_compact_buffer(text); */
+
+       tlen = gtk_stext_get_length(text);
+
+       for (; cur_pos < tlen; cur_pos++) {
+               /* mark position of new line - needed for quotation wrap */
+               if (is_new_line) {
+                       if (linewrap_quote) {
+                               qlen = gtkut_stext_str_compare
+                                       (text, cur_pos, tlen, qfmt);
+                               if (qlen)
+                                       i_len = get_indent_length
+                                               (text, cur_pos, tlen);
+                               else
+                                       i_len = 0;
+                       }
+                       is_new_line = FALSE;
+                       p_pos = cur_pos;
+#ifdef WRAP_DEBUG
+                       printf("new line i_len=%d qlen=%d p_pos=", i_len, qlen);
+                       dump_text(text, p_pos, tlen, 1);
+#endif
+               }
 
-       text_len = gtk_stext_get_length(text);
+               GET_CHAR(cur_pos, cbuf, ch_len);
 
-       for (; cur_pos < text_len; cur_pos++) {
-               if (linewrap_quote && is_new_line) {
-                       quote_len = is_gtkstext_string(text, cur_pos,
-                                                      text_len, quote_fmt);
-                       is_new_line = 0;
-               }
-               if (text->use_wchar)
-                       ch_len = wctomb
-                               (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
-               else {
-                       cbuf[0] = GTK_STEXT_INDEX(text, cur_pos);
-                       ch_len = 1;
+               /* fix line length for tabs */
+               if (ch_len == 1 && *cbuf == '\t') {
+                       guint tab_width = text->default_tab_width;
+                       guint tab_offset = line_len % tab_width;
+
+#ifdef WRAP_DEBUG
+                       printf("found tab at pos=%d line_len=%d ", cur_pos,
+                               line_len);
+#endif
+                       if (tab_offset) {
+                               line_len += tab_width - tab_offset - 1;
+                               cur_len = line_len;
+                       }
+#ifdef WRAP_DEBUG
+                       printf("new_len=%d\n", line_len);
+#endif
                }
 
+               /* we have encountered line break */
                if (ch_len == 1 && *cbuf == '\n') {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len = 0;
-                       quote_len = 0;
-                       is_new_line = 1;
+                       gint clen;
+                       guint ilen;
+                       gchar cb[MB_CUR_MAX];
+
+#ifdef WRAP_DEBUG
+                       printf("found CR at %d next line is ", cur_pos);
+                       dump_text(text, cur_pos + 1, tlen, 1);
+#endif
+                       /* if it's just quotation + newline skip it */
+                       if (i_len && (cur_pos + 1 < tlen)) {
+                               /* check if text at new line matches indent */
+                               ilen =  gtkut_stext_str_compare_n
+                                       (text, cur_pos + 1, p_pos, i_len, tlen);
+                               if (cur_pos + ilen < tlen) {
+                                       GET_CHAR(cur_pos + ilen + 1, cb, clen);
+                                       /* no need to join the lines */
+                                       if (clen == 1 && cb[0] == '\n')
+                                               do_delete = FALSE;
+                               }
+                       /* if it's just newline skip it */
+                       } else if (do_delete && (cur_pos + 1 < tlen)) {
+                               GET_CHAR(cur_pos + 1, cb, clen);
+                               /* no need to join the lines */
+                               if (clen == 1 && cb[0] == '\n')
+                                       do_delete = FALSE;
+                       }
+
+#ifdef WRAP_DEBUG
+                       printf("qlen=%d l_len=%d wrap_len=%d do_del=%d\n",
+                               qlen, line_len, linewrap_len, do_delete);
+#endif
+                       /* should we delete to perform smart wrapping */
+                       if (line_len < linewrap_len && do_delete) {
+                               /* get rid of newline */
+                               gtk_stext_set_point(text, cur_pos);
+                               gtk_stext_forward_delete(text, 1);
+                               tlen--;
+
+                               /* if text starts with quote fmt or with
+                                  indent string, delete them */
+                               if (i_len) {
+                                       ilen =  gtkut_stext_str_compare_n
+                                               (text, cur_pos, p_pos, i_len,
+                                                tlen);
+                                       if (ilen) {
+                                               gtk_stext_forward_delete
+                                                       (text, ilen);
+                                               tlen -= ilen;
+                                       }
+                               } else if (qlen) {
+                                       if (gtkut_stext_str_compare
+                                           (text, cur_pos, tlen, qfmt)) {
+                                               gtk_stext_forward_delete
+                                                       (text, qlen);
+                                               tlen -= qlen;
+                                       }
+                               }
+
+                               GET_CHAR(cur_pos, cb, clen);
+
+                               /* insert space if it's alphanumeric */
+                               if ((cur_pos != line_pos) &&
+                                   ((clen > 1) || isalnum(cb[0]))) {
+                                       gtk_stext_insert(text, NULL, NULL,
+                                                       NULL, " ", 1);
+                                       /* gtk_stext_compact_buffer(text); */
+                                       tlen++;
+                               }
+
+                               /* and start over with current line */
+                               cur_pos = p_pos - 1;
+                               line_pos = cur_pos;
+                               line_len = cur_len = 0;
+                               qlen = 0;
+                               do_delete = FALSE;
+                               is_new_line = TRUE;
+#ifdef WRAP_DEBUG
+                               printf("after delete l_pos=");
+                               dump_text(text, line_pos, tlen, 1);
+#endif
+                               continue;
+                       }
+
+                       /* mark new line beginning */
+                       line_pos = cur_pos + 1;
+                       line_len = cur_len = 0;
+                       qlen = 0;
+                       do_delete = FALSE;
+                       is_new_line = TRUE;
                        continue;
                }
 
@@ -2218,49 +2363,95 @@ static void compose_wrap_line_all(Compose *compose)
                        ch_len = 1;
                }
 
+               /* possible line break */
                if (ch_len == 1 && isspace(*cbuf)) {
                        line_pos = cur_pos + 1;
                        line_len = cur_len + ch_len;
                }
 
-               if (cur_len + ch_len > prefs_common.linewrap_len &&
-                   line_len > 0) {
-                       gint tlen;
+               /* are we over wrapping length set in preferences ? */
+               if (cur_len + ch_len > linewrap_len) {
+                       gint clen;
 
-                       if (text->use_wchar)
-                               tlen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
-                       else {
-                               cbuf[0] = GTK_STEXT_INDEX(text, line_pos - 1);
-                               tlen = 1;
+#ifdef WRAP_DEBUG
+                       printf("should wrap cur_pos=%d ", cur_pos);
+                       dump_text(text, p_pos, tlen, 1);
+                       dump_text(text, line_pos, tlen, 1);
+#endif
+                       /* force wrapping if it is one long word but not URL */
+                       if (line_pos - p_pos <= i_len)
+                               if (!gtkut_stext_is_uri_string
+                                   (text, line_pos, tlen))
+                                       line_pos = cur_pos - 1;
+#ifdef WRAP_DEBUG
+                       printf("new line_pos=%d\n", line_pos);
+#endif
+
+                       GET_CHAR(line_pos - 1, cbuf, clen);
+
+                       /* if next character is space delete it */
+                        if (clen == 1 && isspace(*cbuf)) {
+                               if (p_pos + i_len != line_pos ||
+                                   !gtkut_stext_is_uri_string
+                                       (text, line_pos, tlen)) {
+                                       gtk_stext_set_point(text, line_pos);
+                                       gtk_stext_backward_delete(text, 1);
+                                       tlen--;
+                                       cur_pos--;
+                                       line_pos--;
+                                       cur_len--;
+                                       line_len--;
+                               }
                        }
-                       if (tlen == 1 && isspace(*cbuf)) {
-                               gtk_stext_set_point(text, line_pos);
-                               gtk_stext_backward_delete(text, 1);
-                               text_len--;
-                               cur_pos--;
-                               line_pos--;
-                               cur_len--;
-                               line_len--;
+
+                       /* if it is URL at beginning of line don't wrap */
+                       if (p_pos + i_len == line_pos &&
+                           gtkut_stext_is_uri_string(text, line_pos, tlen)) {
+#ifdef WRAP_DEBUG
+                               printf("found URL at ");
+                               dump_text(text, line_pos, tlen, 1);
+#endif
+                               continue;
                        }
 
+                       /* insert CR */
                        gtk_stext_set_point(text, line_pos);
                        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
-                       text_len++;
-                       cur_pos++;
+                       /* gtk_stext_compact_buffer(text); */
+                       tlen++;
                        line_pos++;
-                       cur_len = cur_len - line_len + ch_len;
+                       /* for loop will increase it */
+                       cur_pos = line_pos - 1;
+                       /* start over with current line */
+                       is_new_line = TRUE;
                        line_len = 0;
-                       if (linewrap_quote && quote_len) {
-                               /* only if line is not already quoted */
-                               if (!is_gtkstext_string(text, line_pos,
-                                                       text_len, quote_fmt)) {
-                                       gtk_stext_insert(text, NULL, NULL, NULL,
-                                                       quote_fmt, quote_len);
-                                       gtk_stext_compact_buffer(text);
-                                       text_len += quote_len;
-                                       cur_pos += quote_len;
-                                       cur_len += quote_len;
-                                       line_len = quote_len;
+                       cur_len = 0;
+                       do_delete = TRUE;
+#ifdef WRAP_DEBUG
+                       printf("after CR insert ");
+                       dump_text(text, line_pos, tlen, 1);
+                       dump_text(text, cur_pos, tlen, 1);
+#endif
+
+                       /* should we insert quotation ? */
+                       if (linewrap_quote && qlen) {
+                               /* only if line is not already quoted  */
+                               if (!gtkut_stext_str_compare
+                                       (text, line_pos, tlen, qfmt)) {
+                                       guint ins_len;
+
+                                       if (line_pos - p_pos > i_len) {
+                                               ins_len = ins_quote
+                                                       (text, qlen, i_len,
+                                                        p_pos, tlen, qfmt);
+
+                                               /* gtk_stext_compact_buffer(text); */
+                                               tlen += ins_len;
+                                       }
+#ifdef WRAP_DEBUG
+                                       printf("after quote insert ");
+                                       dump_text(text, line_pos, tlen, 1);
+#endif
                                }
                        }
                        continue;
@@ -2270,12 +2461,15 @@ static void compose_wrap_line_all(Compose *compose)
                        line_pos = cur_pos + 1;
                        line_len = cur_len + ch_len;
                }
+               /* advance to next character in buffer */
                cur_len += ch_len;
        }
 
        gtk_stext_thaw(text);
 }
 
+#undef GET_CHAR
+
 static void compose_set_title(Compose *compose)
 {
        gchar *str;
@@ -2319,27 +2513,69 @@ compose_current_mail_account(void)
 }
 
 gboolean compose_check_for_valid_recipient(Compose *compose) {
-       gchar *recipient_headers[] = {"To:", "Newsgroups:", "Cc:", "Bcc:", NULL};
+       gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
+       gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
        gboolean recipient_found = FALSE;
        GSList *list;
        gchar **strptr;
 
+       /* free to and newsgroup list */
+        slist_free_strings(compose->to_list);
+       g_slist_free(compose->to_list);
+       compose->to_list = NULL;
+                       
+       slist_free_strings(compose->newsgroup_list);
+        g_slist_free(compose->newsgroup_list);
+        compose->newsgroup_list = NULL;
+
+       /* search header entries for to and newsgroup entries */
        for(list = compose->header_list; list; list = list->next) {
                gchar *header;
                gchar *entry;
-               header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((compose_headerentry *)list->data)->combo)->entry));
-               entry = gtk_entry_get_text(GTK_ENTRY(((compose_headerentry *)list->data)->entry));
-               if(strlen(entry)) {
-                       for(strptr = recipient_headers; *strptr != NULL; strptr++) {
+               header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry));
+               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))) {
+                                       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))) {
+                                       compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
                                        recipient_found = TRUE;
                                }
                        }
                }
+               g_free(entry);
        }
        return recipient_found;
 }
 
+gint compose_send(Compose *compose)
+{
+       gint msgnum;
+       FolderItem *folder;
+       gint val;
+
+       val = compose_queue(compose, &msgnum, &folder);
+       if (val) {
+               alertpanel_error(_("Could not queue message for sending"));
+               return -1;
+       }
+       
+       val = procmsg_send_message_queue(folder_item_fetch_msg(folder, msgnum));
+       if(!val) {
+               folder_item_remove_msg(folder, msgnum);
+               folderview_update_item(folder, TRUE);
+       }
+
+       return val;
+}
+
+#if 0 /* compose restructure */
 gint compose_send(Compose *compose)
 {
        gchar tmp[MAXPATHLEN + 1];
@@ -2458,11 +2694,169 @@ gint compose_send(Compose *compose)
        lock = FALSE;
        return ok;
 }
+#endif
 
 static gboolean compose_use_attach(Compose *compose) {
     return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
 }
 
+static gint compose_bounce_write_headers_from_headerlist(Compose *compose, 
+                                                        FILE *fp)
+{
+       gchar buf[BUFFSIZE];
+       gchar *str;
+       gboolean first_address;
+       GSList *list;
+       ComposeHeaderEntry *headerentry;
+       gchar *headerentryname;
+       gchar *header_w_colon;
+       gchar *cc_hdr;
+       gchar *to_hdr;
+
+       debug_print(_("Writing bounce header\n"));
+
+       header_w_colon = g_strconcat("To:", NULL);
+       to_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
+       header_w_colon = g_strconcat("Cc:", NULL);
+       cc_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
+       
+       first_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));
+
+               if(g_strcasecmp(headerentryname, cc_hdr) == 0 
+                  || g_strcasecmp(headerentryname, to_hdr) == 0) {
+                       str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
+                       Xstrdup_a(str, str, return -1);
+                       g_strstrip(str);
+                       if(str[0] != '\0') {
+                               compose_convert_header
+                                       (buf, sizeof(buf), str,
+                                       strlen("Resent-To") + 2);
+                               if(first_address) {
+                                       fprintf(fp, "Resent-To: ");
+                                       first_address = FALSE;
+                               } else {
+                                       fprintf(fp, ",");
+                               }
+                               fprintf(fp, "%s", buf);
+                       }
+               }
+       }
+       /* if(!first_address) { */
+       fprintf(fp, "\n");
+       /* } */
+
+       return(0);
+}
+
+static gint compose_bounce_write_headers(Compose *compose, FILE *fp)
+{
+       gchar buf[BUFFSIZE];
+       gchar *str;
+       /* struct utsname utsbuf; */
+
+       g_return_val_if_fail(fp != NULL, -1);
+       g_return_val_if_fail(compose->account != NULL, -1);
+       g_return_val_if_fail(compose->account->address != NULL, -1);
+
+       /* Date */
+       get_rfc822_date(buf, sizeof(buf));
+       fprintf(fp, "Resent-Date: %s\n", buf);
+
+       /* From */
+       if (compose->account->name && *compose->account->name) {
+               compose_convert_header
+                       (buf, sizeof(buf), compose->account->name,
+                        strlen("From: "));
+               fprintf(fp, "Resent-From: %s <%s>\n",
+                       buf, compose->account->address);
+       } else
+               fprintf(fp, "Resent-From: %s\n", compose->account->address);
+
+       /* To */
+       compose_bounce_write_headers_from_headerlist(compose, fp);
+
+       /* separator between header and body */
+       fputs("\n", fp);
+
+       return 0;
+}
+
+static gint compose_bounce_write_to_file(Compose *compose, const gchar *file)
+{
+       FILE *fp;
+       FILE *fdest;
+       size_t len;
+       gchar buf[BUFFSIZE];
+
+       if ((fp = fopen(compose->bounce_filename, "r")) == NULL) {
+               FILE_OP_ERROR(file, "fopen");
+               return -1;
+       }
+
+       if ((fdest = fopen(file, "w")) == NULL) {
+               FILE_OP_ERROR(file, "fopen");
+               fclose(fp);
+               return -1;
+       }
+
+       /* chmod for security */
+       if (change_file_mode_rw(fdest, file) < 0) {
+               FILE_OP_ERROR(file, "chmod");
+               g_warning(_("can't change file mode\n"));
+       }
+
+       while (procheader_get_unfolded_line(buf, sizeof(buf), fp)) {
+               /* should filter returnpath, delivered-to */
+               if ((g_strncasecmp(buf, "Return-Path:",
+                                  strlen("Return-Path:")) == 0)
+                   || (g_strncasecmp(buf, "Delivered-To:",
+                                     strlen("Delivered-To:")) == 0))
+                       continue;
+
+               if (fputs(buf, fdest) == -1)
+                       goto error;
+
+               if (g_strncasecmp(buf, "From:", strlen("From:")) == 0) {
+                       fputs(" (by way of ", fdest);
+                       if (compose->account->name
+                           && *compose->account->name) {
+                               compose_convert_header
+                                       (buf, sizeof(buf),
+                                        compose->account->name,
+                                        strlen("From: "));
+                               fprintf(fdest, "%s <%s>",
+                                       buf, compose->account->address);
+                       } else
+                               fprintf(fdest, "%s",
+                                       compose->account->address);
+                       fputs(")", fdest);
+               }
+
+               if (fputs("\n", fdest) == -1)
+                       goto error;
+       }
+
+       compose_bounce_write_headers(compose, fdest);
+
+       while ((len = fread(buf, sizeof(gchar), BUFFSIZE, fp)) > 0) {
+               if (fwrite(buf, sizeof(gchar), len, fdest) == -1)
+                       goto error;
+       }
+
+       fclose(fdest);
+       fclose(fp);
+
+       return 0;
+ error:
+       fclose(fdest);
+       fclose(fp);
+
+       return -1;
+}
+
 static gint compose_write_to_file(Compose *compose, const gchar *file,
                                  gboolean is_draft)
 {
@@ -2693,31 +3087,97 @@ static gint compose_remove_reedit_target(Compose *compose)
        return 0;
 }
 
-static gint compose_queue(Compose *compose, const gchar *file)
+
+static gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item)
 {
        FolderItem *queue;
-       gchar *tmp, *queue_path;
+       gchar *tmp, *tmp2, *queue_path;
        FILE *fp, *src_fp;
        GSList *cur;
        gchar buf[BUFFSIZE];
        gint num;
-
+        static gboolean lock = FALSE;
+       PrefsAccount *mailac = NULL, *newsac = NULL;
+       
        debug_print(_("queueing message...\n"));
-       g_return_val_if_fail(compose->to_list != NULL, -1);
        g_return_val_if_fail(compose->account != NULL, -1);
+        g_return_val_if_fail(compose->orig_account != NULL, -1);
+
+        lock = TRUE;
+       
+        if(!compose_check_for_valid_recipient(compose)) {
+                alertpanel_error(_("Recipient is not specified."));
+                lock = FALSE;
+                return -1;
+        }
+                                                                       
+       if (!compose->to_list && !compose->newsgroup_list) {
+               g_warning(_("can't get recipient list."));
+               lock = FALSE;
+                return -1;
+        }
+
+       if(compose->to_list) {
+               if (compose->account->protocol != A_NNTP)
+                       mailac = compose->account;
+               else if (compose->orig_account->protocol != A_NNTP)
+                       mailac = compose->orig_account;
+               else if (cur_account && cur_account->protocol != A_NNTP)
+                       mailac = cur_account;
+               else if (!(mailac = compose_current_mail_account())) {
+                       lock = FALSE;
+                       alertpanel_error(_("No account for sending mails available!"));
+                       return -1;
+               }
+       }
+
+       if(compose->newsgroup_list) {
+                if (compose->account->protocol == A_NNTP)
+                        newsac = compose->account;
+                else if(!(newsac = compose->orig_account) || (newsac->protocol != A_NNTP)) {
+                       lock = FALSE;
+                       alertpanel_error(_("No account for posting news available!"));
+                       return -1;
+               }                       
+       }
+
+        if (prefs_common.linewrap_at_send)
+               compose_wrap_line_all(compose);
+                       
+       /* write to temporary file */
+       tmp2 = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
+                                     G_DIR_SEPARATOR, (gint)compose);
 
+       if (compose->bounce_filename != NULL) {
+               if (compose_bounce_write_to_file(compose, tmp2) < 0) {
+                       unlink(tmp2);
+                       lock = FALSE;
+                       return -1;
+               }
+       }
+       else {
+               if (compose_write_to_file(compose, tmp2, FALSE) < 0) {
+                       unlink(tmp2);
+                       lock = FALSE;
+                       return -1;
+               }
+       }
+
+       /* add queue header */
        tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
-                             G_DIR_SEPARATOR, (gint)compose);
+                                     G_DIR_SEPARATOR, (gint)compose);
        if ((fp = fopen(tmp, "w")) == NULL) {
                FILE_OP_ERROR(tmp, "fopen");
                g_free(tmp);
                return -1;
        }
-       if ((src_fp = fopen(file, "r")) == NULL) {
-               FILE_OP_ERROR(file, "fopen");
+       if ((src_fp = fopen(tmp2, "r")) == NULL) {
+               FILE_OP_ERROR(tmp2, "fopen");
                fclose(fp);
                unlink(tmp);
                g_free(tmp);
+               unlink(tmp2);
+               g_free(tmp2);
                return -1;
        }
        if (change_file_mode_rw(fp, tmp) < 0) {
@@ -2740,21 +3200,46 @@ static gint compose_queue(Compose *compose, const gchar *file)
        fprintf(fp, "PT:0\n");
        fprintf(fp, "S:%s\n", compose->account->address);
        fprintf(fp, "RQ:\n");
-       if (compose->account->smtp_server)
-               fprintf(fp, "SSV:%s\n", compose->account->smtp_server);
+       if (mailac)
+               fprintf(fp, "SSV:%s\n", mailac->smtp_server);
        else
                fprintf(fp, "SSV:\n");
-       if (compose->account->nntp_server)
-               fprintf(fp, "NSV:%s\n", compose->account->nntp_server);
+       if (newsac)
+               fprintf(fp, "NSV:%s\n", newsac->nntp_server);
        else
                fprintf(fp, "NSV:\n");
        fprintf(fp, "SSH:\n");
-       fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data);
-       for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
-               fprintf(fp, ",<%s>", (gchar *)cur->data);
+       /* write recepient list */
+       fprintf(fp, "R:");
+       if(compose->to_list) {
+               fprintf(fp, "<%s>", (gchar *)compose->to_list->data);
+               for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
+                       fprintf(fp, ",<%s>", (gchar *)cur->data);
+       }
+       fprintf(fp, "\n");
+       /* write newsgroup list */
+       fprintf(fp, "NG:");
+       if(compose->newsgroup_list) {
+               fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
+               for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
+                       fprintf(fp, ",%s", (gchar *)cur->data);
+       }
        fprintf(fp, "\n");
-       /* Sylpheed account ID */
-       fprintf(fp, "AID:%d\n", compose->account->account_id);
+       /* Sylpheed account IDs */
+       if(mailac) {
+               fprintf(fp, "MAID:%d\n", mailac->account_id);
+       }
+       if(newsac) {
+               fprintf(fp, "NAID:%d\n", newsac->account_id);
+       }
+       /* Save copy folder */
+       if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
+               gchar *str;
+               
+               str = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
+               fprintf(fp, "SCF:%s\n", str);
+               g_free(str);
+       }
        fprintf(fp, "\n");
 
        while (fgets(buf, sizeof(buf), src_fp) != NULL) {
@@ -2764,18 +3249,22 @@ static gint compose_queue(Compose *compose, const gchar *file)
                        fclose(src_fp);
                        unlink(tmp);
                        g_free(tmp);
+                       unlink(tmp2);
+                       g_free(tmp2);
                        return -1;
                }
        }
-
        fclose(src_fp);
        if (fclose(fp) == EOF) {
                FILE_OP_ERROR(tmp, "fclose");
                unlink(tmp);
                g_free(tmp);
+               unlink(tmp2);
+               g_free(tmp2);
                return -1;
        }
-
+                                               
+       /* queue message */
        queue = folder_get_default_queue();
 
        folder_item_scan(queue);
@@ -2789,7 +3278,10 @@ static gint compose_queue(Compose *compose, const gchar *file)
                g_free(queue_path);
                return -1;
        }
+       unlink(tmp);
        g_free(tmp);
+       unlink(tmp2);
+       g_free(tmp2);
 
        if (compose->mode == COMPOSE_REEDIT) {
                compose_remove_reedit_target(compose);
@@ -2815,6 +3307,11 @@ static gint compose_queue(Compose *compose, const gchar *file)
        folder_item_scan(queue);
        folderview_update_item(queue, TRUE);
 
+       if((msgnum != NULL) && (item != NULL)) {
+               *msgnum = num;
+               *item = queue;
+       }
+
        return 0;
 }
 
@@ -2856,12 +3353,7 @@ static void compose_write_attach(Compose *compose, FILE *fp)
                        gchar buf[BUFFSIZE];
 
                        while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
-                               len = strlen(buf);
-                               if (len > 1 && buf[len - 1] == '\n' &&
-                                   buf[len - 2] == '\r') {
-                                       buf[len - 2] = '\n';
-                                       buf[len - 1] = '\0';
-                               }
+                               strcrchomp(buf);
                                fputs(buf, fp);
                        }
                } else {
@@ -2893,15 +3385,14 @@ static void compose_write_attach(Compose *compose, FILE *fp)
 
 static gint compose_write_headers_from_headerlist(Compose *compose, 
                                                  FILE *fp, 
-                                                 gchar *header,
-                                                 GSList *(*list_append_func) (GSList *list, const gchar *str),
-                                                 GSList **dest_list)
+                                                 gchar *header)
 {
        gchar buf[BUFFSIZE];
        gchar *str, *header_w_colon, *trans_hdr;
        gboolean first_address;
        GSList *list;
-       compose_headerentry *headerentry;
+       ComposeHeaderEntry *headerentry;
+       gchar * headerentryname;
 
        if (IS_IN_CUSTOM_HEADER(header)) {
                return 0;
@@ -2914,23 +3405,25 @@ static gint compose_write_headers_from_headerlist(Compose *compose,
 
        first_address = TRUE;
        for(list = compose->header_list; list; list = list->next) {
-               headerentry = ((compose_headerentry *)list->data);
-               if(!strcmp(trans_hdr, gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)))) {
+               headerentry = ((ComposeHeaderEntry *)list->data);
+               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
+
+               if(!g_strcasecmp(trans_hdr, headerentryname)) {
                        str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
                        Xstrdup_a(str, str, return -1);
                        g_strstrip(str);
-                       if(list_append_func)
-                               *dest_list = list_append_func(*dest_list, str);
-                       compose_convert_header
-                               (buf, sizeof(buf), str,
-                               strlen(header) + 2);
-                       if(first_address) {
-                               fprintf(fp, "%s: ", header);
-                               first_address = FALSE;
-                       } else {
-                               fprintf(fp, ", ");
+                       if(str[0] != '\0') {
+                               compose_convert_header
+                                       (buf, sizeof(buf), str,
+                                       strlen(header) + 2);
+                               if(first_address) {
+                                       fprintf(fp, "%s: ", header);
+                                       first_address = FALSE;
+                               } else {
+                                       fprintf(fp, ",");
+                               }
+                               fprintf(fp, "%s", buf);
                        }
-                       fprintf(fp, "%s", buf);
                }
        }
        if(!first_address) {
@@ -2973,12 +3466,8 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        fprintf(fp, "From: %s\n", compose->account->address);
        }
        
-       slist_free_strings(compose->to_list);
-       g_slist_free(compose->to_list);
-       compose->to_list = NULL;
-
        /* To */
-       compose_write_headers_from_headerlist(compose, fp, "To", address_list_append, &compose->to_list);
+       compose_write_headers_from_headerlist(compose, fp, "To");
 #if 0 /* NEW COMPOSE GUI */
        if (compose->use_to) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
@@ -2998,12 +3487,9 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                }
        }
 #endif
-       slist_free_strings(compose->newsgroup_list);
-       g_slist_free(compose->newsgroup_list);
-       compose->newsgroup_list = NULL;
 
        /* Newsgroups */
-       compose_write_headers_from_headerlist(compose, fp, "Newsgroups", newsgroup_list_append, &compose->newsgroup_list);
+       compose_write_headers_from_headerlist(compose, fp, "Newsgroups");
 #if 0 /* NEW COMPOSE GUI */
        str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
        if (*str != '\0') {
@@ -3023,7 +3509,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
        }
 #endif
        /* Cc */
-       compose_write_headers_from_headerlist(compose, fp, "Cc", address_list_append, &compose->to_list);
+       compose_write_headers_from_headerlist(compose, fp, "Cc");
 #if 0 /* NEW COMPOSE GUI */
        if (compose->use_cc) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
@@ -3044,7 +3530,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
        }
 #endif
        /* Bcc */
-       compose_write_headers_from_headerlist(compose, fp, "Bcc", address_list_append, &compose->to_list);
+       compose_write_headers_from_headerlist(compose, fp, "Bcc");
 #if 0 /* NEW COMPOSE GUI */
        if (compose->use_bcc) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
@@ -3061,8 +3547,6 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                }
        }
 #endif
-       if (!is_draft && !compose->to_list && !compose->newsgroup_list)
-               return -1;
 
        /* Subject */
        str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
@@ -3092,7 +3576,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                fprintf(fp, "References: %s\n", compose->references);
 
        /* Followup-To */
-       compose_write_headers_from_headerlist(compose, fp, "Followup-To", NULL, NULL);
+       compose_write_headers_from_headerlist(compose, fp, "Followup-To");
 #if 0 /* NEW COMPOSE GUI */
        if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
@@ -3109,7 +3593,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
        }
 #endif
        /* Reply-To */
-       compose_write_headers_from_headerlist(compose, fp, "Reply-To", NULL, NULL);
+       compose_write_headers_from_headerlist(compose, fp, "Reply-To");
 #if 0 /* NEW COMPOSE GUI */
        if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
@@ -3158,21 +3642,23 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                     cur = cur->next) {
                        CustomHeader *chdr = (CustomHeader *)cur->data;
 
-                       if (strcasecmp(chdr->name, "Date")                      != 0 &&
-                           strcasecmp(chdr->name, "From")                      != 0 &&
-                           strcasecmp(chdr->name, "To")                        != 0 &&
-                           strcasecmp(chdr->name, "Sender")                    != 0 &&
-                           strcasecmp(chdr->name, "Message-Id")                != 0 &&
-                           strcasecmp(chdr->name, "In-Reply-To")               != 0 &&
-                           strcasecmp(chdr->name, "References")                != 0 &&
-                           strcasecmp(chdr->name, "Mime-Version")              != 0 &&
-                           strcasecmp(chdr->name, "Content-Type")              != 0 &&
-                           strcasecmp(chdr->name, "Content-Transfer-Encoding") != 0)
+                       if (strcasecmp(chdr->name, "Date")         != 0 &&
+                           strcasecmp(chdr->name, "From")         != 0 &&
+                           strcasecmp(chdr->name, "To")           != 0 &&
+                        /* strcasecmp(chdr->name, "Sender")       != 0 && */
+                           strcasecmp(chdr->name, "Message-Id")   != 0 &&
+                           strcasecmp(chdr->name, "In-Reply-To")  != 0 &&
+                           strcasecmp(chdr->name, "References")   != 0 &&
+                           strcasecmp(chdr->name, "Mime-Version") != 0 &&
+                           strcasecmp(chdr->name, "Content-Type") != 0 &&
+                           strcasecmp(chdr->name, "Content-Transfer-Encoding")
+                           != 0) {
                                compose_convert_header
                                        (buf, sizeof(buf),
                                         chdr->value ? chdr->value : "",
                                         strlen(chdr->name) + 2);
-                       fprintf(fp, "%s: %s\n", chdr->name, buf);
+                               fprintf(fp, "%s: %s\n", chdr->name, buf);
+                       }
                }
        }
 
@@ -3262,7 +3748,6 @@ static void compose_generate_msgid(Compose *compose, gchar *buf, gint len)
        g_free(addr);
 }
 
-
 static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
                                    GtkWidget **entry, gint *count,
                                    const gchar *label_str,
@@ -3279,7 +3764,7 @@ static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
        gtk_box_pack_end(GTK_BOX(*hbox), label, FALSE, FALSE, 0);
        gtk_table_attach(GTK_TABLE(table), *hbox, 0, 1, *count, (*count) + 1,
                         GTK_FILL, 0, 2, 0);
-       *entry = gtk_entry_new();
+       *entry = gtk_entry_new_with_max_length(MAX_ENTRY_LENGTH);
        gtk_table_attach
                (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1, GTK_FILL | GTK_EXPAND, GTK_SHRINK, 0, 0);
 #if 0 /* NEW COMPOSE GUI */
@@ -3293,14 +3778,17 @@ static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
        (*count)++;
 }
 
-static void compose_create_header_entry(Compose *compose) {
+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, *header;
-       compose_headerentry *headerentry = g_new0(compose_headerentry, 1);
+       ComposeHeaderEntry *headerentry;
+
+       headerentry = g_new0(ComposeHeaderEntry, 1);
 
        /* Combo box */
        combo = gtk_combo_new();
@@ -3319,10 +3807,10 @@ static void compose_create_header_entry(Compose *compose) {
        } else {
                switch(compose->account->protocol) {
                        case A_NNTP:
-                               header = _("Newsgroups:");
+                               header = prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:";
                                break;
                        default:
-                               header = _("To:");
+                               header = prefs_common.trans_hdr ? _("To:") : "To:";
                                break;
                }                                                                   
        }
@@ -3335,6 +3823,7 @@ static void compose_create_header_entry(Compose *compose) {
 
         gtk_signal_connect(GTK_OBJECT(entry), "key-press-event", GTK_SIGNAL_FUNC(compose_headerentry_key_press_event_cb), headerentry);
        gtk_signal_connect(GTK_OBJECT(entry), "changed", GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
+       gtk_signal_connect(GTK_OBJECT(entry), "activate", GTK_SIGNAL_FUNC(compose_ctl_enter_send_shortcut_cb), compose);
 
        address_completion_register_entry(GTK_ENTRY(entry));
 
@@ -3347,8 +3836,9 @@ static void compose_create_header_entry(Compose *compose) {
        compose->header_last = headerentry;
 }
 
-static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) {
-       compose_headerentry *last_header;
+static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) 
+{
+       ComposeHeaderEntry *last_header;
        
        last_header = compose->header_last;
        
@@ -3356,20 +3846,10 @@ static void compose_add_header_entry(Compose *compose, gchar *header, gchar *tex
        gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
 }
 
-static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
+static GtkWidget *compose_create_header(Compose *compose) 
 {
-       Compose   *compose;
-       GtkWidget *window;
-       GtkWidget *vbox;
-       GtkWidget *menubar;
-       GtkWidget *handlebox;
-
-       GtkWidget *notebook;
-
-       GtkWidget *vbox2;
-
-       GtkWidget *table_vbox;
        GtkWidget *label;
+       GtkWidget *hbox;
        GtkWidget *from_optmenu_hbox;
 #if 0 /* NEW COMPOSE GUI */
        GtkWidget *to_entry;
@@ -3379,7 +3859,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 #endif
        GtkWidget *header_scrolledwin;
        GtkWidget *header_table;
-       GtkWidget *subject_entry;
 #if 0 /* NEW COMPOSE GUI */
        GtkWidget *cc_entry;
        GtkWidget *cc_hbox;
@@ -3390,99 +3869,19 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        GtkWidget *followup_entry;
        GtkWidget *followup_hbox;
 #endif
-       GtkWidget *paned;
-
-       GtkWidget *attach_scrwin;
-       GtkWidget *attach_clist;
 
-       GtkWidget *edit_vbox;
-       GtkWidget *ruler_hbox;
-       GtkWidget *ruler;
-       GtkWidget *scrolledwin;
-       GtkWidget *text;
-
-       GtkWidget *table;
-       GtkWidget *hbox;
-
-       gchar *titles[] = {_("MIME type"), _("Size"), _("Name")};
-       guint n_menu_entries;
-       GtkStyle  *style, *new_style;
-       GdkColormap *cmap;
-       GdkColor color[1];
-       gboolean success[1];
-       GdkFont   *font;
-       GtkWidget *popupmenu;
-       GtkWidget *menuitem;
-       GtkItemFactory *popupfactory;
-       GtkItemFactory *ifactory;
-       gint n_entries;
        gint count = 0;
-       gint i;
-
-#if USE_PSPELL
-        GtkPspell * gtkpspell = NULL;
-#endif
-
-       g_return_val_if_fail(account != NULL, NULL);
-
-       debug_print(_("Creating compose window...\n"));
-       compose = g_new0(Compose, 1);
-
-       compose->account = account;
-       compose->orig_account = account;
-
-       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-       gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
-       gtk_widget_set_usize(window, -1, prefs_common.compose_height);
-       gtk_signal_connect(GTK_OBJECT(window), "delete_event",
-                          GTK_SIGNAL_FUNC(compose_delete_cb), compose);
-       gtk_signal_connect(GTK_OBJECT(window), "destroy",
-                          GTK_SIGNAL_FUNC(compose_destroy_cb), compose);
-       gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
-                          GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
-       gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
-                          GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
-       gtk_widget_realize(window);
-
-       gtkut_widget_set_composer_icon(window);
-
-       vbox = gtk_vbox_new(FALSE, 0);
-       gtk_container_add(GTK_CONTAINER(window), vbox);
-
-       n_menu_entries = sizeof(compose_entries) / sizeof(compose_entries[0]);
-       menubar = menubar_create(window, compose_entries,
-                                n_menu_entries, "<Compose>", compose);
-       gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
-
-       handlebox = gtk_handle_box_new();
-       gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
-
-       compose_toolbar_create(compose, handlebox);
-
-       vbox2 = gtk_vbox_new(FALSE, 2);
-       gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
-       gtk_container_set_border_width(GTK_CONTAINER(vbox2), BORDER_WIDTH);
-
-       table_vbox = gtk_vbox_new(FALSE, 0);
-       gtk_box_pack_start(GTK_BOX(vbox2), table_vbox, FALSE, TRUE, 0);
-       gtk_container_set_border_width(GTK_CONTAINER(table_vbox),
-                                      BORDER_WIDTH * 2);
-
-       /* Notebook */
-       notebook = gtk_notebook_new();
-       gtk_widget_set_usize(notebook, -1, 180);
-       gtk_widget_show(notebook);
 
        /* header labels and entries */
        header_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
        gtk_widget_show(header_scrolledwin);
        gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(header_scrolledwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
-       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), header_scrolledwin, gtk_label_new(_("Header")));
 
        header_table = gtk_table_new(2, 2, FALSE);
        gtk_widget_show(header_table);
        gtk_container_set_border_width(GTK_CONTAINER(header_table), 2);
        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);
        count = 0;
 
        /* option menu for selecting accounts */
@@ -3499,10 +3898,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 #endif
        count++;
 
-       /* Subject */
-       compose_add_entry_field(header_table, &hbox, &subject_entry, &count,
-                               "Subject:", FALSE);
-
        compose->header_table = header_table;
        compose->header_list = NULL;
        compose->header_nextrow = count;
@@ -3565,48 +3960,281 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
 #endif
 
+       compose->table            = NULL;
+#if 0 /* NEW COMPOSE GUI */
+       compose->table            = table;
+       compose->to_hbox          = to_hbox;
+       compose->to_entry         = to_entry;
+       compose->newsgroups_hbox  = newsgroups_hbox;
+       compose->newsgroups_entry = newsgroups_entry;
+#endif
+#if 0 /* NEW COMPOSE GUI */
+       compose->cc_hbox          = cc_hbox;
+       compose->cc_entry         = cc_entry;
+       compose->bcc_hbox         = bcc_hbox;
+       compose->bcc_entry        = bcc_entry;
+       compose->reply_hbox       = reply_hbox;
+       compose->reply_entry      = reply_entry;
+       compose->followup_hbox    = followup_hbox;
+       compose->followup_entry   = followup_entry;
+#endif
+
+       return header_scrolledwin ;
+}
+
+GtkWidget *compose_create_attach(Compose *compose)
+{
+       gchar *titles[] = {_("MIME type"), _("Size"), _("Name")};
+       gint i;
+
+       GtkWidget *attach_scrwin;
+       GtkWidget *attach_clist;
+
        /* attachment list */
        attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
-       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), attach_scrwin, gtk_label_new(_("Attachments")));
        gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(attach_scrwin),
                                       GTK_POLICY_AUTOMATIC,
                                       GTK_POLICY_ALWAYS);
        gtk_widget_set_usize(attach_scrwin, -1, 80);
 
-       attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
-       gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
-                                          GTK_JUSTIFY_RIGHT);
-       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
-       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
-       gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
-                                    GTK_SELECTION_EXTENDED);
-       for (i = 0; i < N_ATTACH_COLS; i++)
-               GTK_WIDGET_UNSET_FLAGS
-                       (GTK_CLIST(attach_clist)->column[i].button,
-                        GTK_CAN_FOCUS);
-       gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
+       attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
+       gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
+                                          GTK_JUSTIFY_RIGHT);
+       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
+       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
+       gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
+                                    GTK_SELECTION_EXTENDED);
+       for (i = 0; i < N_ATTACH_COLS; i++)
+               GTK_WIDGET_UNSET_FLAGS
+                       (GTK_CLIST(attach_clist)->column[i].button,
+                        GTK_CAN_FOCUS);
+       gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
+
+       gtk_signal_connect(GTK_OBJECT(attach_clist), "select_row",
+                          GTK_SIGNAL_FUNC(attach_selected), compose);
+       gtk_signal_connect(GTK_OBJECT(attach_clist), "button_press_event",
+                          GTK_SIGNAL_FUNC(attach_button_pressed), compose);
+       gtk_signal_connect(GTK_OBJECT(attach_clist), "key_press_event",
+                          GTK_SIGNAL_FUNC(attach_key_pressed), compose);
+
+       /* drag and drop */
+       gtk_drag_dest_set(attach_clist,
+                         GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
+                         GDK_ACTION_COPY);
+       gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received",
+                          GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
+                          compose);
+
+       compose->attach_scrwin = attach_scrwin;
+       compose->attach_clist  = attach_clist;
+
+       return attach_scrwin;
+}
+
+static void compose_savemsg_checkbtn_cb(GtkWidget *widget, Compose *compose);
+static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose);
+
+static GtkWidget *compose_create_others(Compose *compose)
+{
+       GtkWidget *table;
+       GtkWidget *savemsg_checkbtn;
+       GtkWidget *savemsg_entry;
+       GtkWidget *savemsg_select;
+       
+       guint rowcount = 0;
+       gchar *folderidentifier;
+
+       /* Table for settings */
+       table = gtk_table_new(3, 1, FALSE);
+       gtk_widget_show(table);
+       gtk_table_set_row_spacings(GTK_TABLE(table), VSPACING_NARROW);
+       rowcount = 0;
+
+       /* Save Message to folder */
+       savemsg_checkbtn = gtk_check_button_new_with_label(_("Save Message to "));
+       gtk_widget_show(savemsg_checkbtn);
+       gtk_table_attach(GTK_TABLE(table), savemsg_checkbtn, 0, 1, rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);
+       if(folder_get_default_outbox()) {
+               gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(savemsg_checkbtn), prefs_common.savemsg);
+       }
+       gtk_signal_connect(GTK_OBJECT(savemsg_checkbtn), "toggled",
+                           GTK_SIGNAL_FUNC(compose_savemsg_checkbtn_cb), compose);
+
+       savemsg_entry = gtk_entry_new();
+       gtk_widget_show(savemsg_entry);
+       gtk_table_attach_defaults(GTK_TABLE(table), savemsg_entry, 1, 2, rowcount, rowcount + 1);
+       gtk_editable_set_editable(GTK_EDITABLE(savemsg_entry), prefs_common.savemsg);
+       if(folder_get_default_outbox()) {
+               folderidentifier = folder_item_get_identifier(folder_get_default_outbox());
+               gtk_entry_set_text(GTK_ENTRY(savemsg_entry), folderidentifier);
+               g_free(folderidentifier);
+       }
+
+       savemsg_select = gtk_button_new_with_label (_("Select ..."));
+       gtk_widget_show (savemsg_select);
+       gtk_table_attach(GTK_TABLE(table), savemsg_select, 2, 3, rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);
+       gtk_signal_connect (GTK_OBJECT (savemsg_select), "clicked",
+                           GTK_SIGNAL_FUNC (compose_savemsg_select_cb),
+                           compose);
+
+       rowcount++;
+
+       compose->savemsg_checkbtn = savemsg_checkbtn;
+       compose->savemsg_entry = savemsg_entry;
+
+       return table;   
+}
+
+static void compose_savemsg_checkbtn_cb(GtkWidget *widget, Compose *compose) 
+{
+       gtk_editable_set_editable(GTK_EDITABLE(compose->savemsg_entry),
+               gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn)));
+}
+
+static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose)
+{
+       FolderItem *dest;
+       gchar * path;
+
+       dest = foldersel_folder_sel(NULL, NULL);
+       if (!dest) return;
+
+       path = folder_item_get_identifier(dest);
+
+       gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), path);
+       g_free(path);
+}
+
+static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
+{
+       Compose   *compose;
+       GtkWidget *window;
+       GtkWidget *vbox;
+       GtkWidget *menubar;
+       GtkWidget *handlebox;
+
+       GtkWidget *notebook;
+
+       GtkWidget *vbox2;
+
+       GtkWidget *label;
+       GtkWidget *subject_hbox;
+       GtkWidget *subject_frame;
+       GtkWidget *subject_entry;
+       GtkWidget *subject;
+       GtkWidget *paned;
+
+       GtkWidget *edit_vbox;
+       GtkWidget *ruler_hbox;
+       GtkWidget *ruler;
+       GtkWidget *scrolledwin;
+       GtkWidget *text;
+
+       GtkWidget *table;
+
+       UndoMain *undostruct;
+
+       guint n_menu_entries;
+       GtkStyle  *style, *new_style;
+       GdkColormap *cmap;
+       GdkColor color[1];
+       gboolean success[1];
+       GdkFont   *font;
+       GtkWidget *popupmenu;
+       GtkWidget *menuitem;
+       GtkItemFactory *popupfactory;
+       GtkItemFactory *ifactory;
+       GtkWidget *tmpl_menu;
+       gint n_entries;
+
+#if USE_PSPELL
+        GtkPspell * gtkpspell = NULL;
+#endif
+
+       g_return_val_if_fail(account != NULL, NULL);
+
+       debug_print(_("Creating compose window...\n"));
+       compose = g_new0(Compose, 1);
+
+       compose->account = account;
+       compose->orig_account = account;
+
+       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+       gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
+       gtk_widget_set_usize(window, -1, prefs_common.compose_height);
+       gtk_window_set_wmclass(GTK_WINDOW(window), "compose window", "Sylpheed");
+       gtk_signal_connect(GTK_OBJECT(window), "delete_event",
+                          GTK_SIGNAL_FUNC(compose_delete_cb), compose);
+       gtk_signal_connect(GTK_OBJECT(window), "destroy",
+                          GTK_SIGNAL_FUNC(compose_destroy_cb), compose);
+       gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
+                          GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
+       gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
+                          GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
+       gtk_widget_realize(window);
+
+       gtkut_widget_set_composer_icon(window);
+
+       vbox = gtk_vbox_new(FALSE, 0);
+       gtk_container_add(GTK_CONTAINER(window), vbox);
+
+       n_menu_entries = sizeof(compose_entries) / sizeof(compose_entries[0]);
+       menubar = menubar_create(window, compose_entries,
+                                n_menu_entries, "<Compose>", compose);
+       gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
 
-       gtk_signal_connect(GTK_OBJECT(attach_clist), "select_row",
-                          GTK_SIGNAL_FUNC(attach_selected), compose);
-       gtk_signal_connect(GTK_OBJECT(attach_clist), "button_press_event",
-                          GTK_SIGNAL_FUNC(attach_button_pressed), compose);
-       gtk_signal_connect(GTK_OBJECT(attach_clist), "key_press_event",
-                          GTK_SIGNAL_FUNC(attach_key_pressed), compose);
+       handlebox = gtk_handle_box_new();
+       gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
 
-       /* drag and drop */
-       gtk_drag_dest_set(attach_clist,
-                         GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
-                         GDK_ACTION_COPY);
-       gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received",
-                          GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
-                          compose);
+       compose_toolbar_create(compose, handlebox);
 
+       vbox2 = gtk_vbox_new(FALSE, 2);
+       gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
+       gtk_container_set_border_width(GTK_CONTAINER(vbox2), BORDER_WIDTH);
+       
+       /* Notebook */
+       notebook = gtk_notebook_new();
+       gtk_widget_set_usize(notebook, -1, 130);
+       gtk_widget_show(notebook);
+
+       /* header labels and entries */
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_header(compose), gtk_label_new(_("Header")));
+       /* attachment list */
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_attach(compose), gtk_label_new(_("Attachments")));
+       /* Others Tab */
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_others(compose), gtk_label_new(_("Others")));
 
+       /* Subject */
+       subject_hbox = gtk_hbox_new(FALSE, 0);
+       gtk_widget_show(subject_hbox);
+
+       subject_frame = gtk_frame_new(NULL);
+       gtk_frame_set_shadow_type(GTK_FRAME(subject_frame), GTK_SHADOW_OUT);
+       gtk_box_pack_start(GTK_BOX(subject_hbox), subject_frame, TRUE, TRUE, BORDER_WIDTH+1);
+       gtk_widget_show(subject_frame);
+
+       subject = gtk_hbox_new(FALSE, 0);
+       gtk_container_set_border_width(GTK_CONTAINER(subject), BORDER_WIDTH);
+       gtk_widget_show(subject);
+
+       label = gtk_label_new(_("Subject:"));
+       gtk_box_pack_start(GTK_BOX(subject), label, FALSE, FALSE, 4);
+       gtk_widget_show(label);
+
+       subject_entry = gtk_entry_new();
+       gtk_box_pack_start(GTK_BOX(subject), subject_entry, TRUE, TRUE, 2);
+       gtk_signal_connect(GTK_OBJECT(subject_entry), "activate", GTK_SIGNAL_FUNC(compose_ctl_enter_send_shortcut_cb), compose);
+       gtk_widget_show(subject_entry);
+       compose->subject_entry = subject_entry;
+       gtk_container_add(GTK_CONTAINER(subject_frame), subject);
+       
        edit_vbox = gtk_vbox_new(FALSE, 0);
 #if 0 /* NEW COMPOSE GUI */
        gtk_box_pack_start(GTK_BOX(vbox2), edit_vbox, TRUE, TRUE, 0);
 #endif
 
+       gtk_box_pack_start(GTK_BOX(edit_vbox), subject_hbox, FALSE, FALSE, 0);
+
        /* ruler */
        ruler_hbox = gtk_hbox_new(FALSE, 0);
        gtk_box_pack_start(GTK_BOX(edit_vbox), ruler_hbox, FALSE, FALSE, 0);
@@ -3632,7 +4260,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        gtk_stext_set_editable(GTK_STEXT(text), TRUE);
 
        if (prefs_common.block_cursor) {
-               GTK_STEXT(text)->cursor_type = STEXT_CURSOR_BLOCK;
+               GTK_STEXT(text)->cursor_type = GTK_STEXT_CURSOR_BLOCK;
        }
        
        if (prefs_common.smart_wrapping) {      
@@ -3646,9 +4274,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                           GTK_SIGNAL_FUNC(compose_changed_cb), compose);
        gtk_signal_connect(GTK_OBJECT(text), "grab_focus",
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
+       gtk_signal_connect(GTK_OBJECT(text), "activate",
+                          GTK_SIGNAL_FUNC(compose_ctl_enter_send_shortcut_cb), compose);
        gtk_signal_connect_after(GTK_OBJECT(text), "button_press_event",
                                 GTK_SIGNAL_FUNC(compose_button_press_cb),
-                                compose);
+                                edit_vbox);
 #if 0
        gtk_signal_connect_after(GTK_OBJECT(text), "key_press_event",
                                 GTK_SIGNAL_FUNC(compose_key_press_cb),
@@ -3669,7 +4299,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                gtkpspell = gtkpspell_new_with_config(gtkpspellconfig,
                                                      prefs_common.pspell_path,
                                                      prefs_common.dictionary,
-                                                     PSPELL_FASTMODE,
+                                                     prefs_common.pspell_sugmode,
                                                      conv_get_current_charset_str());
                if (gtkpspell == NULL)
                        prefs_common.enable_pspell = FALSE;
@@ -3681,6 +4311,8 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        /* pane between attach clist and text */
        paned = gtk_vpaned_new();
+       gtk_paned_set_gutter_size(GTK_PANED(paned), 12);
+       gtk_paned_set_handle_size(GTK_PANED(paned), 12);
        gtk_container_add(GTK_CONTAINER(vbox2), paned);
        gtk_paned_add1(GTK_PANED(paned), notebook);
        gtk_paned_add2(GTK_PANED(paned), edit_vbox);
@@ -3688,7 +4320,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        style = gtk_widget_get_style(text);
 
-       /* workaround for the slow down of GtkText when using Pixmap theme */
+       /* workaround for the slow down of GtkSText when using Pixmap theme */
        if (style->engine) {
                GtkThemeEngine *engine;
 
@@ -3739,7 +4371,19 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
        menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
 
+       tmpl_menu = gtk_item_factory_get_item(ifactory, "/Tool/Template");
 #if 0 /* NEW COMPOSE GUI */
+       gtk_widget_hide(bcc_hbox);
+       gtk_widget_hide(bcc_entry);
+       gtk_widget_hide(reply_hbox);
+       gtk_widget_hide(reply_entry);
+       gtk_widget_hide(followup_hbox);
+       gtk_widget_hide(followup_entry);
+       gtk_widget_hide(ruler_hbox);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 4, 0);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 5, 0);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
+
        if (account->protocol == A_NNTP) {
                gtk_widget_hide(to_hbox);
                gtk_widget_hide(to_entry);
@@ -3751,8 +4395,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                gtk_widget_hide(newsgroups_hbox);
                gtk_widget_hide(newsgroups_entry);
                gtk_table_set_row_spacing(GTK_TABLE(table), 2, 0);
-
-               menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
+               menu_set_sensitive(ifactory, "/View/Followup to", FALSE);
        }
 #endif
 
@@ -3774,6 +4417,10 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                break;
        }
 
+       undostruct = undo_init(text);
+       undo_set_change_state_func(undostruct, &compose_undo_state_changed,
+                                  menubar);
+
        gtk_widget_show(window);
 
        address_completion_start(window);
@@ -3785,30 +4432,8 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        compose->vbox2         = vbox2;
 
-       compose->table_vbox       = table_vbox;
-       compose->table            = table;
-#if 0 /* NEW COMPOSE GUI */
-       compose->to_hbox          = to_hbox;
-       compose->to_entry         = to_entry;
-       compose->newsgroups_hbox  = newsgroups_hbox;
-       compose->newsgroups_entry = newsgroups_entry;
-#endif
-       compose->subject_entry    = subject_entry;
-#if 0 /* NEW COMPOSE GUI */
-       compose->cc_hbox          = cc_hbox;
-       compose->cc_entry         = cc_entry;
-       compose->bcc_hbox         = bcc_hbox;
-       compose->bcc_entry        = bcc_entry;
-       compose->reply_hbox       = reply_hbox;
-       compose->reply_entry      = reply_entry;
-       compose->followup_hbox    = followup_hbox;
-       compose->followup_entry   = followup_entry;
-#endif
        compose->paned = paned;
 
-       compose->attach_scrwin = attach_scrwin;
-       compose->attach_clist  = attach_clist;
-
        compose->edit_vbox     = edit_vbox;
        compose->ruler_hbox    = ruler_hbox;
        compose->ruler         = ruler;
@@ -3820,8 +4445,13 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        compose->popupmenu    = popupmenu;
        compose->popupfactory = popupfactory;
 
+       compose->tmpl_menu = tmpl_menu;
+
        compose->mode = mode;
 
+       compose->targetinfo = NULL;
+       compose->replyinfo  = NULL;
+
        compose->replyto     = NULL;
        compose->mailinglist = NULL;
        compose->cc          = NULL;
@@ -3849,6 +4479,9 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        compose->exteditor_readdes = -1;
        compose->exteditor_tag     = -1;
 
+       compose->bounce_filename = NULL;
+       compose->undostruct = undostruct;
+
        compose_set_title(compose);
 
 #if 0 /* NEW COMPOSE GUI */
@@ -3863,11 +4496,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
 #if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP) {
-               menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
+               menuitem = gtk_item_factory_get_item(ifactory, "/View/To");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                gtk_widget_set_sensitive(menuitem, FALSE);
-               menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
+               menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                gtk_widget_set_sensitive(menuitem, FALSE);
@@ -3878,7 +4511,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 #if 0 /* NEW COMPOSE GUI */
                compose->use_cc = TRUE;
                gtk_entry_set_text(GTK_ENTRY(cc_entry), account->auto_cc);
-               menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
+               menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
 #endif
@@ -3886,8 +4519,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        if (account->set_autobcc) {
                compose_entry_append(compose, account->auto_bcc, COMPOSE_BCC);
 #if 0 /* NEW COMPOSE GUI */
-               compose->use_bcc = TRUE;
-               menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
+               menuitem = gtk_item_factory_get_item(ifactory, "/View/Bcc");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                if (account->auto_bcc && mode != COMPOSE_REEDIT)
@@ -3900,16 +4532,25 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 #if 0 /* NEW COMPOSE GUI */
                compose->use_replyto = TRUE;
                menuitem = gtk_item_factory_get_item(ifactory,
-                                                    "/Message/Reply to");
+                                                    "/View/Reply to");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                gtk_entry_set_text(GTK_ENTRY(reply_entry),
                                   account->auto_replyto);
 #endif
        }
-       menuitem = gtk_item_factory_get_item(ifactory, "/Tool/Show ruler");
+
+       if (account->protocol != A_NNTP) {
+               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("To:") : "To:");
+       } else {
+               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:");
+       }
+
+#if 0 /* NEW COMPOSE GUI */
+       menuitem = gtk_item_factory_get_item(ifactory, "/View/Ruler");
        gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                       prefs_common.show_ruler);
+#endif                                
 
 #if USE_GPGME
        menuitem = gtk_item_factory_get_item(ifactory, "/Message/Sign");
@@ -3921,6 +4562,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 #endif /* USE_GPGME */
 
        addressbook_set_target_compose(compose);
+       compose_set_template_menu(compose);
 
        compose_list = g_list_append(compose_list, compose);
 
@@ -3955,28 +4597,9 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        return compose;
 }
 
-#include "pixmaps/stock_mail_send.xpm"
-#include "pixmaps/stock_mail_send_queue.xpm"
-#include "pixmaps/stock_mail.xpm"
-#include "pixmaps/stock_paste.xpm"
-#include "pixmaps/stock_mail_attach.xpm"
-#include "pixmaps/stock_mail_compose.xpm"
-#include "pixmaps/linewrap.xpm"
-#include "pixmaps/tb_address_book.xpm"
-
-#define CREATE_TOOLBAR_ICON(xpm_d) \
-{ \
-       icon = gdk_pixmap_create_from_xpm_d(container->window, &mask, \
-                                           &container->style->white, \
-                                           xpm_d); \
-       icon_wid = gtk_pixmap_new(icon, mask); \
-}
-
 static void compose_toolbar_create(Compose *compose, GtkWidget *container)
 {
        GtkWidget *toolbar;
-       GdkPixmap *icon;
-       GdkBitmap *mask;
        GtkWidget *icon_wid;
        GtkWidget *send_btn;
        GtkWidget *sendl_btn;
@@ -3996,15 +4619,14 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
        gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
                                    GTK_TOOLBAR_SPACE_LINE);
 
-       CREATE_TOOLBAR_ICON(stock_mail_send_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL_SEND);
        send_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                           _("Send"),
                                           _("Send message"),
                                           "Send",
                                           icon_wid, toolbar_send_cb, compose);
 
-       CREATE_TOOLBAR_ICON(stock_mail_send_queue_xpm);
-       /* CREATE_TOOLBAR_ICON(tb_mail_queue_send_xpm); */
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL_SEND_QUEUE);
        sendl_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                           _("Send later"),
                                           _("Put into queue folder and send later"),
@@ -4012,7 +4634,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
                                           icon_wid, toolbar_send_later_cb,
                                           compose);
 
-       CREATE_TOOLBAR_ICON(stock_mail_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL);
        draft_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                            _("Draft"),
                                            _("Save to draft folder"),
@@ -4022,7 +4644,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
 
        gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
 
-       CREATE_TOOLBAR_ICON(stock_paste_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_PASTE);
        insert_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                             _("Insert"),
                                             _("Insert file"),
@@ -4030,7 +4652,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
                                             icon_wid, toolbar_insert_cb,
                                             compose);
 
-       CREATE_TOOLBAR_ICON(stock_mail_attach_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL_ATTACH);
        attach_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                             _("Attach"),
                                             _("Attach file"),
@@ -4040,7 +4662,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
 
        gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
 
-       CREATE_TOOLBAR_ICON(stock_mail_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL);
        sig_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                          _("Signature"),
                                          _("Insert signature"),
@@ -4049,7 +4671,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
 
        gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
 
-       CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_MAIL_COMPOSE);
        exteditor_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                                _("Editor"),
                                                _("Edit with external editor"),
@@ -4058,10 +4680,10 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
                                                toolbar_ext_editor_cb,
                                                compose);
 
-       CREATE_TOOLBAR_ICON(linewrap_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_LINEWRAP);
        linewrap_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                               _("Linewrap"),
-                                              _("Wrap current paragraph"),
+                                              _("Wrap all long lines"),
                                               "Linewrap",
                                               icon_wid,
                                               toolbar_linewrap_cb,
@@ -4069,7 +4691,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
 
        gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
 
-       CREATE_TOOLBAR_ICON(tb_address_book_xpm);
+       icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_ADDRESS_BOOK);
        addrbook_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                               _("Address"),
                                               _("Address book"),
@@ -4091,8 +4713,6 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
        gtk_widget_show_all(toolbar);
 }
 
-#undef CREATE_TOOLBAR_ICON
-
 static GtkWidget *compose_account_option_menu_create(Compose *compose)
 {
        GList *accounts;
@@ -4131,6 +4751,80 @@ static GtkWidget *compose_account_option_menu_create(Compose *compose)
        return hbox;
 }
 
+static void compose_set_template_menu(Compose *compose)
+{
+       GSList *tmpl_list, *cur;
+       GtkWidget *menu;
+       GtkWidget *item;
+
+       tmpl_list = template_get_config();
+
+       menu = gtk_menu_new();
+
+       for (cur = tmpl_list; cur != NULL; cur = cur->next) {
+               Template *tmpl = (Template *)cur->data;
+
+               item = gtk_menu_item_new_with_label(tmpl->name);
+               gtk_menu_append(GTK_MENU(menu), item);
+               gtk_signal_connect(GTK_OBJECT(item), "activate",
+                                  GTK_SIGNAL_FUNC(compose_template_activate_cb),
+                                  compose);
+               gtk_object_set_data(GTK_OBJECT(item), "template", tmpl);
+               gtk_widget_show(item);
+       }
+
+       gtk_widget_show(menu);
+       gtk_menu_item_set_submenu(GTK_MENU_ITEM(compose->tmpl_menu), menu);
+}
+
+void compose_reflect_prefs_all(void)
+{
+       GList *cur;
+       Compose *compose;
+
+       for (cur = compose_list; cur != NULL; cur = cur->next) {
+               compose = (Compose *)cur->data;
+               compose_set_template_menu(compose);
+       }
+}
+
+static void compose_template_apply(Compose *compose, Template *tmpl)
+{
+       gchar *qmark;
+       gchar *parsed_str;
+
+       if (!tmpl || !tmpl->value) return;
+
+       gtk_stext_freeze(GTK_STEXT(compose->text));
+
+       if (tmpl->subject && *tmpl->subject != '\0')
+               gtk_entry_set_text(GTK_ENTRY(compose->subject_entry),
+                                  tmpl->subject);
+       if (tmpl->to && *tmpl->to != '\0')
+               compose_entry_append(compose, tmpl->to, COMPOSE_TO);
+
+       if (compose->replyinfo == NULL) {
+               MsgInfo dummyinfo;
+
+               memset(&dummyinfo, 0, sizeof(MsgInfo));
+               parsed_str = compose_quote_fmt(compose, &dummyinfo,
+                                              tmpl->value, NULL);
+       } else {
+               if (prefs_common.quotemark && *prefs_common.quotemark)
+                       qmark = prefs_common.quotemark;
+               else
+                       qmark = "> ";
+
+               parsed_str = compose_quote_fmt(compose, compose->replyinfo,
+                                              tmpl->value, qmark);
+       }
+
+       if (parsed_str && prefs_common.auto_sig)
+               compose_insert_sig(compose);
+
+       gtk_stext_thaw(GTK_STEXT(compose->text));
+}
+
 static void compose_destroy(Compose *compose)
 {
        gint row;
@@ -4149,6 +4843,7 @@ static void compose_destroy(Compose *compose)
        g_slist_free(compose->header_list);
 
        procmsg_msginfo_free(compose->targetinfo);
+       procmsg_msginfo_free(compose->replyinfo);
 
        g_free(compose->replyto);
        g_free(compose->cc);
@@ -4161,6 +4856,9 @@ static void compose_destroy(Compose *compose)
        g_free(compose->msgid);
        g_free(compose->boundary);
 
+       if (compose->bounce_filename)
+               g_free(compose->bounce_filename);
+
        g_free(compose->exteditor_file);
 
        for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
@@ -4255,7 +4953,7 @@ static void compose_attach_property(Compose *compose)
                GtkWidget *menuitem;
 
                cancelled = FALSE;
-                gtk_main();
+               gtk_main();
 
                if (cancelled == TRUE) {
                        gtk_widget_hide(attach_prop.window);
@@ -4719,6 +5417,73 @@ static void compose_set_ext_editor_sensitive(Compose *compose,
        gtk_widget_set_sensitive(compose->linewrap_btn,  sensitive);
 }
 
+/**
+ * compose_undo_state_changed:
+ *
+ * Change the sensivity of the menuentries undo and redo
+ **/
+static void compose_undo_state_changed(UndoMain *undostruct, gint undo_state,
+                                      gint redo_state, gpointer data)
+{
+       GtkWidget *widget = GTK_WIDGET(data);
+       GtkItemFactory *ifactory;
+
+       g_return_if_fail(widget != NULL);
+
+       debug_print("Set_undo.  UNDO:%i  REDO:%i\n", undo_state, redo_state);
+
+       ifactory = gtk_item_factory_from_widget(widget);
+
+       switch (undo_state) {
+       case UNDO_STATE_TRUE:
+               if (!undostruct->undo_state) {
+                       debug_print ("Set_undo - Testpoint\n");
+                       undostruct->undo_state = TRUE;
+                       menu_set_sensitive(ifactory, "/Edit/Undo", TRUE);
+               }
+               break;
+       case UNDO_STATE_FALSE:
+               if (undostruct->undo_state) {
+                       undostruct->undo_state = FALSE;
+                       menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
+               }
+               break;
+       case UNDO_STATE_UNCHANGED:
+               break;
+       case UNDO_STATE_REFRESH:
+               menu_set_sensitive(ifactory, "/Edit/Undo",
+                                  undostruct->undo_state);
+               break;
+       default:
+               g_warning("Undo state not recognized");
+               break;
+       }
+
+       switch (redo_state) {
+       case UNDO_STATE_TRUE:
+               if (!undostruct->redo_state) {
+                       undostruct->redo_state = TRUE;
+                       menu_set_sensitive(ifactory, "/Edit/Redo", TRUE);
+               }
+               break;
+       case UNDO_STATE_FALSE:
+               if (undostruct->redo_state) {
+                       undostruct->redo_state = FALSE;
+                       menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
+               }
+               break;
+       case UNDO_STATE_UNCHANGED:
+               break;
+       case UNDO_STATE_REFRESH:
+               menu_set_sensitive(ifactory, "/Edit/Redo",
+                                  undostruct->redo_state);
+               break;
+       default:
+               g_warning("Redo state not recognized");
+               break;
+       }
+}
+
 static gint calc_cursor_xpos(GtkSText *text, gint extra, gint char_width)
 {
        gint cursor_pos;
@@ -4964,37 +5729,10 @@ static void compose_send_later_cb(gpointer data, guint action,
                                  GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
-       gchar tmp[22];
-       gboolean recipient_found;
-       GSList *list;
-
-       if(!compose_check_for_valid_recipient(compose)) {
-               alertpanel_error(_("Recipient is not specified."));
-               return;
-       }
-
-       g_snprintf(tmp, 22, "%s%ctmpmsg%d",
-                  g_get_tmp_dir(), G_DIR_SEPARATOR, (gint)compose);
-
-       if (prefs_common.linewrap_at_send)
-               compose_wrap_line_all(compose);
-
-       if (compose_write_to_file(compose, tmp, FALSE) < 0 ||
-           compose_queue(compose, tmp) < 0) {
-               alertpanel_error(_("Can't queue the message."));
-               return;
-       }
-
-       if (prefs_common.savemsg) {
-               if (compose_save_to_outbox(compose, tmp) < 0)
-                       alertpanel_error
-                               (_("Can't save the message to outbox."));
-       }
-
-       if (unlink(tmp) < 0)
-               FILE_OP_ERROR(tmp, "unlink");
+       gint val;
 
-       gtk_widget_destroy(compose->window);
+       val = compose_queue(compose, NULL, NULL);
+       if (!val) gtk_widget_destroy(compose->window);
 }
 
 static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
@@ -5002,24 +5740,34 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        Compose *compose = (Compose *)data;
        FolderItem *draft;
        gchar *tmp;
+       gint msgnum;
+       static gboolean lock = FALSE;
+
+       if (lock) return;
 
        draft = folder_get_default_draft();
+       g_return_if_fail(draft != NULL);
+
+       lock = TRUE;
 
-        tmp = g_strdup_printf("%s%cdraft.%d", g_get_tmp_dir(),
+       tmp = g_strdup_printf("%s%cdraft.%d", g_get_tmp_dir(),
                              G_DIR_SEPARATOR, (gint)compose);
 
        if (compose_write_to_file(compose, tmp, TRUE) < 0) {
                g_free(tmp);
+               lock = FALSE;
                return;
        }
 
        folder_item_scan(draft);
-       if (folder_item_add_msg(draft, tmp, TRUE) < 0) {
+       if ((msgnum = folder_item_add_msg(draft, tmp, TRUE)) <= 0) {
                unlink(tmp);
                g_free(tmp);
+               lock = FALSE;
                return;
        }
        g_free(tmp);
+       draft->mtime = 0;       /* force updating */
 
        if (compose->mode == COMPOSE_REEDIT) {
                compose_remove_reedit_target(compose);
@@ -5032,7 +5780,33 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        folder_item_scan(draft);
        folderview_update_item(draft, TRUE);
 
-       gtk_widget_destroy(compose->window);
+       lock = FALSE;
+
+       /* 0: quit editing  1: keep editing */
+       if (action == 0)
+               gtk_widget_destroy(compose->window);
+       else {
+               struct stat s;
+               gchar *path;
+
+               path = folder_item_fetch_msg(draft, msgnum);
+               g_return_if_fail(path != NULL);
+               if (stat(path, &s) < 0) {
+                       FILE_OP_ERROR(path, "stat");
+                       g_free(path);
+                       lock = FALSE;
+                       return;
+               }
+               g_free(path);
+
+               procmsg_msginfo_free(compose->targetinfo);
+               compose->targetinfo = g_new0(MsgInfo, 1);
+               compose->targetinfo->msgnum = msgnum;
+               compose->targetinfo->size = s.st_size;
+               compose->targetinfo->mtime = s.st_mtime;
+               compose->targetinfo->folder = draft;
+               compose->mode = COMPOSE_REEDIT;
+       }
 }
 
 static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
@@ -5040,6 +5814,9 @@ static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
        Compose *compose = (Compose *)data;
        GList *file_list;
 
+       if (compose->bounce_filename != NULL)
+               return;
+
        file_list = filesel_select_multiple_files(_("Select file"), NULL);
 
        if (file_list) {
@@ -5122,6 +5899,17 @@ static void compose_address_cb(gpointer data, guint action, GtkWidget *widget)
        addressbook_open(compose);
 }
 
+static void compose_template_activate_cb(GtkWidget *widget, gpointer data)
+{
+       Compose *compose = (Compose *)data;
+       Template *tmpl;
+
+       tmpl = gtk_object_get_data(GTK_OBJECT(widget), "template");
+       g_return_if_fail(tmpl != NULL);
+
+       compose_template_apply(compose, tmpl);
+}
+
 static void compose_ext_editor_cb(gpointer data, guint action,
                                  GtkWidget *widget)
 {
@@ -5135,6 +5923,16 @@ static void compose_destroy_cb(GtkWidget *widget, Compose *compose)
        compose_destroy(compose);
 }
 
+static void compose_undo_cb(Compose *compose)
+{
+       undo_undo(compose->undostruct);
+}
+
+static void compose_redo_cb(Compose *compose)
+{
+       undo_redo(compose->undostruct);
+}
+
 static void compose_cut_cb(Compose *compose)
 {
        if (compose->focused_editable &&
@@ -5310,8 +6108,8 @@ static void compose_toggle_attach_cb(gpointer data, guint action,
        if (GTK_CHECK_MENU_ITEM(widget)->active) {
                gtk_widget_ref(compose->edit_vbox);
 
-               gtk_container_remove(GTK_CONTAINER(compose->vbox2),
-                                    compose->edit_vbox);
+               gtkut_container_remove(GTK_CONTAINER(compose->vbox2),
+                                      compose->edit_vbox);
                gtk_paned_add2(GTK_PANED(compose->paned), compose->edit_vbox);
                gtk_box_pack_start(GTK_BOX(compose->vbox2), compose->paned,
                                   TRUE, TRUE, 0);
@@ -5325,10 +6123,10 @@ static void compose_toggle_attach_cb(gpointer data, guint action,
                gtk_widget_ref(compose->paned);
                gtk_widget_ref(compose->edit_vbox);
 
-               gtk_container_remove(GTK_CONTAINER(compose->vbox2),
-                                    compose->paned);
-               gtk_container_remove(GTK_CONTAINER(compose->paned),
-                                    compose->edit_vbox);
+               gtkut_container_remove(GTK_CONTAINER(compose->vbox2),
+                                      compose->paned);
+               gtkut_container_remove(GTK_CONTAINER(compose->paned),
+                                      compose->edit_vbox);
                gtk_box_pack_start(GTK_BOX(compose->vbox2),
                                   compose->edit_vbox, TRUE, TRUE, 0);
 
@@ -5492,118 +6290,84 @@ static void compose_toggle_return_receipt_cb(gpointer data, guint action,
                compose->return_receipt = FALSE;
 }
 
-static gchar *compose_quote_fmt                (Compose        *compose,
-                                        MsgInfo        *msginfo,
-                                        const gchar    *fmt,
-                                        const gchar    *qmark)
+void compose_headerentry_key_press_event_cb(GtkWidget *entry,
+                                           GdkEventKey *event,
+                                           ComposeHeaderEntry *headerentry)
 {
-       gchar * quote_str = NULL;
-
-       if (qmark != NULL) {
-               gchar * p;
-
-               quote_fmt_init(msginfo, NULL);
-               quote_fmt_scan_string(qmark);
-               quote_fmtparse();
-
-               p = quote_fmt_get_buffer();
-               if (p == NULL) {
-                       alertpanel_error
-                               (_("Quote mark format error."));
-               }
-               else {
-                       quote_str = alloca(strlen(p) + 1);
-                       strcpy(quote_str, p);
+       if ((g_slist_length(headerentry->compose->header_list) > 0) &&
+           ((headerentry->headernum + 1) != headerentry->compose->header_nextrow) &&
+           !(event->state & GDK_MODIFIER_MASK) &&
+           (event->keyval == GDK_BackSpace) &&
+           (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)) {
+               gtk_container_remove
+                       (GTK_CONTAINER(headerentry->compose->header_table),
+                        headerentry->combo);
+               gtk_container_remove
+                       (GTK_CONTAINER(headerentry->compose->header_table),
+                        headerentry->entry);
+               headerentry->compose->header_list =
+                       g_slist_remove(headerentry->compose->header_list,
+                                      headerentry);
+               g_free(headerentry);
+       } else  if (event->keyval == GDK_Tab) {
+               if (headerentry->compose->header_last == headerentry) {
+                       /* Override default next focus, and give it to subject_entry
+                        * instead of notebook tabs
+                        */
+                       gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key-press-event"); 
+                       gtk_widget_grab_focus(headerentry->compose->subject_entry);
                }
        }
 
-       quote_fmt_init(msginfo, quote_str);
-       quote_fmt_scan_string(fmt);
-       quote_fmtparse();
-
-       if (quote_fmt_get_buffer() == NULL)
-               alertpanel_error
-                       (_("Message reply/forward format error."));
-
-       return quote_fmt_get_buffer();
 }
 
-static void template_apply_cb(gchar *s, gpointer data)
+void compose_headerentry_changed_cb(GtkWidget *entry,
+                                   ComposeHeaderEntry *headerentry)
 {
-       Compose *compose = (Compose*)data;
-       GtkSText *text = GTK_STEXT(compose->text);
-       gchar *quote_str;
-       gchar *qmark;
-       gchar *parsed_text;
-       gchar *tmpl;
-       gchar *old_tmpl = s;
-
-       if(!s) return;
-       
-       if(compose->replyinfo == NULL) {
-               gtk_stext_freeze(text);
-               gtk_stext_set_point(text, 0);
-               gtk_stext_forward_delete(text, gtk_stext_get_length(text));
-               gtk_stext_insert(text, NULL, NULL, NULL, s, -1);
-               gtk_stext_thaw(text);
-               g_free(old_tmpl);
-               return;
-       }
-
-       parsed_text = g_new(gchar, strlen(s)*2 + 1);
-       tmpl = parsed_text;
-       while(*s) {
-               if (*s == '\n') {
-                       *parsed_text++ = '\\';
-                       *parsed_text++ = 'n';
-                       s++;
-               } else {
-                       *parsed_text++ = *s++;
-               }
+       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);
+               gtk_signal_disconnect_by_func
+                       (GTK_OBJECT(entry),
+                        GTK_SIGNAL_FUNC(compose_headerentry_changed_cb),
+                        headerentry);
+               /* Automatically scroll down */
+               compose_show_first_last_header(headerentry->compose, FALSE);
+               
        }
-       *parsed_text = '\0';
+}
 
-       if (prefs_common.quotemark && *prefs_common.quotemark)
-               qmark = prefs_common.quotemark;
-       else
-               qmark = "> ";
+static void compose_show_first_last_header(Compose *compose, gboolean show_first)
+{
+       GtkAdjustment *vadj;
 
-       quote_str = compose_quote_fmt(compose, compose->replyinfo, tmpl, qmark);
-       if (quote_str != NULL) {
-               gtk_stext_freeze(text);
-               gtk_stext_set_point(text, 0);
-               gtk_stext_forward_delete(text, gtk_stext_get_length(text));
-               gtk_stext_insert(text, NULL, NULL, NULL, quote_str, -1);
-               gtk_stext_thaw(text);
-       }
+       g_return_if_fail(compose);
+       g_return_if_fail(GTK_IS_WIDGET(compose->header_table));
+       g_return_if_fail(GTK_IS_VIEWPORT(compose->header_table->parent));
 
-       g_free(old_tmpl);
-       g_free(tmpl);
+       vadj = gtk_viewport_get_vadjustment(GTK_VIEWPORT(compose->header_table->parent));
+       gtk_adjustment_set_value(vadj, (show_first ? vadj->lower : vadj->upper));
 }
 
-static void template_select_cb(gpointer data, guint action,
-                              GtkWidget *widget)
+static void compose_ctl_enter_send_shortcut_cb(GtkWidget *w, Compose *compose)
 {
-       template_select(&template_apply_cb, data);
-}
-
-void compose_headerentry_key_press_event_cb(GtkWidget *entry, GdkEventKey *event, compose_headerentry *headerentry) {
-       if((g_slist_length(headerentry->compose->header_list) > 0) &&
-           ((headerentry->headernum + 1) != headerentry->compose->header_nextrow) &&
-           !(event->state & GDK_MODIFIER_MASK) &&
-           (event->keyval == GDK_BackSpace) &&
-           (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)) {
-               gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->combo);
-               gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->entry);
-               headerentry->compose->header_list = g_slist_remove(headerentry->compose->header_list, headerentry);
-               g_free(headerentry);
-       }
-}
+       GtkItemFactory *ifactory;
+       GtkAccelEntry  *accel;
+       GtkWidget      *send_button;
+       GSList *list;
+       GdkEvent *e= gtk_get_current_event();
+       
+       if (e->type != GDK_KEY_PRESS || 
+           !( ((GdkEventKey *)e)->state & GDK_CONTROL_MASK) )
+               return;
 
-void compose_headerentry_changed_cb(GtkWidget *entry, compose_headerentry *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);
-               gtk_signal_disconnect_by_func(GTK_OBJECT(entry), GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
-       }
-}
+       ifactory = gtk_item_factory_from_widget(compose->menubar);
+       send_button = gtk_item_factory_get_widget(ifactory, "/Message/Send");
+       list = gtk_accel_group_entries_from_object(GTK_OBJECT(send_button));
+       accel = (GtkAccelEntry *) list->data;
+       if (accel->accelerator_key == GDK_Return && 
+           accel->accelerator_mods == GDK_CONTROL_MASK)
+               compose_send_cb(compose, 0, NULL);
+}