fixed one more umlaut in german translation
[claws.git] / src / compose.c
index 4cf8e994168d25bc0b3e5a532f79f343ae031bd9..50ad6e69783aab48cde8ca9734b73b4fdccbd2dd 100644 (file)
 #include "gtkshruler.h"
 #include "folder.h"
 #include "addr_compl.h"
+#include "quote_fmt.h"
+#include "template.h"
+#include "undo.h"
 
 #if USE_GPGME
 #  include "rfc2015.h"
 #endif
 
-#include "quote_fmt.h"
-
 typedef enum
 {
        COL_MIMETYPE = 0,
@@ -123,23 +124,37 @@ static GdkColor quote_color = {0, 0, 0, 0xbfff};
 
 static GList *compose_list = NULL;
 
-static Compose *compose_create                 (PrefsAccount   *account);
+static void compose_set_undo                   (UndoMain       *undostruct, 
+                                                 gint            undo_state, 
+                                                gint            redo_state, 
+                                                GtkWidget      *changewidget);
+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,
@@ -159,6 +174,7 @@ static void compose_attach_append_with_type(Compose *compose,
                                            const gchar *type,
                                            ContentType cnttype);
 static void compose_wrap_line                  (Compose        *compose);
+static void compose_wrap_line_all              (Compose        *compose);
 static void compose_set_title                  (Compose        *compose);
 
 static PrefsAccount *compose_current_mail_account(void);
@@ -170,8 +186,10 @@ static gint compose_write_body_to_file             (Compose        *compose,
                                                 const gchar    *file);
 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 +235,9 @@ static gint calc_cursor_xpos        (GtkSText       *text,
                                 gint            extra,
                                 gint            char_width);
 
+static void compose_create_header_entry        (Compose *compose);
+static void compose_add_header_entry   (Compose *compose, gchar *header, gchar *text);
+
 /* callback functions */
 
 static gboolean compose_edit_size_alloc (GtkEditable   *widget,
@@ -242,7 +263,9 @@ static void toolbar_linewrap_cb             (GtkWidget      *widget,
 static void toolbar_address_cb         (GtkWidget      *widget,
                                         gpointer        data);
 
-static void select_account(Compose * compose, PrefsAccount * ac);
+static void select_account             (Compose        *compose,
+                                        PrefsAccount   *ac);
+
 static void account_activated          (GtkMenuItem    *menuitem,
                                         gpointer        data);
 
@@ -279,9 +302,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,
@@ -293,6 +319,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);
@@ -312,6 +340,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);
@@ -330,6 +359,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);
@@ -361,6 +391,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,
@@ -375,19 +406,22 @@ 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,
+                                           ComposeHeaderEntry *headerentry);
+void compose_headerentry_key_press_event_cb(GtkWidget         *entry,
+                                           GdkEventKey        *event,
+                                           ComposeHeaderEntry *headerentry);
+
 static GtkItemFactoryEntry compose_popup_entries[] =
 {
        {N_("/_Add..."),        NULL, compose_attach_cb, 0, NULL},
@@ -399,53 +433,58 @@ static GtkItemFactoryEntry compose_popup_entries[] =
 static GtkItemFactoryEntry compose_entries[] =
 {
        {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
-       {N_("/_File/_Attach file"),             "<control>M", compose_attach_cb, 0, NULL},
+       {N_("/_File/_Attach file"),             "<control>M", compose_attach_cb,      0, NULL},
        {N_("/_File/_Insert file"),             "<control>I", compose_insert_file_cb, 0, NULL},
-       {N_("/_File/Insert si_gnature"),        "<control>G", compose_insert_sig, 0, NULL},
+       {N_("/_File/Insert si_gnature"),        "<control>G", compose_insert_sig,     0, NULL},
        {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"),             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 long _lines"), "<alt>L", compose_wrap_line, 0, NULL},
-       {N_("/_Edit/Edit with e_xternal editor"), "<alt>X",
-                                       compose_ext_editor_cb,  0, NULL},
-
-       {N_("/_Message"),               NULL,           NULL,   0, "<Branch>"},
-       {N_("/_Message/_Send"),         "<shift><control>S",
+       {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},
+       {N_("/_Edit/Edit with e_xternal editor"),
+                       "<alt>X", compose_ext_editor_cb, 0, NULL},
+
+       {N_("/_Message"),               NULL, NULL, 0, "<Branch>"},
+       {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/---"),           NULL,           NULL,   0, "<Separator>"},
-       {N_("/_Message/_To"),           NULL, compose_toggle_to_cb, 0, "<ToggleItem>"},
-       {N_("/_Message/_Cc"),           NULL, compose_toggle_cc_cb, 0, "<ToggleItem>"},
-       {N_("/_Message/_Bcc"),          NULL, compose_toggle_bcc_cb, 0, "<ToggleItem>"},
+                                       "<alt>D", compose_draft_cb, 0, NULL},
+#if 0 /* NEW COMPOSE GUI */
+       {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
+       {N_("/_Message/_To"),           NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
+       {N_("/_Message/_Cc"),           NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
+       {N_("/_Message/_Bcc"),          NULL, compose_toggle_bcc_cb    , 0, "<ToggleItem>"},
        {N_("/_Message/_Reply to"),     NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
-       {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
+       {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/_Followup to"),  NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
-       {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
+       {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/_Attach"),       NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
+#endif
 #if USE_GPGME
-       {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
-       {N_("/_Message/Si_gn"),         NULL, compose_toggle_sign_cb, 0, "<ToggleItem>"},
+       {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
+       {N_("/_Message/Si_gn"),         NULL, compose_toggle_sign_cb   , 0, "<ToggleItem>"},
        {N_("/_Message/_Encrypt"),      NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
 #endif /* USE_GPGME */
        {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
        {N_("/_Message/_Request Return Receipt"),       NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
-       {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_("/_Help"),                  NULL, NULL,     0, "<LastBranch>"},
-       {N_("/_Help/_About"),           NULL,           about_show,     0, NULL}
+       {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/_Template"),        NULL, NULL, 0, "<Branch>"},
+       {N_("/_Help"),                  NULL, NULL, 0, "<LastBranch>"},
+       {N_("/_Help/_About"),           NULL, about_show, 0, NULL}
 };
 
 static GtkTargetEntry compose_mime_types[] =
@@ -453,20 +492,85 @@ 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_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, mailto, NULL);
+}
+
+Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
 {
-       return compose_new_with_recipient(account, NULL);
+       return compose_generic_new(account, NULL, item);
 }
 
-Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
+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->mode = COMPOSE_NEW;
+       compose = compose_create(account, COMPOSE_NEW);
+       compose->replyinfo = NULL;
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
@@ -474,20 +578,29 @@ Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
        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
-                       gtk_widget_grab_focus(compose->to_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;
+               
+                       ifactory = gtk_item_factory_from_widget(compose->menubar);
+                       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->newsgroups_entry);
+               if (mailto) {
+                       compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
+               }
        }
+       gtk_widget_grab_focus(compose->subject_entry);
 
-       return compose;
+       if (prefs_common.auto_exteditor)
+               compose_exec_ext_editor(compose);
+
+        return compose;
 }
 
 #define CHANGE_FLAGS(msginfo) \
@@ -499,7 +612,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;
@@ -508,8 +621,7 @@ Compose * compose_new_followup_and_replyto(PrefsAccount *account,
        g_return_val_if_fail(account != NULL, NULL);
        g_return_val_if_fail(account->protocol != A_NNTP, NULL);
 
-       compose = compose_create(account);
-       compose->mode = COMPOSE_NEW;
+       compose = compose_create(account, COMPOSE_NEW);
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
@@ -550,22 +662,40 @@ 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_autoselect) {
-               gchar *to;
+       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)
+               account = msginfo->folder->folder->account;
 
-               to = g_strdup(msginfo->to);
-               extract_address(to);
-               account = account_find_mail_from_address(to);
-               g_free(to);
+       /* 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);
 
        if (ignore_replyto && account->protocol == A_NNTP &&
            !followup_and_reply_to) {
                reply_account =
-                       account_find_mail_from_address(account->address);
+                       account_find_from_address(account->address);
                if (!reply_account)
                        reply_account = compose_current_mail_account();
                if (!reply_account)
@@ -573,21 +703,28 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        } else
                reply_account = account;
 
-       MSG_UNSET_FLAGS(msginfo->flags, MSG_FORWARDED);
-       MSG_SET_FLAGS(msginfo->flags, MSG_REPLIED);
+       MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
+       MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
 
        CHANGE_FLAGS(msginfo);
 
-       compose = compose_create(reply_account);
-       compose->mode = COMPOSE_REPLY;
-
+       compose = compose_create(account, COMPOSE_REPLY);
+       compose->replyinfo = procmsg_msginfo_copy(msginfo);
 
+#if 0 /* NEW COMPOSE GUI */
        if (followup_and_reply_to) {
                gtk_widget_show(compose->to_hbox);
                gtk_widget_show(compose->to_entry);
                gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
                compose->use_to = TRUE;
        }
+#endif
+       if (msginfo->folder && msginfo->folder->ret_rcpt) {
+               GtkItemFactory *ifactory;
+       
+               ifactory = gtk_item_factory_from_widget(compose->menubar);
+               menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
+       }
 
        if (compose_parse_header(compose, msginfo) < 0) return;
        compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
@@ -597,44 +734,33 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        gtk_stext_freeze(text);
 
        if (quote) {
-               FILE *fp;
+               gchar *qmark;
                gchar *quote_str;
 
-               if ((fp = procmime_get_text_part(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);
 
        gtk_stext_thaw(text);
        gtk_widget_grab_focus(compose->text);
+
+        if (prefs_common.auto_exteditor)
+               compose_exec_ext_editor(compose);
 }
 
 
@@ -649,20 +775,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;
                }
        }
@@ -673,11 +799,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);
 
@@ -688,10 +814,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;
@@ -702,8 +826,8 @@ 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);
        
@@ -715,7 +839,7 @@ static void compose_attach_parts(Compose * compose,
 
                if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
                    rfc2015_is_encrypted(mimeinfo)) {
-                       MSG_SET_FLAGS(msginfo->flags, MSG_ENCRYPTED);
+                       MSG_SET_TMP_FLAGS(msginfo->flags, MSG_ENCRYPTED);
                }
                if (MSG_IS_ENCRYPTED(msginfo->flags) &&
                    !msginfo->plaintext_file  &&
@@ -860,19 +984,33 @@ if (msginfo->var && *msginfo->var) { \
        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
 }
 
-Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
-                         gboolean as_attach)
+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);
 
-       if (account == NULL) {
+       account = msginfo->folder->folder->account;
+        if (!account && msginfo->to && prefs_common.forward_account_autosel) {
+               gchar *to;
+               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(!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) {
                account = cur_account;
                /*
                account = msginfo->folder->folder->account;
@@ -881,13 +1019,11 @@ Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
        }
        g_return_val_if_fail(account != NULL, NULL);
 
-       MSG_UNSET_FLAGS(msginfo->flags, MSG_REPLIED);
-       MSG_SET_FLAGS(msginfo->flags, MSG_FORWARDED);
-
+       MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
+       MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
        CHANGE_FLAGS(msginfo);
 
-       compose = compose_create(account);
-       compose->mode = COMPOSE_FORWARD;
+       compose = compose_create(account, COMPOSE_FORWARD);
 
        if (msginfo->subject && *msginfo->subject) {
                gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
@@ -910,50 +1046,109 @@ Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
 
                g_free(msgfile);
        } else {
-               FILE *fp;
+               gchar *qmark;
                gchar *quote_str;
 
-               if ((fp = procmime_get_text_part(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 = "> ";
 
-                       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);
 
-                       quote_str = compose_quote_fmt(compose, msginfo,
-                                                     prefs_common.fw_quotefmt,
-                                                     qmark);
+       if (prefs_common.linewrap_quote)
+               compose_wrap_line_all(compose);
 
-                       if (quote_str != NULL)
-                               gtk_stext_insert(text, NULL, NULL, NULL,
-                                                quote_str, -1);
+       gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
+       gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
-                       fclose(fp);
-               }
+       gtk_stext_thaw(text);
+#if 0 /* NEW COMPOSE GUI */
+       if (account->protocol != A_NNTP)
+               gtk_widget_grab_focus(compose->to_entry);
+       else
+               gtk_widget_grab_focus(compose->newsgroups_entry);
+#endif
+       gtk_widget_grab_focus(compose->header_last->entry);
 
-               compose_attach_parts(compose, msginfo);
+       if (prefs_common.auto_exteditor)
+               compose_exec_ext_editor(compose);
+
+        return compose;
+}
+
+#undef INSERT_FW_HEADER
+
+Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
+{
+       Compose *compose;
+       GtkSText *text;
+       GSList *msginfo;
+       gchar *msgfile;
+
+       g_return_val_if_fail(msginfo_list != NULL, NULL);
+       
+       for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
+               if ( ((MsgInfo *)msginfo->data)->folder == NULL )
+                       return NULL;
+       }
+
+       if (account == NULL) {
+               account = cur_account;
+               /*
+               account = msginfo->folder->folder->account;
+               if (!account) account = cur_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);
+       gtk_stext_freeze(text);
+
+       for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
+               msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
+               if (!is_file_exist(msgfile))
+                       g_warning(_("%s: file not exist\n"), msgfile);
+               else
+                       compose_attach_append(compose, msgfile,
+                               MIME_MESSAGE_RFC822);
+               g_free(msgfile);
        }
 
        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);
 
        gtk_stext_thaw(text);
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP)
                gtk_widget_grab_focus(compose->to_entry);
        else
                gtk_widget_grab_focus(compose->newsgroups_entry);
+#endif
 
        return compose;
 }
 
-#undef INSERT_FW_HEADER
-
 void compose_reedit(MsgInfo *msginfo)
 {
        Compose *compose;
@@ -965,12 +1160,19 @@ void compose_reedit(MsgInfo *msginfo)
        g_return_if_fail(msginfo != NULL);
        g_return_if_fail(msginfo->folder != NULL);
 
-       account = msginfo->folder->folder->account;
-       if (!account) account = cur_account;
+        account = msginfo->folder->folder->account;
+
+        if(!account&& prefs_common.reedit_account_autosel) {
+                       gchar from[BUFFSIZE];
+               if(!get_header_from_msginfo(msginfo,from,sizeof(from),"FROM:")){ /* Found a FROM header */
+                       extract_address(from);
+                       account = account_find_from_address(from);
+                }
+       }
+        if (!account) account = cur_account;
        g_return_if_fail(account != NULL);
 
-       compose = compose_create(account);
-       compose->mode = COMPOSE_REEDIT_DRAFT;
+       compose = compose_create(account, COMPOSE_REEDIT);
        compose->targetinfo = procmsg_msginfo_copy(msginfo);
 
        if (compose_parse_header(compose, msginfo) < 0) return;
@@ -979,7 +1181,7 @@ void compose_reedit(MsgInfo *msginfo)
        text = GTK_STEXT(compose->text);
        gtk_stext_freeze(text);
 
-       if ((fp = procmime_get_text_part(msginfo)) == NULL)
+       if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
                g_warning(_("Can't get text part\n"));
        else {
                while (fgets(buf, sizeof(buf), fp) != NULL)
@@ -990,6 +1192,9 @@ void compose_reedit(MsgInfo *msginfo)
 
        gtk_stext_thaw(text);
        gtk_widget_grab_focus(compose->text);
+
+        if (prefs_common.auto_exteditor)
+               compose_exec_ext_editor(compose);
 }
 
 GList *compose_get_compose_list(void)
@@ -1002,9 +1207,11 @@ void compose_entry_append(Compose *compose, const gchar *address,
 {
        GtkEntry *entry;
        const gchar *text;
+       gchar *header;
 
        if (!address || *address == '\0') return;
 
+#if 0 /* NEW COMPOSE GUI */
        switch (type) {
        case COMPOSE_CC:
                entry = GTK_ENTRY(compose->cc_entry);
@@ -1025,26 +1232,125 @@ void compose_entry_append(Compose *compose, const gchar *address,
        if (*text != '\0')
                gtk_entry_append_text(entry, ", ");
        gtk_entry_append_text(entry, address);
+#endif
+
+       switch (type) {
+       case COMPOSE_CC:
+               header = N_("Cc:");
+               break;
+       case COMPOSE_BCC:
+               header = N_("Bcc:");
+               break;
+       case COMPOSE_REPLYTO:
+               header = N_("Reply-To:");
+               break;
+       case COMPOSE_NEWSGROUPS:
+               header = N_("Newsgroups:");
+               break;
+       case COMPOSE_FOLLOWUPTO:
+               header = N_( "Followup-To:");
+               break;
+       case COMPOSE_TO:
+       default:
+               header = N_("To:");
+               break;
+       }
+       header = prefs_common.trans_hdr ? gettext(header) : header;
+
+       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},
-                                      {"Cc:",          NULL, FALSE},
-                                      {"References:",  NULL, FALSE},
-                                      {"Bcc:",         NULL, FALSE},
-                                      {"Newsgroups:",  NULL, FALSE},
-                                      {"Followup-To:", NULL, FALSE},
-                                      {NULL,           NULL, FALSE}};
+       static HeaderEntry hentry[] = {{"Reply-To:",       NULL, TRUE},
+                                      {"Cc:",             NULL, FALSE},
+                                      {"References:",     NULL, FALSE},
+                                      {"Bcc:",            NULL, FALSE},
+                                      {"Newsgroups:",     NULL, FALSE},
+                                      {"Followup-To:",    NULL, FALSE},
+                                      {"X-Mailing-List:", NULL, FALSE},
+                                      {"X-BeenThere:",    NULL, FALSE},
+                                      {NULL,              NULL, FALSE}};
 
        enum
        {
-               H_REPLY_TO      = 0,
-               H_CC            = 1,
-               H_REFERENCES    = 2,
-               H_BCC           = 3,
-               H_NEWSGROUPS    = 4,
-               H_FOLLOWUP_TO   = 5
+               H_REPLY_TO       = 0,
+               H_CC             = 1,
+               H_REFERENCES     = 2,
+               H_BCC            = 3,
+               H_NEWSGROUPS     = 4,
+               H_FOLLOWUP_TO    = 5,
+               H_X_MAILING_LIST = 6,
+               H_X_BEENTHERE    = 7
        };
 
        FILE *fp;
@@ -1065,8 +1371,28 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                compose->cc = hentry[H_CC].body;
                hentry[H_CC].body = NULL;
        }
+       if (hentry[H_X_MAILING_LIST].body != NULL) {
+               /* this is good enough to parse debian-devel */
+               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);
+               g_free(buf);
+               g_free(hentry[H_X_MAILING_LIST].body);
+               hentry[H_X_MAILING_LIST].body = NULL ;
+       }
+       if (hentry[H_X_BEENTHERE].body != NULL) {
+               /* this is good enough to parse the sylpheed-claws lists */
+               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);
+               g_free(buf);
+               g_free(hentry[H_X_BEENTHERE].body);
+               hentry[H_X_BEENTHERE].body = NULL ;
+       }
        if (hentry[H_REFERENCES].body != NULL) {
-               if (compose->mode == COMPOSE_REEDIT_DRAFT)
+               if (compose->mode == COMPOSE_REEDIT)
                        compose->references = hentry[H_REFERENCES].body;
                else {
                        compose->references = compose_parse_references
@@ -1076,7 +1402,7 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                hentry[H_REFERENCES].body = NULL;
        }
        if (hentry[H_BCC].body != NULL) {
-               if (compose->mode == COMPOSE_REEDIT_DRAFT) {
+               if (compose->mode == COMPOSE_REEDIT) {
                        conv_unmime_header_overwrite(hentry[H_BCC].body);
                        compose->bcc = hentry[H_BCC].body;
                } else
@@ -1093,9 +1419,9 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                hentry[H_FOLLOWUP_TO].body = NULL;
        }
 
-       if (compose->mode == COMPOSE_REEDIT_DRAFT && msginfo->inreplyto)
+       if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
                compose->inreplyto = g_strdup(msginfo->inreplyto);
-       else if (compose->mode != COMPOSE_REEDIT_DRAFT &&
+       else if (compose->mode != COMPOSE_REEDIT &&
                 msginfo->msgid && *msginfo->msgid) {
                compose->inreplyto = g_strdup(msginfo->msgid);
 
@@ -1165,298 +1491,99 @@ 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;
+       gchar *quote_str = NULL;
+       gchar *buf;
+       gchar *p, *lastp;
+       gint len;
 
-               while (*cur != '\0') {
-                       ch_len = mblen(cur, MB_CUR_MAX);
-                       if (ch_len < 0) ch_len = 1;
+       if (qmark != NULL) {
+               quote_fmt_init(msginfo, NULL);
+               quote_fmt_scan_string(qmark);
+               quote_fmt_parse();
 
-                       if (ch_len == 1 && isspace(*cur)) {
-                               linep = cur + ch_len;
-                               line_len = cur_len + ch_len;
-                       }
+               buf = quote_fmt_get_buffer();
+               if (buf == NULL)
+                       alertpanel_error(_("Quote mark format error."));
+               else
+                       Xstrdup_a(quote_str, buf, return NULL)
+       }
 
-                       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;
-                       }
+       quote_fmt_init(msginfo, quote_str);
+       quote_fmt_scan_string(fmt);
+       quote_fmt_parse();
 
-                       if (ch_len > 1) {
-                               linep = cur + ch_len;
-                               line_len = cur_len + ch_len;
-                       }
-                       cur_len += ch_len;
-                       cur += ch_len;
-               }
+       buf = quote_fmt_get_buffer();
+       if (buf == NULL) {
+               alertpanel_error(_("Message reply/forward format error."));
+               return NULL;
+       }
 
-               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);
-               }
+       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;
        }
 
-       g_free(quote_str);
+       gtk_stext_thaw(text);
+
+       return buf;
 }
-*/
 
-/*
-static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
-                                     const gchar *fmt)
+static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
+                                   gboolean to_all, gboolean ignore_replyto,
+                                   gboolean followup_and_reply_to)
 {
-       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;
+       GSList *cc_list;
+       GSList *cur;
+       gchar *from;
+       GHashTable *to_table;
 
-       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;
+       g_return_if_fail(compose->account != NULL);
+       g_return_if_fail(msginfo != NULL);
 
-       ext_str = g_malloc(sizeof(gchar) * buf_len);
-       g_return_val_if_fail(ext_str != NULL, NULL);
+       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
+                                    : msginfo->from ? msginfo->from : ""),
+                                    COMPOSE_TO);
+       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);
+       }
 
-       while (*sp) {
-               gint len;
+       if (msginfo->subject && *msginfo->subject) {
+               gchar *buf, *buf2, *p;
 
-               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 '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 (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++;
-               }
-       }
-
-       if (ext_str)
-               ext_str = g_realloc(ext_str, strlen(ext_str) + 1);
-
-       return ext_str;
-}
-*/
-
-static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
-                                   gboolean to_all, gboolean ignore_replyto,
-                                   gboolean followup_and_reply_to)
-{
-       GSList *cc_list;
-       GSList *cur;
-       gchar *from;
-       GHashTable *to_table;
-
-       g_return_if_fail(compose->account != NULL);
-       g_return_if_fail(msginfo != NULL);
-
-       if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
-               gtk_entry_set_text(GTK_ENTRY(compose->to_entry),
-                                  ( (compose->replyto && !ignore_replyto) 
-                                    ? compose->replyto
-                                    : msginfo->from ? msginfo->from : ""));
-       if (compose->account->protocol == A_NNTP)
-               gtk_entry_set_text(GTK_ENTRY(compose->newsgroups_entry),
-                                  compose->followup_to ? compose->followup_to
-                                  : compose->newsgroups ? compose->newsgroups
-                                  : "");
-
-       if (msginfo->subject && *msginfo->subject) {
-               gchar *buf, *buf2, *p;
-
-               buf = g_strdup(msginfo->subject);
-               while (!strncasecmp(buf, "Re:", 3)) {
-                       p = buf + 3;
-                       while (isspace(*p)) p++;
-                       memmove(buf, p, strlen(p) + 1);
-               }
+               buf = g_strdup(msginfo->subject);
+               while (!strncasecmp(buf, "Re:", 3)) {
+                       p = buf + 3;
+                       while (isspace(*p)) p++;
+                       memmove(buf, p, strlen(p) + 1);
+               }
 
                buf2 = g_strdup_printf("Re: %s", buf);
                gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
@@ -1509,16 +1636,23 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
                gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
 }
 
+#define SET_ADDRESS(type, str) \
+{ \
+       if (str && *str) \
+               compose_entry_append(compose, str, type); \
+}
+
 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
 {
        g_return_if_fail(msginfo != NULL);
 
-       SET_ENTRY(to_entry, msginfo->to);
        SET_ENTRY(subject_entry, msginfo->subject);
-       SET_ENTRY(cc_entry, compose->cc);
-       SET_ENTRY(bcc_entry, compose->bcc);
-       SET_ENTRY(reply_entry, compose->replyto);
+       SET_ADDRESS(COMPOSE_TO, msginfo->to);
+       SET_ADDRESS(COMPOSE_CC, compose->cc);
+       SET_ADDRESS(COMPOSE_BCC, compose->bcc);
+       SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
 
+#if 0 /* NEW COMPOSE GUI */
        if (compose->bcc) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1538,9 +1672,54 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
        }
+#endif
 }
 
 #undef SET_ENTRY
+#undef SET_ADDRESS
+
+static void compose_exec_sig(Compose *compose, gchar *sigfile)
+{
+       FILE *tmpfp;
+       pid_t thepid;
+       gchar *sigtext;
+       FILE  *sigprg;
+       gchar  *buf;
+       size_t buf_len = 128;
+       if (strlen(sigfile) < 2)
+         return;
+       sigprg = popen(sigfile+1, "r");
+       if (sigprg) {
+
+               buf = g_malloc(buf_len);
+
+               if (!buf) {
+                       gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
+                       "Unable to insert signature (malloc failed)\n", -1);
+
+                       pclose(sigprg);
+                       return;
+               }
+
+               while (!feof(sigprg)) {
+                       bzero(buf, buf_len);
+                       fread(buf, buf_len-1, 1, sigprg);
+                       gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
+               }
+
+               g_free(buf);
+               pclose(sigprg);
+       }
+       else
+       {
+               gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
+               "Can't exec file: ", -1);
+               gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
+               sigfile+1, -1);
+       }
+}
 
 static void compose_insert_sig(Compose *compose)
 {
@@ -1553,7 +1732,7 @@ static void compose_insert_sig(Compose *compose)
                                      DEFAULT_SIGNATURE, NULL);
        }
 
-       if (!is_file_or_fifo_exist(sigfile)) {
+       if (!is_file_or_fifo_exist(sigfile) & (sigfile[0] != '|')) {
                g_free(sigfile);
                return;
        }
@@ -1566,7 +1745,14 @@ static void compose_insert_sig(Compose *compose)
                                "\n", 1);
        }
 
-       compose_insert_file(compose, sigfile);
+       if (sigfile[0] == '|')
+       {
+               compose_exec_sig(compose, sigfile);
+       }
+       else
+       {
+               compose_insert_file(compose, sigfile);
+       }
        g_free(sigfile);
 }
 
@@ -1574,6 +1760,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);
@@ -1585,8 +1772,20 @@ static void compose_insert_file(Compose *compose, const gchar *file)
 
        gtk_stext_freeze(text);
 
-       while (fgets(buf, sizeof(buf), fp) != NULL)
-               gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
+       while (fgets(buf, sizeof(buf), fp) != NULL) {
+               /* Strip <CR> if DOS/Windoze file, replace <CR> with <LF> if MAC file */
+               len = strlen(buf);
+               if (len > 1 && buf[len - 2] == '\r' && buf[len - 1] == '\n') {
+                       buf[len - 2] = '\n';
+                       buf[len - 1] = '\0';
+               } else {
+                       while (--len > 0)
+                               if (buf[len] == '\r')
+                                       buf[len] = '\n';
+               }
+
+               gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
+       }
 
        gtk_stext_thaw(text);
 
@@ -1630,7 +1829,7 @@ static void compose_attach_append_with_type(Compose *compose,
                alertpanel_notice(_("File %s is empty\n"), file);
                return;
        }
-
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_attach) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1641,7 +1840,7 @@ static void compose_attach_append_with_type(Compose *compose,
                gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                               TRUE);
        }
-
+#endif
        ainfo = g_new0(AttachInfo, 1);
        ainfo->file = g_strdup(file);
 
@@ -1680,7 +1879,7 @@ static void compose_attach_append(Compose *compose, const gchar *file,
                alertpanel_notice(_("File %s is empty\n"), file);
                return;
        }
-
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_attach) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1691,7 +1890,7 @@ static void compose_attach_append(Compose *compose, const gchar *file,
                gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                               TRUE);
        }
-
+#endif
        ainfo = g_new0(AttachInfo, 1);
        ainfo->file = g_strdup(file);
 
@@ -1713,67 +1912,158 @@ 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);
+       gint ch_len, last_ch_len;
+       gchar cbuf[MB_LEN_MAX], last_ch;
        guint text_len;
-       guint line_pos = 0, cur_pos = 0;
-       gint line_len = 0, cur_len = 0;
-       gint ch_len;
-       gchar cbuf[MB_CUR_MAX];
+       guint line_end;
+       guint quoted;
+       gint p_start, p_end;
+       gint line_pos, cur_pos;
+       gint line_len, cur_len;
+
 
        gtk_stext_freeze(text);
 
        text_len = gtk_stext_get_length(text);
 
-       for (; cur_pos < text_len; cur_pos++) {
-               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;
+       /* check to see if the point is on the paragraph mark (empty line). */
+       cur_pos = gtk_stext_get_point(text);
+       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_CHAR(cur_pos - 1, cbuf, ch_len);
+               if (ch_len == 1 && *cbuf == '\n')
+                       goto compose_end; /* on the paragraph mark */
+       }
+
+       /* find paragraph start. */
+       line_end = quoted = 0;
+       for (p_start = cur_pos; p_start >= 0; --p_start) {
+               GET_CHAR(p_start, cbuf, ch_len);
+               if (ch_len == 1 && *cbuf == '\n') {
+                       if (quoted)
+                               goto compose_end; /* quoted part */
+                       if (line_end) {
+                               p_start += 2;
+                               break;
+                       }
+                       line_end = 1;
+               } else {
+                       if (ch_len == 1 && strchr(">:#", *cbuf))
+                               quoted = 1;
+                       else if (ch_len != 1 || !isspace(*cbuf))
+                               quoted = 0;
+
+                       line_end = 0;
                }
+       }
+       if (p_start < 0)
+               p_start = 0;
 
+       /* find paragraph end. */
+       line_end = 0;
+       for (p_end = cur_pos; p_end < text_len; p_end++) {
+               GET_CHAR(p_end, cbuf, ch_len);
                if (ch_len == 1 && *cbuf == '\n') {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len = 0;
-                       continue;
+                       if (line_end) {
+                               p_end -= 1;
+                               break;
+                       }
+                       line_end = 1;
+               } else {
+                       if (line_end && ch_len == 1 && strchr(">:#", *cbuf))
+                               goto compose_end; /* quoted part */
+
+                       line_end = 0;
                }
+       }
+       if (p_end >= text_len)
+               p_end = text_len;
+
+       if (p_start >= p_end)
+               goto compose_end;
+
+       line_len = cur_len = 0;
+       last_ch_len = 0;
+       last_ch = '\0';
+       line_pos = p_start;
+       for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
+               guint space = 0;
+
+               GET_CHAR(cur_pos, cbuf, ch_len);
 
                if (ch_len < 0) {
                        cbuf[0] = '\0';
                        ch_len = 1;
                }
 
-               if (ch_len == 1 && isspace(*cbuf)) {
+               if (ch_len == 1 && isspace(*cbuf))
+                       space = 1;
+
+               if (ch_len == 1 && *cbuf == '\n') {
+                       guint replace = 0;
+                       if (last_ch_len == 1 && !isspace(last_ch)) {
+                               if (cur_pos + 1 < p_end) {
+                                       GET_CHAR(cur_pos + 1, cbuf, ch_len);
+                                       if (ch_len == 1 && !isspace(*cbuf))
+                                               replace = 1;
+                               }
+                       }
+                       gtk_stext_set_point(text, cur_pos + 1);
+                       gtk_stext_backward_delete(text, 1);
+                       if (replace) {
+                               gtk_stext_set_point(text, cur_pos);
+                               gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
+                               space = 1;
+                       }
+                       else {
+                               p_end--;
+                               cur_pos--;
+                               continue;
+                       }
+               }
+
+               last_ch_len = ch_len;
+               last_ch = *cbuf;
+
+               if (space) {
                        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;
+                       gint tlen = ch_len;
 
-                       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;
-                       }
-                       if (tlen == 1 && isspace(*cbuf)) {
+                       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);
-                               text_len--;
+                               p_end--;
                                cur_pos--;
                                line_pos--;
                                cur_len--;
                                line_len--;
                        }
+                       ch_len = tlen;
 
                        gtk_stext_set_point(text, line_pos);
                        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
-                       text_len++;
+                       p_end++;
                        cur_pos++;
                        line_pos++;
                        cur_len = cur_len - line_len + ch_len;
@@ -1788,9 +2078,336 @@ static void compose_wrap_line(Compose *compose)
                cur_len += ch_len;
        }
 
+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++;
+       }
+
+       return indent_len;
+}
+
+/* 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;
+
+       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);
+               }
+               ins_len = indent_len;
+       } else {
+               gtk_stext_insert(text, NULL, NULL, NULL, quote_fmt, quote_len);
+               ins_len = quote_len;
+       }
+
+       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 tlen;
+       guint line_pos = 0, cur_pos = 0, p_pos = 0;
+       gint line_len = 0, cur_len = 0;
+       gint ch_len;
+       gboolean is_new_line = TRUE, do_delete = FALSE;
+       guint qlen = 0, i_len = 0;
+       guint linewrap_quote = prefs_common.linewrap_quote;
+       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); */
+
+       tlen = gtk_stext_get_length(text);
+
+       for (; cur_pos < tlen; cur_pos++) {
+               /* mark position of new line - needed for quotation wrap */
+               if (linewrap_quote && is_new_line) {
+                       qlen = gtkut_text_str_compare
+                               (text, cur_pos, tlen, qfmt);
+                       is_new_line = FALSE;
+                       if (qlen)
+                               i_len = get_indent_length(text, cur_pos, tlen);
+                       else
+                               i_len = 0;
+                       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
+               }
+
+               GET_CHAR(cur_pos, cbuf, ch_len);
+
+               /* 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') {
+                       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_text_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_text_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_text_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_text_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;
+               }
+
+               if (ch_len < 0) {
+                       cbuf[0] = '\0';
+                       ch_len = 1;
+               }
+
+               /* possible line break */
+               if (ch_len == 1 && isspace(*cbuf)) {
+                       line_pos = cur_pos + 1;
+                       line_len = cur_len + ch_len;
+               }
+
+               /* are we over wrapping length set in preferences ? */
+               if (cur_len + ch_len > linewrap_len) {
+                       gint clen;
+
+#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 (p_pos + i_len == line_pos)
+                               if (!gtkut_text_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_text_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 it is URL at beginning of line don't wrap */
+                       if (p_pos + i_len == line_pos &&
+                           gtkut_text_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);
+                       /* gtk_stext_compact_buffer(text); */
+                       tlen++;
+                       line_pos++;
+                       /* for loop will increase it */
+                       cur_pos = line_pos - 1;
+                       /* start over with current line */
+                       is_new_line = TRUE;
+                       line_len = 0;
+                       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_text_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;
+               }
+
+               if (ch_len > 1) {
+                       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;
@@ -1833,10 +2450,73 @@ compose_current_mail_account(void)
        return ac;
 }
 
+gboolean compose_check_for_valid_recipient(Compose *compose) {
+       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(((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];
-       gchar *to, *newsgroups;
        gint ok = 0;
        static gboolean lock = FALSE;
 
@@ -1847,9 +2527,7 @@ gint compose_send(Compose *compose)
 
        lock = TRUE;
 
-       to = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       newsgroups = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*to == '\0' && *newsgroups == '\0') {
+       if(!compose_check_for_valid_recipient(compose)) {
                alertpanel_error(_("Recipient is not specified."));
                lock = FALSE;
                return 1;
@@ -1860,7 +2538,7 @@ gint compose_send(Compose *compose)
                   get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
 
        if (prefs_common.linewrap_at_send)
-               compose_wrap_line(compose);
+               compose_wrap_line_all(compose);
 
        if (compose_write_to_file(compose, tmp, FALSE) < 0) {
                lock = FALSE;
@@ -1877,11 +2555,13 @@ gint compose_send(Compose *compose)
        if (compose->to_list) {
                PrefsAccount *ac;
 
-               /*
+#if 0 /* NEW COMPOSE GUI */
                if (compose->account->protocol != A_NNTP)
                        ac = compose->account;
                else if (compose->orig_account->protocol != A_NNTP)
                        ac = compose->orig_account;
+               else if (cur_account && cur_account->protocol != A_NNTP)
+                       ac = cur_account;
                else {
                        ac = compose_current_mail_account();
                        if (!ac) {
@@ -1890,7 +2570,7 @@ gint compose_send(Compose *compose)
                                return -1;
                        }
                }
-               */
+#endif
                ac = compose->account;
 
                ok = send_message(tmp, ac, compose->to_list);
@@ -1932,6 +2612,13 @@ gint compose_send(Compose *compose)
                        }
                } else
                        alertpanel_error(_("Error occurred while sending the message."));
+       } else {
+               if (compose->mode == COMPOSE_REEDIT) {
+                       compose_remove_reedit_target(compose);
+                       if (compose->targetinfo)
+                               folderview_update_item
+                                       (compose->targetinfo->folder, TRUE);
+               }
        }
 
        /* save message to outbox */
@@ -1945,6 +2632,150 @@ 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 (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)
@@ -1972,19 +2803,25 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
        len = strlen(chars);
        if (is_ascii_str(chars)) {
                buf = g_strdup(chars);
-               out_codeset = "US-ASCII";
+               out_codeset = CS_US_ASCII;
                encoding = ENC_7BIT;
        } else {
                const gchar *src_codeset;
 
                out_codeset = conv_get_outgoing_charset_str();
-               if (!strcasecmp(out_codeset, "US-ASCII"))
-                       out_codeset = "ISO-8859-1";
+               if (!strcasecmp(out_codeset, CS_US_ASCII))
+                       out_codeset = CS_ISO_8859_1;
                encoding = procmime_get_encoding_for_charset(out_codeset);
-               debug_print("charset = %s, encoding = %s\n",
-                           out_codeset, procmime_get_encoding_str(encoding));
 
                src_codeset = conv_get_current_charset_str();
+               /* if current encoding is US-ASCII, set it the same as
+                  outgoing one to prevent code conversion failure */
+               if (!strcasecmp(src_codeset, CS_US_ASCII))
+                       src_codeset = out_codeset;
+
+               debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
+                           src_codeset, out_codeset, procmime_get_encoding_str(encoding));
+
                buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
                if (!buf) {
                        g_free(chars);
@@ -2006,7 +2843,7 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
                return -1;
        }
 
-       if (compose->use_attach) {
+       if (compose_use_attach(compose)) {
 #if USE_GPGME
             /* This prolog message is ignored by mime software and
              * because it would make our signing/encryption task
@@ -2044,7 +2881,7 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
        }
        g_free(buf);
 
-       if (compose->use_attach)
+       if (compose_use_attach(compose))
                compose_write_attach(compose, fp);
 
        if (fclose(fp) == EOF) {
@@ -2137,7 +2974,8 @@ static gint compose_save_to_outbox(Compose *compose, const gchar *file)
                MsgInfo newmsginfo;
 
                newmsginfo.msgnum = num;
-               newmsginfo.flags = 0;
+               newmsginfo.flags.perm_flags = 0;
+               newmsginfo.flags.tmp_flags = 0;
                procmsg_write_flags(&newmsginfo, fp);
                fclose(fp);
        }
@@ -2146,31 +2984,120 @@ static gint compose_save_to_outbox(Compose *compose, const gchar *file)
        return 0;
 }
 
-static gint compose_queue(Compose *compose, const gchar *file)
+static gint compose_remove_reedit_target(Compose *compose)
+{
+       FolderItem *item;
+       MsgInfo *msginfo = compose->targetinfo;
+
+       g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
+       if (!msginfo) return -1;
+
+       item = msginfo->folder;
+       g_return_val_if_fail(item != NULL, -1);
+
+       folder_item_scan(item);
+       if (procmsg_msg_exist(msginfo) &&
+           (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
+               if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
+                       g_warning(_("can't remove the old message\n"));
+                       return -1;
+               }
+       }
+
+       return 0;
+}
+
+
+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) {
@@ -2193,19 +3120,38 @@ 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 IDs */
+       if(mailac) {
+               fprintf(fp, "MAID:%d\n", mailac->account_id);
+       }
+       if(newsac) {
+               fprintf(fp, "NAID:%d\n", newsac->account_id);
+       }
        fprintf(fp, "\n");
 
        while (fgets(buf, sizeof(buf), src_fp) != NULL) {
@@ -2215,19 +3161,24 @@ 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);
        queue_path = folder_item_get_path(queue);
        if (!is_dir_exist(queue_path))
@@ -2239,7 +3190,18 @@ static gint compose_queue(Compose *compose, const gchar *file)
                g_free(queue_path);
                return -1;
        }
-       g_free(tmp);
+       unlink(tmp);
+       g_free(tmp);
+       unlink(tmp2);
+       g_free(tmp2);
+
+       if (compose->mode == COMPOSE_REEDIT) {
+               compose_remove_reedit_target(compose);
+               if (compose->targetinfo &&
+                   compose->targetinfo->folder != queue)
+                       folderview_update_item
+                               (compose->targetinfo->folder, TRUE);
+       }
 
        if ((fp = procmsg_open_mark_file(queue_path, TRUE)) == NULL)
                g_warning(_("can't open mark file\n"));
@@ -2247,7 +3209,8 @@ static gint compose_queue(Compose *compose, const gchar *file)
                MsgInfo newmsginfo;
 
                newmsginfo.msgnum = num;
-               newmsginfo.flags = 0;
+               newmsginfo.flags.perm_flags = 0;
+               newmsginfo.flags.tmp_flags = 0;
                procmsg_write_flags(&newmsginfo, fp);
                fclose(fp);
        }
@@ -2256,6 +3219,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;
 }
 
@@ -2297,12 +3265,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 {
@@ -2332,6 +3295,58 @@ static void compose_write_attach(Compose *compose, FILE *fp)
        (compose->account->add_customhdr && \
         custom_header_find(compose->account->customhdr_list, header) != NULL)
 
+static gint compose_write_headers_from_headerlist(Compose *compose, 
+                                                 FILE *fp, 
+                                                 gchar *header)
+{
+       gchar buf[BUFFSIZE];
+       gchar *str, *header_w_colon, *trans_hdr;
+       gboolean first_address;
+       GSList *list;
+       ComposeHeaderEntry *headerentry;
+       gchar * headerentryname;
+
+       if (IS_IN_CUSTOM_HEADER(header)) {
+               return 0;
+       }
+
+       debug_print(_("Writing %s-header\n"), header);
+
+       header_w_colon = g_strconcat(header, ":", NULL);
+       trans_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(trans_hdr, headerentryname)) {
+                       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(header) + 2);
+                               if(first_address) {
+                                       fprintf(fp, "%s: ", header);
+                                       first_address = FALSE;
+                               } else {
+                                       fprintf(fp, ",");
+                               }
+                               fprintf(fp, "%s", buf);
+                       }
+               }
+       }
+       if(!first_address) {
+               fprintf(fp, "\n");
+       }
+
+       g_free(header_w_colon);
+
+       return(0);
+}
+
 static gint compose_write_headers(Compose *compose, FILE *fp,
                                  const gchar *charset, EncodingType encoding,
                                  gboolean is_draft)
@@ -2350,7 +3365,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                get_rfc822_date(buf, sizeof(buf));
                fprintf(fp, "Date: %s\n", buf);
        }
-       
+
        /* From */
        if (!IS_IN_CUSTOM_HEADER("From")) {
                if (compose->account->name && *compose->account->name) {
@@ -2363,11 +3378,9 @@ 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");
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_to) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
                if (*str != '\0') {
@@ -2385,12 +3398,11 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-       
-       slist_free_strings(compose->newsgroup_list);
-       g_slist_free(compose->newsgroup_list);
-       compose->newsgroup_list = NULL;
+#endif
 
        /* Newsgroups */
+       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') {
                Xstrdup_a(str, str, return -1);
@@ -2407,11 +3419,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
-       if (!is_draft && !compose->to_list && !compose->newsgroup_list)
-               return -1;
-
+#endif
        /* Cc */
+       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));
                if (*str != '\0') {
@@ -2429,8 +3440,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-       
+#endif
        /* Bcc */
+       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));
                if (*str != '\0') {
@@ -2439,15 +3452,13 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        if (*str != '\0') {
                                compose->to_list = address_list_append
                                        (compose->to_list, str);
-                               if (is_draft) {
-                                       compose_convert_header
-                                               (buf, sizeof(buf), str,
-                                                strlen("Bcc: "));
-                                       fprintf(fp, "Bcc: %s\n", buf);
-                               }
+                               compose_convert_header(buf, sizeof(buf), str,
+                                                      strlen("Bcc: "));
+                               fprintf(fp, "Bcc: %s\n", buf);
                        }
                }
        }
+#endif
 
        /* Subject */
        str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
@@ -2477,6 +3488,8 @@ 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");
+#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));
                if (*str != '\0') {
@@ -2490,8 +3503,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        /* Reply-To */
+       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));
                if (*str != '\0') {
@@ -2504,7 +3519,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        /* Organization */
        if (compose->account->organization &&
            !IS_IN_CUSTOM_HEADER("Organization")) {
@@ -2516,16 +3531,14 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
 
        /* Program version and system info */
        /* uname(&utsbuf); */
-       str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       if (*str != '\0' && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
+       if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
                fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
                        HOST_ALIAS);
                        /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
-       str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*str != '\0' && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
+       if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
                fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
@@ -2544,25 +3557,26 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        if (strcasecmp(chdr->name, "Date")         != 0 &&
                            strcasecmp(chdr->name, "From")         != 0 &&
                            strcasecmp(chdr->name, "To")           != 0 &&
-                           strcasecmp(chdr->name, "Sender")       != 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)
+                           != 0) {
                                compose_convert_header
                                        (buf, sizeof(buf),
                                         chdr->value ? chdr->value : "",
                                         strlen(chdr->name) + 2);
                                fprintf(fp, "%s: %s\n", chdr->name, buf);
+                       }
                }
        }
-       
+
        /* MIME */
        fprintf(fp, "Mime-Version: 1.0\n");
-       if (compose->use_attach) {
+       if (compose_use_attach(compose)) {
                get_rfc822_date(buf, sizeof(buf));
                subst_char(buf, ' ', '_');
                subst_char(buf, ',', '_');
@@ -2646,6 +3660,7 @@ 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,
@@ -2662,11 +3677,13 @@ 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();
-       gtk_table_attach_defaults
-               (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1);
+       *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 */
        if (GTK_TABLE(table)->nrows > (*count) + 1)
                gtk_table_set_row_spacing(GTK_TABLE(table), *count, 4);
+#endif
 
        if (is_addr_entry)
                address_completion_register_entry(GTK_ENTRY(*entry));
@@ -2674,7 +3691,72 @@ static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
        (*count)++;
 }
 
-static Compose *compose_create(PrefsAccount *account)
+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;
+       ComposeHeaderEntry *headerentry;
+
+       headerentry = g_new0(ComposeHeaderEntry, 1);
+
+       /* Combo box */
+       combo = gtk_combo_new();
+       string = headers; 
+       while(*string != NULL) {
+           combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
+           string++;
+       }
+       gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
+       g_list_free(combo_list);
+       gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), FALSE);
+       gtk_widget_show(combo);
+       gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
+       if(compose->header_last) {      
+               header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
+       } else {
+               switch(compose->account->protocol) {
+                       case A_NNTP:
+                               header = prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:";
+                               break;
+                       default:
+                               header = prefs_common.trans_hdr ? _("To:") : "To:";
+                               break;
+               }                                                                   
+       }
+       gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
+
+       /* Entry field */
+       entry = gtk_entry_new(); 
+       gtk_widget_show(entry);
+       gtk_table_attach(GTK_TABLE(compose->header_table), entry, 1, 2, compose->header_nextrow, compose->header_nextrow+1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
+
+        gtk_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);
+
+       address_completion_register_entry(GTK_ENTRY(entry));
+
+        headerentry->compose = compose;
+        headerentry->combo = combo;
+        headerentry->entry = entry;
+        headerentry->headernum = compose->header_nextrow;
+
+        compose->header_nextrow++;
+       compose->header_last = headerentry;
+}
+
+static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) {
+       ComposeHeaderEntry *last_header;
+       
+       last_header = compose->header_last;
+       
+       gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
+       gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
+}
+
+static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 {
        Compose   *compose;
        GtkWidget *window;
@@ -2682,16 +3764,23 @@ static Compose *compose_create(PrefsAccount *account)
        GtkWidget *menubar;
        GtkWidget *handlebox;
 
+       GtkWidget *notebook;
+
        GtkWidget *vbox2;
 
        GtkWidget *table_vbox;
        GtkWidget *label;
        GtkWidget *from_optmenu_hbox;
+#if 0 /* NEW COMPOSE GUI */
        GtkWidget *to_entry;
        GtkWidget *to_hbox;
        GtkWidget *newsgroups_entry;
        GtkWidget *newsgroups_hbox;
+#endif
+       GtkWidget *header_scrolledwin;
+       GtkWidget *header_table;
        GtkWidget *subject_entry;
+#if 0 /* NEW COMPOSE GUI */
        GtkWidget *cc_entry;
        GtkWidget *cc_hbox;
        GtkWidget *bcc_entry;
@@ -2700,7 +3789,7 @@ static Compose *compose_create(PrefsAccount *account)
        GtkWidget *reply_hbox;
        GtkWidget *followup_entry;
        GtkWidget *followup_hbox;
-
+#endif
        GtkWidget *paned;
 
        GtkWidget *attach_scrwin;
@@ -2715,6 +3804,8 @@ static Compose *compose_create(PrefsAccount *account)
        GtkWidget *table;
        GtkWidget *hbox;
 
+       UndoMain *undostruct;
+
        gchar *titles[] = {_("MIME type"), _("Size"), _("Name")};
        guint n_menu_entries;
        GtkStyle  *style, *new_style;
@@ -2726,10 +3817,15 @@ static Compose *compose_create(PrefsAccount *account)
        GtkWidget *menuitem;
        GtkItemFactory *popupfactory;
        GtkItemFactory *ifactory;
+       GtkWidget *tmpl_menu;
        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"));
@@ -2751,6 +3847,8 @@ static Compose *compose_create(PrefsAccount *account)
                           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);
 
@@ -2773,31 +3871,57 @@ static Compose *compose_create(PrefsAccount *account)
        gtk_container_set_border_width(GTK_CONTAINER(table_vbox),
                                       BORDER_WIDTH * 2);
 
-       table = gtk_table_new(8, 2, FALSE);
-       gtk_box_pack_start(GTK_BOX(table_vbox), table, FALSE, TRUE, 0);
+       /* 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);
+       count = 0;
 
        /* option menu for selecting accounts */
        hbox = gtk_hbox_new(FALSE, 0);
        label = gtk_label_new(prefs_common.trans_hdr ? _("From:") : "From:");
        gtk_box_pack_end(GTK_BOX(hbox), label, FALSE, FALSE, 0);
-       gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, count, count + 1,
+       gtk_table_attach(GTK_TABLE(header_table), hbox, 0, 1, count, count + 1,
                         GTK_FILL, 0, 2, 0);
        from_optmenu_hbox = compose_account_option_menu_create(compose);
-       gtk_table_attach_defaults(GTK_TABLE(table), from_optmenu_hbox,
-                                 1, 2, count, count + 1);
+       gtk_table_attach(GTK_TABLE(header_table), from_optmenu_hbox,
+                                 1, 2, count, count + 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
+#if 0 /* NEW COMPOSE GUI */
        gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
+#endif
        count++;
 
-       /* header labels and entries */
+       /* 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;
+
+       compose_create_header_entry(compose);
+
+#if 0 /* NEW COMPOSE GUI */
        compose_add_entry_field(table, &to_hbox, &to_entry, &count,
                                "To:", TRUE); 
        gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
        compose_add_entry_field(table, &newsgroups_hbox, &newsgroups_entry,
                                &count, "Newsgroups:", FALSE);
        gtk_table_set_row_spacing(GTK_TABLE(table), 1, 4);
-       compose_add_entry_field(table, &hbox, &subject_entry, &count,
-                               "Subject:", FALSE);
+
        gtk_table_set_row_spacing(GTK_TABLE(table), 2, 4);
+
        compose_add_entry_field(table, &cc_hbox, &cc_entry, &count,
                                "Cc:", TRUE);
        gtk_table_set_row_spacing(GTK_TABLE(table), 3, 4);
@@ -2842,9 +3966,11 @@ static Compose *compose_create(PrefsAccount *account)
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
        gtk_signal_connect(GTK_OBJECT(followup_entry), "grab_focus",
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
+#endif
 
        /* 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);
@@ -2878,14 +4004,11 @@ static Compose *compose_create(PrefsAccount *account)
                           GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
                           compose);
 
-       /* pane between attach clist and text */
-       paned = gtk_vpaned_new();
-       gtk_paned_add1(GTK_PANED(paned), attach_scrwin);
-       gtk_widget_ref(paned);
-       gtk_widget_show_all(paned);
 
        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
 
        /* ruler */
        ruler_hbox = gtk_hbox_new(FALSE, 0);
@@ -2908,9 +4031,17 @@ static Compose *compose_create(PrefsAccount *account)
                            (GTK_SCROLLED_WINDOW(scrolledwin)),
                            gtk_scrolled_window_get_vadjustment
                            (GTK_SCROLLED_WINDOW(scrolledwin)));
+       GTK_STEXT(text)->default_tab_width = 8;
        gtk_stext_set_editable(GTK_STEXT(text), TRUE);
-       gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
-       gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
+
+       if (prefs_common.block_cursor) {
+               GTK_STEXT(text)->cursor_type = STEXT_CURSOR_BLOCK;
+       }
+       
+       if (prefs_common.smart_wrapping) {      
+               gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
+               gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
+       }               
 
        gtk_container_add(GTK_CONTAINER(scrolledwin), text);
 
@@ -2936,12 +4067,31 @@ static Compose *compose_create(PrefsAccount *account)
        gtk_signal_connect(GTK_OBJECT(text), "drag_data_received",
                           GTK_SIGNAL_FUNC(compose_insert_drag_received_cb),
                           compose);
-
+#if USE_PSPELL
+        if (prefs_common.enable_pspell) {
+               gtkpspell = gtkpspell_new_with_config(gtkpspellconfig,
+                                                     prefs_common.pspell_path,
+                                                     prefs_common.dictionary,
+                                                     PSPELL_FASTMODE,
+                                                     conv_get_current_charset_str());
+               if (gtkpspell == NULL)
+                       prefs_common.enable_pspell = FALSE;
+               else
+                       gtkpspell_attach(gtkpspell, GTK_STEXT(text));
+        }
+#endif
        gtk_widget_show_all(vbox);
 
+       /* pane between attach clist and text */
+       paned = gtk_vpaned_new();
+       gtk_container_add(GTK_CONTAINER(vbox2), paned);
+       gtk_paned_add1(GTK_PANED(paned), notebook);
+       gtk_paned_add2(GTK_PANED(paned), edit_vbox);
+       gtk_widget_show_all(paned);
+
        style = gtk_widget_get_style(text);
 
-       /* workaround for the slow down of GtkSText when using Pixmap theme */
+       /* workaround for the slow down of GtkText when using Pixmap theme */
        if (style->engine) {
                GtkThemeEngine *engine;
 
@@ -2992,7 +4142,8 @@ static Compose *compose_create(PrefsAccount *account)
        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 */
        if (account->protocol == A_NNTP) {
                gtk_widget_hide(to_hbox);
                gtk_widget_hide(to_entry);
@@ -3007,7 +4158,7 @@ static Compose *compose_create(PrefsAccount *account)
 
                menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
        }
-       */
+#endif
 
        switch (prefs_common.toolbar_style) {
        case TOOLBAR_NONE:
@@ -3039,12 +4190,16 @@ static Compose *compose_create(PrefsAccount *account)
        compose->vbox2         = vbox2;
 
        compose->table_vbox       = table_vbox;
+       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
        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;
@@ -3053,7 +4208,7 @@ static Compose *compose_create(PrefsAccount *account)
        compose->reply_entry      = reply_entry;
        compose->followup_hbox    = followup_hbox;
        compose->followup_entry   = followup_entry;
-
+#endif
        compose->paned = paned;
 
        compose->attach_scrwin = attach_scrwin;
@@ -3070,9 +4225,15 @@ static Compose *compose_create(PrefsAccount *account)
        compose->popupmenu    = popupmenu;
        compose->popupfactory = popupfactory;
 
-       compose->mode = COMPOSE_NEW;
+       compose->tmpl_menu = tmpl_menu;
+
+       compose->mode = mode;
+
+       compose->targetinfo = NULL;
+       compose->replyinfo  = NULL;
 
        compose->replyto     = NULL;
+       compose->mailinglist = NULL;
        compose->cc          = NULL;
        compose->bcc         = NULL;
        compose->followup_to = NULL;
@@ -3098,13 +4259,26 @@ static Compose *compose_create(PrefsAccount *account)
        compose->exteditor_readdes = -1;
        compose->exteditor_tag     = -1;
 
+       compose->bounce_filename = NULL;
+
        compose_set_title(compose);
 
+#if 0 /* NEW COMPOSE GUI */
        compose->use_bcc        = FALSE;
        compose->use_replyto    = FALSE;
        compose->use_followupto = FALSE;
+#endif
+
+#if USE_PSPELL
+        compose->gtkpspell      = gtkpspell;
+#endif
+
+       undostruct = undo_init(text);
+
+       compose->undostruct = undostruct;
+       undo_set_undo_change_funct(undostruct, &compose_set_undo, GTK_WIDGET(compose->menubar));
 
-       /*
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP) {
                menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
                gtk_check_menu_item_set_active
@@ -3115,33 +4289,45 @@ static Compose *compose_create(PrefsAccount *account)
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                gtk_widget_set_sensitive(menuitem, FALSE);
        }
-       */
-       if (account->set_autocc && account->auto_cc) {
+#endif
+       if (account->set_autocc && account->auto_cc && mode != COMPOSE_REEDIT) {
+               compose_entry_append(compose, account->auto_cc, COMPOSE_CC);
+#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");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
+#endif
        }
-
        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");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
-               if (account->auto_bcc)
+               if (account->auto_bcc && mode != COMPOSE_REEDIT)
                        gtk_entry_set_text(GTK_ENTRY(bcc_entry),
                                           account->auto_bcc);
+#endif
        }
-       if (account->set_autoreplyto) {
+       if (account->set_autoreplyto && account->auto_replyto && mode != COMPOSE_REEDIT) {
+               compose_entry_append(compose, account->auto_replyto, COMPOSE_REPLYTO);
+#if 0 /* NEW COMPOSE GUI */
                compose->use_replyto = TRUE;
                menuitem = gtk_item_factory_get_item(ifactory,
                                                     "/Message/Reply to");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
-               if (account->auto_replyto)
-                       gtk_entry_set_text(GTK_ENTRY(reply_entry),
-                                          account->auto_replyto);
+               gtk_entry_set_text(GTK_ENTRY(reply_entry),
+                                  account->auto_replyto);
+#endif
+       }
+       if (account->protocol != A_NNTP) {
+               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), _("To:"));
+       } else {
+               gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), _("Newsgroups:"));
        }
 
        menuitem = gtk_item_factory_get_item(ifactory, "/Tool/Show ruler");
@@ -3158,15 +4344,17 @@ static Compose *compose_create(PrefsAccount *account)
 #endif /* USE_GPGME */
 
        addressbook_set_target_compose(compose);
+       compose_set_template_menu(compose);
 
        compose_list = g_list_append(compose_list, compose);
 
-       /*
+#if 0 /* NEW COMPOSE GUI */
        compose->use_to         = FALSE;
        compose->use_cc         = FALSE;
-       */
-       compose->use_attach     = FALSE;
+       compose->use_attach     = TRUE;
+#endif
 
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_bcc) {
                gtk_widget_hide(bcc_hbox);
                gtk_widget_hide(bcc_entry);
@@ -3182,8 +4370,9 @@ static Compose *compose_create(PrefsAccount *account)
                gtk_widget_hide(followup_entry);
                gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
        }
-       gtk_widget_hide(ruler_hbox);
-
+#endif
+       if (!prefs_common.show_ruler)
+               gtk_widget_hide(ruler_hbox);
 
        select_account(compose, account);
 
@@ -3191,12 +4380,12 @@ static Compose *compose_create(PrefsAccount *account)
 }
 
 #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_mail_queue_send.xpm"
 #include "pixmaps/tb_address_book.xpm"
 
 #define CREATE_TOOLBAR_ICON(xpm_d) \
@@ -3238,8 +4427,8 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
                                           "Send",
                                           icon_wid, toolbar_send_cb, compose);
 
-       CREATE_TOOLBAR_ICON(stock_mail_send_xpm);
-       //CREATE_TOOLBAR_ICON(tb_mail_queue_send_xpm);
+       CREATE_TOOLBAR_ICON(stock_mail_send_queue_xpm);
+       /* CREATE_TOOLBAR_ICON(tb_mail_queue_send_xpm); */
        sendl_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                           _("Send later"),
                                           _("Put into queue folder and send later"),
@@ -3296,7 +4485,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
        CREATE_TOOLBAR_ICON(linewrap_xpm);
        linewrap_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
                                               _("Linewrap"),
-                                              _("Wrap long lines"),
+                                              _("Wrap current paragraph"),
                                               "Linewrap",
                                               icon_wid,
                                               toolbar_linewrap_cb,
@@ -3351,8 +4540,8 @@ static GtkWidget *compose_account_option_menu_create(Compose *compose)
 
                if (ac == compose->account) def_menu = num;
 
-               name = g_strdup_printf("%s <%s> (%s)",
-                                      ac->name, ac->address, ac->account_name);
+               name = g_strdup_printf("%s: %s <%s>",
+                                      ac->account_name, ac->name, ac->address);
                MENUITEM_ADD(menu, menuitem, name, ac);
                g_free(name);
                gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
@@ -3366,6 +4555,78 @@ 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)
+               gtk_entry_set_text(GTK_ENTRY(compose->subject_entry),
+                                  tmpl->subject);
+
+       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;
@@ -3380,8 +4641,11 @@ static void compose_destroy(Compose *compose)
        g_slist_free(compose->to_list);
        slist_free_strings(compose->newsgroup_list);
        g_slist_free(compose->newsgroup_list);
+       slist_free_strings(compose->header_list);
+       g_slist_free(compose->header_list);
 
        procmsg_msginfo_free(compose->targetinfo);
+       procmsg_msginfo_free(compose->replyinfo);
 
        g_free(compose->replyto);
        g_free(compose->cc);
@@ -3394,6 +4658,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;
@@ -3451,8 +4718,8 @@ static void compose_attach_property(Compose *compose)
        GtkCList *clist = GTK_CLIST(compose->attach_clist);
        AttachInfo *ainfo;
        gint row;
-       gboolean cancelled;
        GtkOptionMenu *optmenu;
+       static gboolean cancelled;
 
        if (!clist->selection) return;
        row = GPOINTER_TO_INT(clist->selection->data);
@@ -3487,7 +4754,8 @@ static void compose_attach_property(Compose *compose)
                GtkWidget *menu;
                GtkWidget *menuitem;
 
-               gtk_main();
+               cancelled = FALSE;
+                gtk_main();
 
                if (cancelled == TRUE) {
                        gtk_widget_hide(attach_prop.window);
@@ -3583,6 +4851,7 @@ static void compose_attach_property_create(gboolean *cancelled)
        GtkWidget *hbbox;
        GtkWidget *ok_btn;
        GtkWidget *cancel_btn;
+       GList     *mime_type_list, *strlist;
 
        debug_print("Creating attach_property window...\n");
 
@@ -3607,7 +4876,32 @@ static void compose_attach_property_create(gboolean *cancelled)
        gtk_table_set_row_spacings(GTK_TABLE(table), 8);
        gtk_table_set_col_spacings(GTK_TABLE(table), 8);
 
-       SET_LABEL_AND_ENTRY(_("MIME type"), mimetype_entry, 0);
+       label = gtk_label_new(_("MIME type")); 
+       gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, (0 + 1), 
+                        GTK_FILL, 0, 0, 0); 
+       gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); 
+       mimetype_entry = gtk_combo_new(); 
+       gtk_table_attach(GTK_TABLE(table), mimetype_entry, 1, 2, 0, (0 + 1), 
+                        GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
+                        
+       /* stuff with list */
+       mime_type_list = procmime_get_mime_type_list();
+       strlist = NULL;
+       for (; mime_type_list != NULL; mime_type_list = mime_type_list->next) {
+               MimeType *type = (MimeType *) mime_type_list->data;
+               strlist = g_list_append(strlist, 
+                               g_strdup_printf("%s/%s",
+                                       type->type, type->sub_type));
+       }
+       
+       gtk_combo_set_popdown_strings(GTK_COMBO(mimetype_entry), strlist);
+
+       for (mime_type_list = strlist; mime_type_list != NULL; 
+               mime_type_list = mime_type_list->next)
+               g_free(mime_type_list->data);
+       g_list_free(strlist);
+                        
+       mimetype_entry = GTK_COMBO(mimetype_entry)->entry;                       
 
        label = gtk_label_new(_("Encoding"));
        gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
@@ -3910,7 +5204,8 @@ static void compose_set_ext_editor_sensitive(Compose *compose,
                           sensitive);
        menu_set_sensitive(ifactory, "/File/Insert file", sensitive);
        menu_set_sensitive(ifactory, "/File/Insert signature", sensitive);
-       menu_set_sensitive(ifactory, "/Edit/Wrap long lines", sensitive);
+       menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", sensitive);
+       menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", sensitive);
        menu_set_sensitive(ifactory, "/Edit/Edit with external editor",
                           sensitive);
 
@@ -4018,9 +5313,10 @@ static void toolbar_address_cb(GtkWidget *widget, gpointer data)
 
 static void select_account(Compose * compose, PrefsAccount * ac)
 {
-               compose->account = ac;
-               compose_set_title(compose);
+       compose->account = ac;
+       compose_set_title(compose);
 
+#if 0 /* NEW COMPOSE GUI */
                if (ac->protocol == A_NNTP) {
                        GtkItemFactory *ifactory;
                        GtkWidget *menuitem;
@@ -4028,7 +5324,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        ifactory = gtk_item_factory_from_widget(compose->menubar);
                        menu_set_sensitive(ifactory,
                                           "/Message/Followup to", TRUE);
-
                        gtk_widget_show(compose->newsgroups_hbox);
                        gtk_widget_show(compose->newsgroups_entry);
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
@@ -4040,6 +5335,7 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
                        gtk_check_menu_item_set_active
                                (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
+
                        menu_set_sensitive(ifactory,
                                           "/Message/To", TRUE);
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
@@ -4050,7 +5346,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        gtk_widget_hide(compose->to_entry);
                        gtk_widget_hide(compose->cc_hbox);
                        gtk_widget_hide(compose->cc_entry);
-
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
                                                  0, 0);
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
@@ -4063,7 +5358,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        ifactory = gtk_item_factory_from_widget(compose->menubar);
                        menu_set_sensitive(ifactory,
                                           "/Message/Followup to", FALSE);
-
                        gtk_entry_set_text(GTK_ENTRY(compose->newsgroups_entry), "");
                        gtk_widget_hide(compose->newsgroups_hbox);
                        gtk_widget_hide(compose->newsgroups_entry);
@@ -4081,7 +5375,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
                        gtk_check_menu_item_set_active
                                (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
-
                        gtk_widget_show(compose->to_hbox);
                        gtk_widget_show(compose->to_entry);
                        gtk_widget_show(compose->cc_hbox);
@@ -4093,6 +5386,7 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                                                  3, 4);
                }
                gtk_widget_queue_resize(compose->table_vbox);
+#endif
 }
 
 static void account_activated(GtkMenuItem *menuitem, gpointer data)
@@ -4162,7 +5456,6 @@ static void compose_send_cb(gpointer data, guint action, GtkWidget *widget)
        gint val;
 
        val = compose_send(compose);
-
        if (val == 0) gtk_widget_destroy(compose->window);
 }
 
@@ -4170,38 +5463,10 @@ static void compose_send_later_cb(gpointer data, guint action,
                                  GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
-       gchar tmp[22];
-       gchar *to, *newsgroups;
-
-       to = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       newsgroups = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*to == '\0' && *newsgroups == '\0') {
-               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(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)
@@ -4211,15 +5476,8 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
        gchar *tmp;
 
        draft = folder_get_default_draft();
-       folder_item_scan(draft);
 
-       if (procmsg_msg_exist(compose->targetinfo) &&
-           compose->targetinfo->folder == draft) {
-               if (folder_item_remove_msg(draft,
-                                          compose->targetinfo->msgnum) < 0)
-                       g_warning(_("can't remove the old draft message\n"));
-       }
-       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) {
@@ -4227,15 +5485,24 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                return;
        }
 
+       folder_item_scan(draft);
        if (folder_item_add_msg(draft, tmp, TRUE) < 0) {
                unlink(tmp);
                g_free(tmp);
                return;
        }
-
        g_free(tmp);
 
-       //folderview_scan_folder_a(DRAFT_DIR, TRUE);
+       if (compose->mode == COMPOSE_REEDIT) {
+               compose_remove_reedit_target(compose);
+               if (compose->targetinfo &&
+                   compose->targetinfo->folder != draft)
+                       folderview_update_item(compose->targetinfo->folder,
+                                              TRUE);
+       }
+
+       folder_item_scan(draft);
+       folderview_update_item(draft, TRUE);
 
        gtk_widget_destroy(compose->window);
 }
@@ -4243,24 +5510,43 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
-       gchar *file;
+       GList *file_list;
+
+       if (compose->bounce_filename != NULL)
+               return;
+
+       file_list = filesel_select_multiple_files(_("Select file"), NULL);
 
-       file = filesel_select_file(_("Select file"), NULL);
+       if (file_list) {
+               GList *tmp;
 
-       if (file)
-               compose_attach_append(compose, file, MIME_UNKNOWN);
+               for ( tmp = file_list; tmp; tmp = tmp->next) {
+                       gchar *file = (gchar *) tmp->data;
+                       compose_attach_append(compose, file, MIME_UNKNOWN);
+                       g_free(file);
+               }
+               g_list_free(file_list);
+       }               
 }
 
 static void compose_insert_file_cb(gpointer data, guint action,
                                   GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
-       gchar *file;
+       GList *file_list;
 
-       file = filesel_select_file(_("Select file"), NULL);
+       file_list = filesel_select_multiple_files(_("Select file"), NULL);
 
-       if (file)
-               compose_insert_file(compose, file);
+       if (file_list) {
+               GList *tmp;
+
+               for ( tmp = file_list; tmp; tmp = tmp->next) {
+                       gchar *file = (gchar *) tmp->data;
+                       compose_insert_file(compose, file);
+                       g_free(file);
+               }
+               g_list_free(file_list);
+       }
 }
 
 static gint compose_delete_cb(GtkWidget *widget, GdkEventAny *event,
@@ -4295,7 +5581,12 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
                        return;
                }
        }
-
+#if USE_PSPELL
+        if (compose->gtkpspell) {
+               gtkpspell_detach(compose->gtkpspell);
+               compose->gtkpspell = gtkpspell_delete(compose->gtkpspell);
+        }
+#endif
        gtk_widget_destroy(compose->window);
 }
 
@@ -4306,6 +5597,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)
 {
@@ -4319,6 +5621,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 &&
@@ -4381,6 +5693,7 @@ static void compose_key_press_cb(GtkWidget *widget, GdkEventKey *event,
 }
 #endif
 
+#if 0 /* NEW COMPOSE GUI */
 static void compose_toggle_to_cb(gpointer data, guint action,
                                 GtkWidget *widget)
 {
@@ -4520,6 +5833,7 @@ static void compose_toggle_attach_cb(gpointer data, guint action,
                compose->use_attach = FALSE;
        }
 }
+#endif
 
 #if USE_GPGME
 static void compose_toggle_sign_cb(gpointer data, guint action,
@@ -4599,6 +5913,7 @@ static void compose_insert_drag_received_cb (GtkWidget            *widget,
        g_list_free(list);
 }
 
+#if 0 /* NEW COMPOSE GUI */
 static void to_activated(GtkWidget *widget, Compose *compose)
 {
        if (GTK_WIDGET_VISIBLE(compose->newsgroups_entry))
@@ -4660,6 +5975,7 @@ static void followupto_activated(GtkWidget *widget, Compose *compose)
 {
        gtk_widget_grab_focus(compose->text);
 }
+#endif
 
 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
                                             GtkWidget *widget)
@@ -4672,38 +5988,106 @@ 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);
        }
+}
 
-       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."));
+void compose_headerentry_changed_cb(GtkWidget *entry,
+                                   ComposeHeaderEntry *headerentry)
+{
+       if (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) != 0) {
+               headerentry->compose->header_list =
+                       g_slist_append(headerentry->compose->header_list,
+                                      headerentry);
+               compose_create_header_entry(headerentry->compose);
+               gtk_signal_disconnect_by_func
+                       (GTK_OBJECT(entry),
+                        GTK_SIGNAL_FUNC(compose_headerentry_changed_cb),
+                        headerentry);
+       }
+}
 
-       return quote_fmt_get_buffer();
+/**
+ * undo_set_undo:
+ *
+ * Change the sensivity of the menuentries undo and redo
+ **/
+static void compose_set_undo(UndoMain *undostruct, gint undo_state, 
+                            gint redo_state, GtkWidget *changewidget) 
+{
+       GtkItemFactory *ifactory;
+        debug_print ("Set_undo.  UNDO:%i  REDO:%i\n",
+                 undo_state,
+                 redo_state);
+
+       g_return_if_fail (changewidget != NULL);
+
+       ifactory = gtk_item_factory_from_widget(changewidget);
+
+       /* Set undo */
+        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;
+        }
+
+        /* Set redo*/
+        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;
+        }
 }