Keep Bcc and Reply-To fields in the compose window visible if they are
[claws.git] / src / compose.c
index a05059d356d72c4909d2fe3f8d4933ce5199a063..bf745dab13e270505e38db51a785e04f5f0f661a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999,2000 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2001 Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -35,7 +35,6 @@
 #include <gtk/gtkclist.h>
 #include <gtk/gtkctree.h>
 #include <gtk/gtkvpaned.h>
-#include <gtk/gtktext.h>
 #include <gtk/gtkentry.h>
 #include <gtk/gtkeditable.h>
 #include <gtk/gtkwindow.h>
@@ -67,6 +66,9 @@
 #  include <wctype.h>
 #endif
 
+
+#include "gtkstext.h"
+
 #include "intl.h"
 #include "main.h"
 #include "mainwindow.h"
@@ -77,6 +79,7 @@
 #include "menu.h"
 #include "send.h"
 #include "news.h"
+#include "customheader.h"
 #include "prefs_common.h"
 #include "prefs_account.h"
 #include "account.h"
 #  include "rfc2015.h"
 #endif
 
+#include "quote_fmt.h"
+
 typedef enum
 {
        COL_MIMETYPE = 0,
@@ -137,7 +142,10 @@ static gchar *compose_quote_parse_fmt              (Compose        *compose,
                                                 const gchar    *fmt);
 static void compose_reply_set_entry            (Compose        *compose,
                                                 MsgInfo        *msginfo,
-                                                gboolean        to_all);
+                                                gboolean        to_all,
+                                                gboolean        to_sender,
+                                                gboolean
+                                                followup_and_reply_to);
 static void compose_reedit_set_entry           (Compose        *compose,
                                                 MsgInfo        *msginfo);
 static void compose_insert_sig                 (Compose        *compose);
@@ -146,10 +154,15 @@ static void compose_insert_file                   (Compose        *compose,
 static void compose_attach_append              (Compose        *compose,
                                                 const gchar    *file,
                                                 ContentType     cnttype);
+static void compose_attach_append_with_type(Compose *compose,
+                                           const gchar *file,
+                                           const gchar *type,
+                                           ContentType cnttype);
 static void compose_wrap_line                  (Compose        *compose);
 static void compose_set_title                  (Compose        *compose);
 
-static gint compose_send                       (Compose        *compose);
+static PrefsAccount *compose_current_mail_account(void);
+/* static gint compose_send                    (Compose        *compose); */
 static gint compose_write_to_file              (Compose        *compose,
                                                 const gchar    *file,
                                                 gboolean        is_draft);
@@ -200,7 +213,7 @@ static void compose_input_cb                        (gpointer           data,
 static void compose_set_ext_editor_sensitive   (Compose           *compose,
                                                 gboolean           sensitive);
 
-static gint calc_cursor_xpos   (GtkText        *text,
+static gint calc_cursor_xpos   (GtkSText       *text,
                                 gint            extra,
                                 gint            char_width);
 
@@ -229,6 +242,7 @@ 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 account_activated          (GtkMenuItem    *menuitem,
                                         gpointer        data);
 
@@ -327,6 +341,8 @@ static void compose_toggle_encrypt_cb       (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
 #endif
+static void compose_toggle_return_receipt_cb(gpointer data, guint action,
+                                            GtkWidget *widget);
 
 static void compose_attach_drag_received_cb (GtkWidget         *widget,
                                             GdkDragContext     *drag_context,
@@ -359,6 +375,18 @@ 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);
+
+static gchar *compose_quote_fmt                (Compose        *compose,
+                                        MsgInfo        *msginfo,
+                                        const gchar    *fmt,
+                                        const gchar    * qmark);
+
+static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
+                                 gboolean to_all,
+                                 gboolean ignore_replyto,
+                                 gboolean followup_and_reply_to);
 
 static GtkItemFactoryEntry compose_popup_entries[] =
 {
@@ -411,6 +439,8 @@ static GtkItemFactoryEntry compose_entries[] =
        {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},
@@ -423,17 +453,17 @@ static GtkTargetEntry compose_mime_types[] =
        {"text/uri-list", 0, 0}
 };
 
-void compose_new(PrefsAccount *account)
+Compose * compose_new(PrefsAccount *account)
 {
-       compose_new_with_recipient(account, NULL);
+       return compose_new_with_recipient(account, NULL);
 }
 
-void compose_new_with_recipient(PrefsAccount *account, const gchar *to)
+Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
 {
        Compose *compose;
 
        if (!account) account = cur_account;
-       g_return_if_fail(account != NULL);
+       g_return_val_if_fail(account != NULL, NULL);
 
        compose = compose_create(account);
        compose->mode = COMPOSE_NEW;
@@ -441,7 +471,7 @@ void compose_new_with_recipient(PrefsAccount *account, const gchar *to)
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
        gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
-       gtk_text_set_point(GTK_TEXT(compose->text), 0);
+       gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
        if (account->protocol != A_NNTP) {
                if (to) {
@@ -449,15 +479,73 @@ void compose_new_with_recipient(PrefsAccount *account, const gchar *to)
                        gtk_widget_grab_focus(compose->subject_entry);
                } else
                        gtk_widget_grab_focus(compose->to_entry);
-       } else
-               gtk_widget_grab_focus(compose->newsgroups_entry);
+       } 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);
+       }
+
+       return compose;
+}
+
+#define CHANGE_FLAGS(msginfo) \
+{ \
+if (msginfo->folder->folder->change_flags != NULL) \
+msginfo->folder->folder->change_flags(msginfo->folder->folder, \
+                                     msginfo->folder, \
+                                     msginfo); \
 }
 
-void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all)
+/*
+Compose * compose_new_followup_and_replyto(PrefsAccount *account,
+                                          const gchar *followupto, gchar * to)
+{
+       Compose *compose;
+
+       if (!account) account = cur_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;
+
+       if (prefs_common.auto_sig)
+               compose_insert_sig(compose);
+       gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
+       gtk_stext_set_point(GTK_STEXT(compose->text), 0);
+
+       compose_entry_append(compose, to, COMPOSE_TO);
+       compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
+       gtk_widget_grab_focus(compose->subject_entry);
+
+       return compose;
+}
+*/
+
+void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
+                  gboolean ignore_replyto)
+{
+       compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE);
+}
+
+void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
+                                  gboolean to_all,
+                                  gboolean ignore_replyto)
+{
+       compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE);
+}
+
+static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
+                                 gboolean to_all,
+                                 gboolean ignore_replyto,
+                                 gboolean followup_and_reply_to)
 {
        Compose *compose;
        PrefsAccount *account;
-       GtkText *text;
+       PrefsAccount *reply_account;
+       GtkSText *text;
 
        g_return_if_fail(msginfo != NULL);
        g_return_if_fail(msginfo->folder != NULL);
@@ -466,17 +554,39 @@ void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all)
        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);
+               if (!reply_account)
+                       reply_account = compose_current_mail_account();
+               if (!reply_account)
+                       return;
+       } else
+               reply_account = account;
+
        MSG_UNSET_FLAGS(msginfo->flags, MSG_FORWARDED);
        MSG_SET_FLAGS(msginfo->flags, MSG_REPLIED);
 
-       compose = compose_create(account);
+       CHANGE_FLAGS(msginfo);
+
+       compose = compose_create(reply_account);
        compose->mode = COMPOSE_REPLY;
 
+
+       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;
+       }
+
        if (compose_parse_header(compose, msginfo) < 0) return;
-       compose_reply_set_entry(compose, msginfo, to_all);
+       compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
+                               followup_and_reply_to);
 
-       text = GTK_TEXT(compose->text);
-       gtk_text_freeze(text);
+       text = GTK_STEXT(compose->text);
+       gtk_stext_freeze(text);
 
        if (quote) {
                FILE *fp;
@@ -485,11 +595,27 @@ void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all)
                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 = "> ";
+
+                       quote_str = compose_quote_fmt(compose, msginfo,
+                                                     prefs_common.quotefmt,
+                                                     qmark);
+
+                       /*
                        quote_str = compose_quote_parse_fmt
                                (compose, msginfo, prefs_common.quotefmt);
-                       gtk_text_insert(text, NULL, NULL, NULL, quote_str, -1);
-                       g_free(quote_str);
-                       compose_quote_file(compose, msginfo, fp);
+                       */
+
+                       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);
                }
        }
@@ -497,37 +623,261 @@ void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all)
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
        gtk_editable_set_position(GTK_EDITABLE(text), 0);
-       gtk_text_set_point(text, 0);
+       gtk_stext_set_point(text, 0);
 
-       gtk_text_thaw(text);
+       gtk_stext_thaw(text);
        gtk_widget_grab_focus(compose->text);
 }
 
+
+static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
+{
+       gchar *base;
+       gchar *filename;
+
+       g_return_val_if_fail(mimeinfo != NULL, NULL);
+
+       base = mimeinfo->filename ? mimeinfo->filename
+               : mimeinfo->name ? mimeinfo->name : NULL;
+
+       if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
+               filename = g_strdup_printf("%s%smimetmp%i.html",
+                                          get_mime_tmp_dir(),
+                                          G_DIR_SEPARATOR_S,
+                                          mimeinfo);
+               return filename;
+       }
+       else {
+               base = base ? base : "";
+               base = g_basename(base);
+               if (*base == '\0') {
+                       filename = g_strdup_printf("%s%smimetmp%i",
+                                                  get_mime_tmp_dir(),
+                                                  G_DIR_SEPARATOR_S,
+                                                  mimeinfo);
+                       return filename;
+               }
+       }
+
+       filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
+                              base, NULL);
+
+       return filename;
+}
+
+static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
+{
+       gchar *filename;
+
+       if (!partinfo) return;
+
+       filename = procmime_get_file_name(partinfo);
+
+       if (procmime_get_part(filename, source, partinfo) < 0)
+               alertpanel_error
+                       (_("Can't get the part of multipart message."));
+
+       return filename;
+}
+
+static void compose_attach_parts(Compose * compose,
+                                MsgInfo * msginfo)
+{
+
+       FILE *fp;
+       gchar *file;
+       MimeInfo *mimeinfo;
+       MsgInfo *tmpmsginfo;
+       gchar *p;
+       gchar *boundary;
+       gint boundary_len = 0;
+       gchar buf[BUFFSIZE];
+       glong fpos, prev_fpos;
+       gint npart;
+       gchar * source;
+       gchar * filename;
+
+       g_return_if_fail(msginfo != NULL);
+       
+#if USE_GPGME
+       for (;;) {
+               if ((fp = procmsg_open_message(msginfo)) == NULL) return;
+               mimeinfo = procmime_scan_mime_header(fp);
+               if (!mimeinfo) break;
+
+               if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
+                   rfc2015_is_encrypted(mimeinfo)) {
+                       MSG_SET_FLAGS(msginfo->flags, MSG_ENCRYPTED);
+               }
+               if (MSG_IS_ENCRYPTED(msginfo->flags) &&
+                   !msginfo->plaintext_file  &&
+                   !msginfo->decryption_failed) {
+                       rfc2015_decrypt_message(msginfo, mimeinfo, fp);
+                       if (msginfo->plaintext_file &&
+                           !msginfo->decryption_failed) {
+                               fclose(fp);
+                               continue;
+                       }
+               }
+               
+               break;
+       }
+#else /* !USE_GPGME */
+       if ((fp = procmsg_open_message(msginfo)) == NULL) return;
+       mimeinfo = procmime_scan_mime_header(fp);
+#endif /* USE_GPGME */
+
+       fclose(fp);
+       if (!mimeinfo) return;
+       if (mimeinfo->mime_type == MIME_TEXT)
+               return;
+
+       if ((fp = procmsg_open_message(msginfo)) == NULL) return;
+
+       g_return_if_fail(mimeinfo != NULL);
+       g_return_if_fail(mimeinfo->mime_type != MIME_TEXT);
+
+       if (mimeinfo->mime_type == MIME_MULTIPART) {
+               g_return_if_fail(mimeinfo->boundary != NULL);
+               g_return_if_fail(mimeinfo->sub == NULL);
+       }
+       g_return_if_fail(fp != NULL);
+
+       boundary = mimeinfo->boundary;
+
+       if (boundary) {
+               boundary_len = strlen(boundary);
+
+               /* look for first boundary */
+               while ((p = fgets(buf, sizeof(buf), fp)) != NULL)
+                       if (IS_BOUNDARY(buf, boundary, boundary_len)) break;
+               if (!p) {
+                       fclose(fp);
+                       return;
+               }
+       }
+
+       if ((fpos = ftell(fp)) < 0) {
+               perror("ftell");
+               fclose(fp);
+               return;
+       }
+
+       for (npart = 0;; npart++) {
+               MimeInfo *partinfo;
+               gboolean eom = FALSE;
+
+               prev_fpos = fpos;
+
+               partinfo = procmime_scan_mime_header(fp);
+               if (!partinfo) break;
+
+               if (npart != 0)
+                       procmime_mimeinfo_insert(mimeinfo, partinfo);
+               else
+                       procmime_mimeinfo_free(partinfo);
+
+               /* look for next boundary */
+               buf[0] = '\0';
+               while ((p = fgets(buf, sizeof(buf), fp)) != NULL) {
+                       if (IS_BOUNDARY(buf, boundary, boundary_len)) {
+                               if (buf[2 + boundary_len]     == '-' &&
+                                   buf[2 + boundary_len + 1] == '-')
+                                       eom = TRUE;
+                               break;
+                       }
+               }
+               if (p == NULL)
+                       eom = TRUE;     /* broken MIME message */
+               fpos = ftell(fp);
+
+               partinfo->size = fpos - prev_fpos - strlen(buf);
+
+               if (eom) break;
+       }
+
+       source = procmsg_get_message_file_path(msginfo);
+
+       g_return_if_fail(mimeinfo != NULL);
+
+       if (!mimeinfo->main && mimeinfo->parent)
+               {
+                       filename = mime_extract_file(source, mimeinfo);
+
+                       compose_attach_append_with_type(compose, filename,
+                                                       mimeinfo->content_type,
+                                                       mimeinfo->mime_type);
+
+                       g_free(filename);
+               }
+
+       if (mimeinfo->sub && mimeinfo->sub->children)
+               {
+                       filename = mime_extract_file(source, mimeinfo->sub);
+
+                       compose_attach_append_with_type(compose, filename,
+                                                       mimeinfo->content_type,
+                                                       mimeinfo->sub->mime_type);
+
+                       g_free(filename);
+               }
+
+       if (mimeinfo->children) {
+               MimeInfo *child;
+
+               child = mimeinfo->children;
+               while (child) {
+                       filename = mime_extract_file(source, child);
+
+                       compose_attach_append_with_type(compose, filename,
+                                                       child->content_type,
+                                                       child->mime_type);
+
+                       g_free(filename);
+
+                       child = child->next;
+               }
+       }
+
+       fclose(fp);
+
+       procmime_mimeinfo_free_all(mimeinfo);
+}
+
+
 #define INSERT_FW_HEADER(var, hdr) \
 if (msginfo->var && *msginfo->var) { \
-       gtk_text_insert(text, NULL, NULL, NULL, hdr, -1); \
-       gtk_text_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
-       gtk_text_insert(text, NULL, NULL, NULL, "\n", 1); \
+       gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
+       gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
+       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
 }
 
-void compose_forward(MsgInfo *msginfo, gboolean as_attach)
+Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
+                         gboolean as_attach)
 {
        Compose *compose;
-       PrefsAccount *account;
-       GtkText *text;
+       /*      PrefsAccount *account; */
+       GtkSText *text;
        FILE *fp;
        gchar buf[BUFFSIZE];
 
-       g_return_if_fail(msginfo != NULL);
-       g_return_if_fail(msginfo->folder != NULL);
+       g_return_val_if_fail(msginfo != NULL, NULL);
+       g_return_val_if_fail(msginfo->folder != NULL, NULL);
 
-       account = msginfo->folder->folder->account;
-       if (!account) account = cur_account;
-       g_return_if_fail(account != 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);
 
        MSG_UNSET_FLAGS(msginfo->flags, MSG_REPLIED);
        MSG_SET_FLAGS(msginfo->flags, MSG_FORWARDED);
 
+       CHANGE_FLAGS(msginfo);
+
        compose = compose_create(account);
        compose->mode = COMPOSE_FORWARD;
 
@@ -537,8 +887,8 @@ void compose_forward(MsgInfo *msginfo, gboolean as_attach)
                                      msginfo->subject);
        }
 
-       text = GTK_TEXT(compose->text);
-       gtk_text_freeze(text);
+       text = GTK_STEXT(compose->text);
+       gtk_stext_freeze(text);
 
        if (as_attach) {
                gchar *msgfile;
@@ -552,44 +902,55 @@ void compose_forward(MsgInfo *msginfo, gboolean as_attach)
 
                g_free(msgfile);
        } else {
+               FILE *fp;
+               gchar *quote_str;
+
                if ((fp = procmime_get_text_part(msginfo)) == NULL)
                        g_warning(_("Can't get text part\n"));
                else {
-                       /* insert header */
-                       gtk_text_insert(text, NULL, NULL, NULL,
-                                       _("\n\nBegin forwarded message:\n\n"), -1);
-                       INSERT_FW_HEADER(date,       "Date: ");
-                       INSERT_FW_HEADER(from,       "From: ");
-                       INSERT_FW_HEADER(to,         "To: ");
-                       INSERT_FW_HEADER(newsgroups, "Newsgroups: ");
-                       INSERT_FW_HEADER(subject,    "Subject: ");
-                       gtk_text_insert(text, NULL, NULL, NULL, "\n\n", 2);
-
-                       /* forward body */
-                       while (fgets(buf, sizeof(buf), fp) != NULL)
-                               gtk_text_insert(text, NULL, NULL, NULL,
-                                               buf, -1);
+                       gchar * qmark;
+
+                       if (prefs_common.fw_quotemark &&
+                           *prefs_common.fw_quotemark)
+                               qmark = prefs_common.fw_quotemark;
+                       else
+                               qmark = "> ";
+
+                       quote_str = compose_quote_fmt(compose, msginfo,
+                                                     prefs_common.fw_quotefmt,
+                                                     qmark);
+
+                       if (quote_str != NULL)
+                               gtk_stext_insert(text, NULL, NULL, NULL,
+                                                quote_str, -1);
+
                        fclose(fp);
                }
+
+               compose_attach_parts(compose, msginfo);
        }
 
        if (prefs_common.auto_sig)
                compose_insert_sig(compose);
        gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
-       gtk_text_set_point(GTK_TEXT(compose->text), 0);
+       gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
-       gtk_text_thaw(text);
+       gtk_stext_thaw(text);
        if (account->protocol != A_NNTP)
                gtk_widget_grab_focus(compose->to_entry);
        else
                gtk_widget_grab_focus(compose->newsgroups_entry);
+
+       return compose;
 }
 
+#undef INSERT_FW_HEADER
+
 void compose_reedit(MsgInfo *msginfo)
 {
        Compose *compose;
        PrefsAccount *account;
-       GtkText *text;
+       GtkSText *text;
        FILE *fp;
        gchar buf[BUFFSIZE];
 
@@ -607,18 +968,19 @@ void compose_reedit(MsgInfo *msginfo)
        if (compose_parse_header(compose, msginfo) < 0) return;
        compose_reedit_set_entry(compose, msginfo);
 
-       text = GTK_TEXT(compose->text);
-       gtk_text_freeze(text);
+       text = GTK_STEXT(compose->text);
+       gtk_stext_freeze(text);
 
        if ((fp = procmime_get_text_part(msginfo)) == NULL)
                g_warning(_("Can't get text part\n"));
        else {
                while (fgets(buf, sizeof(buf), fp) != NULL)
-                       gtk_text_insert(text, NULL, NULL, NULL, buf, -1);
+                       gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
                fclose(fp);
        }
+       compose_attach_parts(compose, msginfo);
 
-       gtk_text_thaw(text);
+       gtk_stext_thaw(text);
        gtk_widget_grab_focus(compose->text);
 }
 
@@ -642,6 +1004,9 @@ void compose_entry_append(Compose *compose, const gchar *address,
        case COMPOSE_BCC:
                entry = GTK_ENTRY(compose->bcc_entry);
                break;
+       case COMPOSE_NEWSGROUPS:
+               entry = GTK_ENTRY(compose->newsgroups_entry);
+               break;
        case COMPOSE_TO:
        default:
                entry = GTK_ENTRY(compose->to_entry);
@@ -792,9 +1157,10 @@ 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)
 {
-       GtkText *text = GTK_TEXT(compose->text);
+       GtkSText *text = GTK_STEXT(compose->text);
        gchar *qmark;
        gchar *quote_str;
        GdkColor *qcolor = NULL;
@@ -806,7 +1172,7 @@ static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
        gint str_len;
        gint ch_len;
 
-       /* if (prefs_common.enable_color) qcolor = &quote_color; */
+       // if (prefs_common.enable_color) qcolor = &quote_color;
        if (prefs_common.quotemark && *prefs_common.quotemark)
                qmark = prefs_common.quotemark;
        else
@@ -818,9 +1184,9 @@ static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
        if (!prefs_common.linewrap_quote ||
            prefs_common.linewrap_len <= qlen) {
                while (fgets(buf, sizeof(buf), fp) != NULL) {
-                       gtk_text_insert(text, NULL, qcolor, NULL,
+                       gtk_stext_insert(text, NULL, qcolor, NULL,
                                        quote_str, -1);
-                       gtk_text_insert(text, NULL, qcolor, NULL, buf, -1);
+                       gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
                }
                g_free(quote_str);
                return;
@@ -833,10 +1199,10 @@ static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
                str_len = strlen(buf);
 
                if (str_len <= wrap_len) {
-                       gtk_text_insert(text, NULL, qcolor, NULL,
+                       gtk_stext_insert(text, NULL, qcolor, NULL,
                                        quote_str, -1);
-                       gtk_text_insert(text, NULL, qcolor, NULL, buf, -1);
-                       gtk_text_insert(text, NULL, NULL, NULL, "\n", 1);
+                       gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
+                       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
                        continue;
                }
 
@@ -853,18 +1219,18 @@ static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
                        }
 
                        if (cur_len + ch_len > wrap_len && line_len > 0) {
-                               gtk_text_insert(text, NULL, qcolor, NULL,
+                               gtk_stext_insert(text, NULL, qcolor, NULL,
                                                quote_str, -1);
 
                                if (isspace(*(linep - 1)))
-                                       gtk_text_insert(text, NULL,
+                                       gtk_stext_insert(text, NULL,
                                                        qcolor, NULL,
                                                        leftp, line_len - 1);
                                else
-                                       gtk_text_insert(text, NULL,
+                                       gtk_stext_insert(text, NULL,
                                                        qcolor, NULL,
                                                        leftp, line_len);
-                               gtk_text_insert(text, NULL, NULL, NULL,
+                               gtk_stext_insert(text, NULL, NULL, NULL,
                                                "\n", 1);
 
                                leftp = linep;
@@ -883,16 +1249,18 @@ static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
                }
 
                if (*leftp) {
-                       gtk_text_insert(text, NULL, qcolor, NULL,
+                       gtk_stext_insert(text, NULL, qcolor, NULL,
                                        quote_str, -1);
-                       gtk_text_insert(text, NULL, qcolor, NULL, leftp, -1);
-                       gtk_text_insert(text, NULL, NULL, NULL, "\n", 1);
+                       gtk_stext_insert(text, NULL, qcolor, NULL, leftp, -1);
+                       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
                }
        }
 
        g_free(quote_str);
 }
+*/
 
+/*
 static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
                                      const gchar *fmt)
 {
@@ -936,7 +1304,7 @@ static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
                                str = msginfo->from;
                                sp++;
                                break;
-                       case 'I':       /* initial */
+                       case 'I':
                                if (!msginfo->fromname) {sp++; break;}
                                p = msginfo->fromname;
                                tmp[0] = tmp[1] = tmp[2] = '\0';
@@ -1047,9 +1415,11 @@ static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
 
        return ext_str;
 }
+*/
 
 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
-                                   gboolean to_all)
+                                   gboolean to_all, gboolean ignore_replyto,
+                                   gboolean followup_and_reply_to)
 {
        GSList *cc_list;
        GSList *cur;
@@ -1059,10 +1429,11 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
        g_return_if_fail(compose->account != NULL);
        g_return_if_fail(msginfo != NULL);
 
-       if (compose->account->protocol != A_NNTP)
+       if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
                gtk_entry_set_text(GTK_ENTRY(compose->to_entry),
-                                  compose->replyto ? compose->replyto
-                                  : msginfo->from ? msginfo->from : "");
+                                  ( (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
@@ -1161,6 +1532,8 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
        }
 }
 
+#undef SET_ENTRY
+
 static void compose_insert_sig(Compose *compose)
 {
        gchar *sigfile;
@@ -1168,7 +1541,7 @@ static void compose_insert_sig(Compose *compose)
        if (compose->account && compose->account->sig_path)
                sigfile = g_strdup(compose->account->sig_path);
        else {
-               sigfile = g_strconcat(g_get_home_dir(), G_DIR_SEPARATOR_S,
+               sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
                                      DEFAULT_SIGNATURE, NULL);
        }
 
@@ -1177,11 +1550,11 @@ static void compose_insert_sig(Compose *compose)
                return;
        }
 
-       gtk_text_insert(GTK_TEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
+       gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
        if (prefs_common.sig_sep) {
-               gtk_text_insert(GTK_TEXT(compose->text), NULL, NULL, NULL,
+               gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
                                prefs_common.sig_sep, -1);
-               gtk_text_insert(GTK_TEXT(compose->text), NULL, NULL, NULL,
+               gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
                                "\n", 1);
        }
 
@@ -1191,7 +1564,7 @@ static void compose_insert_sig(Compose *compose)
 
 static void compose_insert_file(Compose *compose, const gchar *file)
 {
-       GtkText *text = GTK_TEXT(compose->text);
+       GtkSText *text = GTK_STEXT(compose->text);
        gchar buf[BUFFSIZE];
        FILE *fp;
 
@@ -1202,16 +1575,83 @@ static void compose_insert_file(Compose *compose, const gchar *file)
                return;
        }
 
-       gtk_text_freeze(text);
+       gtk_stext_freeze(text);
 
        while (fgets(buf, sizeof(buf), fp) != NULL)
-               gtk_text_insert(text, NULL, NULL, NULL, buf, -1);
+               gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
 
-       gtk_text_thaw(text);
+       gtk_stext_thaw(text);
 
        fclose(fp);
 }
 
+static void compose_attach_info(Compose * compose, AttachInfo * ainfo,
+                               ContentType cnttype)
+{
+       gchar *text[N_ATTACH_COLS];
+       gint row;
+
+       text[COL_MIMETYPE] = ainfo->content_type;
+       text[COL_SIZE] = to_human_readable(ainfo->size);
+       text[COL_NAME] = ainfo->name;
+
+       row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
+       gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
+
+       if (cnttype != MIME_MESSAGE_RFC822)
+               compose_changed_cb(NULL, compose);
+}
+
+static void compose_attach_append_with_type(Compose *compose,
+                                           const gchar *file,
+                                           const gchar *type,
+                                           ContentType cnttype)
+{
+       AttachInfo *ainfo;
+       off_t size;
+
+       if (!is_file_exist(file)) {
+               g_warning(_("File %s doesn't exist\n"), file);
+               return;
+       }
+       if ((size = get_file_size(file)) < 0) {
+               g_warning(_("Can't get file size of %s\n"), file);
+               return;
+       }
+       if (size == 0) {
+               alertpanel_notice(_("File %s is empty\n"), file);
+               return;
+       }
+
+       if (!compose->use_attach) {
+               GtkItemFactory *ifactory;
+               GtkWidget *menuitem;
+
+               ifactory = gtk_item_factory_from_widget(compose->menubar);
+               menuitem = gtk_item_factory_get_item(ifactory,
+                                                    "/Message/Attach");
+               gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
+                                              TRUE);
+       }
+
+       ainfo = g_new0(AttachInfo, 1);
+       ainfo->file = g_strdup(file);
+
+       if (cnttype == MIME_MESSAGE_RFC822) {
+               ainfo->encoding = ENC_7BIT;
+               ainfo->name = g_strdup_printf(_("Message: %s"),
+                                             g_basename(file));
+       } else {
+               ainfo->encoding = ENC_BASE64;
+               ainfo->name = g_strdup(g_basename(file));
+       }
+
+       ainfo->content_type = g_strdup(type);
+       ainfo->size = size;
+
+       compose_attach_info(compose, ainfo, cnttype);
+}
+
 static void compose_attach_append(Compose *compose, const gchar *file,
                                  ContentType cnttype)
 {
@@ -1262,36 +1702,28 @@ static void compose_attach_append(Compose *compose, const gchar *file,
        }
        ainfo->size = size;
 
-       text[COL_MIMETYPE] = ainfo->content_type;
-       text[COL_SIZE] = to_human_readable(size);
-       text[COL_NAME] = ainfo->name;
-
-       row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
-       gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
-
-       if (cnttype != MIME_MESSAGE_RFC822)
-               compose_changed_cb(NULL, compose);
+       compose_attach_info(compose, ainfo, cnttype);
 }
 
 static void compose_wrap_line(Compose *compose)
 {
-       GtkText *text = GTK_TEXT(compose->text);
+       GtkSText *text = GTK_STEXT(compose->text);
        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];
 
-       gtk_text_freeze(text);
+       gtk_stext_freeze(text);
 
-       text_len = gtk_text_get_length(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_TEXT_INDEX(text, cur_pos));
+                               (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
                else {
-                       cbuf[0] = GTK_TEXT_INDEX(text, cur_pos);
+                       cbuf[0] = GTK_STEXT_INDEX(text, cur_pos);
                        ch_len = 1;
                }
 
@@ -1316,14 +1748,14 @@ static void compose_wrap_line(Compose *compose)
                        gint tlen;
 
                        if (text->use_wchar)
-                               tlen = wctomb(cbuf, (wchar_t)GTK_TEXT_INDEX(text, line_pos - 1));
+                               tlen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
                        else {
-                               cbuf[0] = GTK_TEXT_INDEX(text, line_pos - 1);
+                               cbuf[0] = GTK_STEXT_INDEX(text, line_pos - 1);
                                tlen = 1;
                        }
                        if (tlen == 1 && isspace(*cbuf)) {
-                               gtk_text_set_point(text, line_pos);
-                               gtk_text_backward_delete(text, 1);
+                               gtk_stext_set_point(text, line_pos);
+                               gtk_stext_backward_delete(text, 1);
                                text_len--;
                                cur_pos--;
                                line_pos--;
@@ -1331,8 +1763,8 @@ static void compose_wrap_line(Compose *compose)
                                line_len--;
                        }
 
-                       gtk_text_set_point(text, line_pos);
-                       gtk_text_insert(text, NULL, NULL, NULL, "\n", 1);
+                       gtk_stext_set_point(text, line_pos);
+                       gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
                        text_len++;
                        cur_pos++;
                        line_pos++;
@@ -1348,7 +1780,7 @@ static void compose_wrap_line(Compose *compose)
                cur_len += ch_len;
        }
 
-       gtk_text_thaw(text);
+       gtk_stext_thaw(text);
 }
 
 static void compose_set_title(Compose *compose)
@@ -1366,7 +1798,34 @@ static void compose_set_title(Compose *compose)
        g_free(str);
 }
 
-static gint compose_send(Compose *compose)
+/**
+ * compose_current_mail_account:
+ * 
+ * Find a current mail account (the currently selected account, or the
+ * default account, if a news account is currently selected).  If a
+ * mail account cannot be found, display an error message.
+ * 
+ * Return value: Mail account, or NULL if not found.
+ **/
+static PrefsAccount *
+compose_current_mail_account(void)
+{
+       PrefsAccount *ac;
+
+       if (cur_account && cur_account->protocol != A_NNTP)
+               ac = cur_account;
+       else {
+               ac = account_get_default();
+               if (!ac || ac->protocol == A_NNTP) {
+                       alertpanel_error(_("Account for sending mail is not specified.\n"
+                                          "Please select a mail account before sending."));
+                       return NULL;
+               }
+       }
+       return ac;
+}
+
+gint compose_send(Compose *compose)
 {
        gchar tmp[MAXPATHLEN + 1];
        gchar *to, *newsgroups;
@@ -1410,22 +1869,22 @@ static gint compose_send(Compose *compose)
        if (compose->to_list) {
                PrefsAccount *ac;
 
+               /*
                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 = account_get_default();
-                       if (!ac || ac->protocol == A_NNTP) {
-                               alertpanel_error(_("Account for sending mail is not specified.\n"
-                                                  "Please select a mail account before sending."));
+                       ac = compose_current_mail_account();
+                       if (!ac) {
                                unlink(tmp);
                                lock = FALSE;
                                return -1;
                        }
                }
+               */
+               ac = compose->account;
+
                ok = send_message(tmp, ac, compose->to_list);
                statusbar_pop_all();
        }
@@ -1474,7 +1933,7 @@ static gint compose_send(Compose *compose)
                                (_("Can't save the message to outbox."));
        }
 
-       if (unlink(tmp) < 0) FILE_OP_ERROR(tmp, "unlink");
+       unlink(tmp);
        lock = FALSE;
        return ok;
 }
@@ -1534,7 +1993,7 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
                (compose, fp, out_codeset, encoding, is_draft) < 0) {
                g_warning(_("can't write headers\n"));
                fclose(fp);
-               unlink(file);
+               /* unlink(file); */
                g_free(buf);
                return -1;
        }
@@ -1653,13 +2112,17 @@ static gint compose_save_to_outbox(Compose *compose, const gchar *file)
        debug_print(_("saving sent message...\n"));
 
        outbox = folder_get_default_outbox();
+       path = folder_item_get_path(outbox);
+       if (!is_dir_exist(path))
+               make_dir_hier(path);
+
        folder_item_scan(outbox);
-       if ((num = folder_item_add_msg(outbox, file)) < 0) {
+       if ((num = folder_item_add_msg(outbox, file, FALSE)) < 0) {
+               g_free(path);
                g_warning(_("can't save message\n"));
                return -1;
        }
 
-       path = folder_item_get_path(outbox);
        if ((fp = procmsg_open_mark_file(path, TRUE)) == NULL)
                g_warning(_("can't open mark file\n"));
        else {
@@ -1758,16 +2221,18 @@ static gint compose_queue(Compose *compose, const gchar *file)
 
        queue = folder_get_default_queue();
        folder_item_scan(queue);
-       if ((num = folder_item_add_msg(queue, tmp)) < 0) {
+       queue_path = folder_item_get_path(queue);
+       if (!is_dir_exist(queue_path))
+               make_dir_hier(queue_path);
+       if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
                g_warning(_("can't queue the message\n"));
                unlink(tmp);
                g_free(tmp);
+               g_free(queue_path);
                return -1;
        }
-       unlink(tmp);
        g_free(tmp);
 
-       queue_path = folder_item_get_path(queue);
        if ((fp = procmsg_open_mark_file(queue_path, TRUE)) == NULL)
                g_warning(_("can't open mark file\n"));
        else {
@@ -1855,6 +2320,10 @@ static void compose_write_attach(Compose *compose, FILE *fp)
        fprintf(fp, "\n--%s--\n", compose->boundary);
 }
 
+#define IS_IN_CUSTOM_HEADER(header) \
+       (compose->account->add_customhdr && \
+        custom_header_find(compose->account->customhdr_list, header) != NULL)
+
 static gint compose_write_headers(Compose *compose, FILE *fp,
                                  const gchar *charset, EncodingType encoding,
                                  gboolean is_draft)
@@ -1873,16 +2342,19 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                get_rfc822_date(buf, sizeof(buf));
                fprintf(fp, "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, "From: %s <%s>\n", buf, compose->account->address);
-       } else
-               fprintf(fp, "From: %s\n", compose->account->address);
-
+       if (!IS_IN_CUSTOM_HEADER("From")) {
+               if (compose->account->name && *compose->account->name) {
+                       compose_convert_header
+                               (buf, sizeof(buf), compose->account->name,
+                                strlen("From: "));
+                       fprintf(fp, "From: %s <%s>\n",
+                               buf, compose->account->address);
+               } else
+                       fprintf(fp, "From: %s\n", compose->account->address);
+       }
+       
        slist_free_strings(compose->to_list);
        g_slist_free(compose->to_list);
        compose->to_list = NULL;
@@ -1896,13 +2368,16 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        if (*str != '\0') {
                                compose->to_list = address_list_append
                                        (compose->to_list, str);
-                               compose_convert_header(buf, sizeof(buf), str,
-                                                      strlen("To: "));
-                               fprintf(fp, "To: %s\n", buf);
+                               if (!IS_IN_CUSTOM_HEADER("To")) {
+                                       compose_convert_header
+                                               (buf, sizeof(buf), str,
+                                                strlen("To: "));
+                                       fprintf(fp, "To: %s\n", buf);
+                               }
                        }
                }
        }
-
+       
        slist_free_strings(compose->newsgroup_list);
        g_slist_free(compose->newsgroup_list);
        compose->newsgroup_list = NULL;
@@ -1917,9 +2392,11 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        compose->newsgroup_list =
                                newsgroup_list_append(compose->newsgroup_list,
                                                      str);
-                       compose_convert_header(buf, sizeof(buf), str,
-                                              strlen("Newsgroups: "));
-                       fprintf(fp, "Newsgroups: %s\n", buf);
+                       if (!IS_IN_CUSTOM_HEADER("Newsgroups")) {
+                               compose_convert_header(buf, sizeof(buf), str,
+                                                      strlen("Newsgroups: "));
+                               fprintf(fp, "Newsgroups: %s\n", buf);
+                       }
                }
        }
 
@@ -1935,13 +2412,16 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        if (*str != '\0') {
                                compose->to_list = address_list_append
                                        (compose->to_list, str);
-                               compose_convert_header(buf, sizeof(buf), str,
-                                                      strlen("Cc: "));
-                               fprintf(fp, "Cc: %s\n", buf);
+                               if (!IS_IN_CUSTOM_HEADER("Cc")) {
+                                       compose_convert_header
+                                               (buf, sizeof(buf), str,
+                                                strlen("Cc: "));
+                                       fprintf(fp, "Cc: %s\n", buf);
+                               }
                        }
                }
        }
-
+       
        /* Bcc */
        if (compose->use_bcc) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
@@ -1963,7 +2443,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
 
        /* Subject */
        str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
-       if (*str != '\0') {
+       if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
                Xstrdup_a(str, str, return -1);
                g_strstrip(str);
                if (*str != '\0') {
@@ -1989,7 +2469,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                fprintf(fp, "References: %s\n", compose->references);
 
        /* Followup-To */
-       if (compose->use_followupto) {
+       if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
                if (*str != '\0') {
                        Xstrdup_a(str, str, return -1);
@@ -2004,7 +2484,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
        }
 
        /* Reply-To */
-       if (compose->use_replyto) {
+       if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
                if (*str != '\0') {
                        Xstrdup_a(str, str, return -1);
@@ -2017,10 +2497,19 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                }
        }
 
+       /* Organization */
+       if (compose->account->organization &&
+           !IS_IN_CUSTOM_HEADER("Organization")) {
+               compose_convert_header(buf, sizeof(buf),
+                                      compose->account->organization,
+                                      strlen("Organization: "));
+               fprintf(fp, "Organization: %s\n", buf);
+       }
+
        /* Program version and system info */
        /* uname(&utsbuf); */
        str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       if (*str != '\0') {
+       if (*str != '\0' && !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,
@@ -2028,7 +2517,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
        str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*str != '\0') {
+       if (*str != '\0' && !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,
@@ -2036,14 +2525,33 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
 
-       /* Organization */
-       if (compose->account->organization) {
-               compose_convert_header(buf, sizeof(buf),
-                                      compose->account->organization,
-                                      strlen("Organization: "));
-               fprintf(fp, "Organization: %s\n", buf);
+       /* custom headers */
+       if (compose->account->add_customhdr) {
+               GSList *cur;
+
+               for (cur = compose->account->customhdr_list; cur != NULL;
+                    cur = cur->next) {
+                       CustomHeader *chdr = (CustomHeader *)cur->data;
+
+                       if (strcasecmp(chdr->name, "Date")         != 0 &&
+                           strcasecmp(chdr->name, "From")         != 0 &&
+                           strcasecmp(chdr->name, "To")           != 0 &&
+                           strcasecmp(chdr->name, "Sender")       != 0 &&
+                           strcasecmp(chdr->name, "Message-Id")   != 0 &&
+                           strcasecmp(chdr->name, "In-Reply-To")  != 0 &&
+                           strcasecmp(chdr->name, "References")   != 0 &&
+                           strcasecmp(chdr->name, "Mime-Version") != 0 &&
+                           strcasecmp(chdr->name, "Content-Type") != 0 &&
+                           strcasecmp(chdr->name, "Content-Transfer-Encoding")
+                           != 0)
+                               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) {
@@ -2061,12 +2569,26 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        procmime_get_encoding_str(encoding));
        }
 
+       /* Request Return Receipt */
+       if (!IS_IN_CUSTOM_HEADER("Disposition-Notification-To")) {
+               if (compose->return_receipt) {
+                       if (compose->account->name
+                           && *compose->account->name) {
+                               compose_convert_header(buf, sizeof(buf), compose->account->name, strlen("Disposition-Notification-To: "));
+                               fprintf(fp, "Disposition-Notification-To: %s <%s>\n", buf, compose->account->address);
+                       } else
+                               fprintf(fp, "Disposition-Notification-To: %s\n", compose->account->address);
+               }
+       }
+
        /* separator between header and body */
        fputs("\n", fp);
 
        return 0;
 }
 
+#undef IS_IN_CUSTOM_HEADER
+
 static void compose_convert_header(gchar *dest, gint len, gchar *src,
                                   gint header_len)
 {
@@ -2261,18 +2783,25 @@ static Compose *compose_create(PrefsAccount *account)
        /* header labels and entries */
        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);
        compose_add_entry_field(table, &bcc_hbox, &bcc_entry, &count,
                                "Bcc:", TRUE);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 4, 4);
        compose_add_entry_field(table, &reply_hbox, &reply_entry, &count,
                                "Reply-To:", TRUE);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 5, 4);
        compose_add_entry_field(table, &followup_hbox, &followup_entry, &count,
                                "Followup-To:", FALSE);
+       gtk_table_set_row_spacing(GTK_TABLE(table), 6, 4);
 
        gtk_table_set_col_spacings(GTK_TABLE(table), 4);
 
@@ -2367,12 +2896,14 @@ static Compose *compose_create(PrefsAccount *account)
        gtk_box_pack_start(GTK_BOX(edit_vbox), scrolledwin, TRUE, TRUE, 0);
        gtk_widget_set_usize(scrolledwin, prefs_common.compose_width, -1);
 
-       text = gtk_text_new(gtk_scrolled_window_get_hadjustment
+       text = gtk_stext_new(gtk_scrolled_window_get_hadjustment
                            (GTK_SCROLLED_WINDOW(scrolledwin)),
                            gtk_scrolled_window_get_vadjustment
                            (GTK_SCROLLED_WINDOW(scrolledwin)));
-       gtk_text_set_editable(GTK_TEXT(text), TRUE);
-       gtk_text_set_word_wrap(GTK_TEXT(text), TRUE);
+       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);
+
        gtk_container_add(GTK_CONTAINER(scrolledwin), text);
 
        gtk_signal_connect(GTK_OBJECT(text), "changed",
@@ -2402,7 +2933,7 @@ static Compose *compose_create(PrefsAccount *account)
 
        style = gtk_widget_get_style(text);
 
-       /* workaround for the slow down of GtkText when using Pixmap theme */
+       /* workaround for the slow down of GtkSText when using Pixmap theme */
        if (style->engine) {
                GtkThemeEngine *engine;
 
@@ -2453,17 +2984,7 @@ static Compose *compose_create(PrefsAccount *account)
        menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
        menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
 
-       gtk_widget_hide(bcc_hbox);
-       gtk_widget_hide(bcc_entry);
-       gtk_widget_hide(reply_hbox);
-       gtk_widget_hide(reply_entry);
-       gtk_widget_hide(followup_hbox);
-       gtk_widget_hide(followup_entry);
-       gtk_widget_hide(ruler_hbox);
-       gtk_table_set_row_spacing(GTK_TABLE(table), 4, 0);
-       gtk_table_set_row_spacing(GTK_TABLE(table), 5, 0);
-       gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
-
+       /*
        if (account->protocol == A_NNTP) {
                gtk_widget_hide(to_hbox);
                gtk_widget_hide(to_entry);
@@ -2475,8 +2996,10 @@ static Compose *compose_create(PrefsAccount *account)
                gtk_widget_hide(newsgroups_hbox);
                gtk_widget_hide(newsgroups_entry);
                gtk_table_set_row_spacing(GTK_TABLE(table), 2, 0);
+
                menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
        }
+       */
 
        switch (prefs_common.toolbar_style) {
        case TOOLBAR_NONE:
@@ -2550,13 +3073,6 @@ static Compose *compose_create(PrefsAccount *account)
        compose->msgid       = NULL;
        compose->boundary    = NULL;
 
-       compose->use_to         = FALSE;
-       compose->use_cc         = FALSE;
-       compose->use_bcc        = FALSE;
-       compose->use_replyto    = FALSE;
-       compose->use_followupto = FALSE;
-       compose->use_attach     = FALSE;
-
 #if USE_GPGME
        compose->use_signing    = FALSE;
        compose->use_encryption = FALSE;
@@ -2564,6 +3080,8 @@ static Compose *compose_create(PrefsAccount *account)
 
        compose->modified = FALSE;
 
+       compose->return_receipt = FALSE;
+
        compose->to_list        = NULL;
        compose->newsgroup_list = NULL;
 
@@ -2574,6 +3092,11 @@ static Compose *compose_create(PrefsAccount *account)
 
        compose_set_title(compose);
 
+       compose->use_bcc        = FALSE;
+       compose->use_replyto    = FALSE;
+       compose->use_followupto = FALSE;
+
+       /*
        if (account->protocol != A_NNTP) {
                menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
                gtk_check_menu_item_set_active
@@ -2584,25 +3107,33 @@ 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) {
+               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);
        }
-       if (account->set_autobcc && account->auto_bcc) {
-               gtk_entry_set_text(GTK_ENTRY(bcc_entry), account->auto_bcc);
+
+       if (account->set_autobcc) {
+               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)
+                       gtk_entry_set_text(GTK_ENTRY(bcc_entry),
+                                          account->auto_bcc);
        }
-       if (account->set_autoreplyto && account->auto_replyto) {
-               gtk_entry_set_text(GTK_ENTRY(reply_entry),
-                                  account->auto_replyto);
+       if (account->set_autoreplyto) {
+               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);
        }
 
        menuitem = gtk_item_factory_get_item(ifactory, "/Tool/Show ruler");
@@ -2622,6 +3153,32 @@ static Compose *compose_create(PrefsAccount *account)
 
        compose_list = g_list_append(compose_list, compose);
 
+       /*
+       compose->use_to         = FALSE;
+       compose->use_cc         = FALSE;
+       */
+       compose->use_attach     = FALSE;
+
+       if (!compose->use_bcc) {
+               gtk_widget_hide(bcc_hbox);
+               gtk_widget_hide(bcc_entry);
+               gtk_table_set_row_spacing(GTK_TABLE(table), 4, 0);
+       }
+       if (!compose->use_replyto) {
+               gtk_widget_hide(reply_hbox);
+               gtk_widget_hide(reply_entry);
+               gtk_table_set_row_spacing(GTK_TABLE(table), 5, 0);
+       }
+       if (!compose->use_followupto) {
+               gtk_widget_hide(followup_hbox);
+               gtk_widget_hide(followup_entry);
+               gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
+       }
+       gtk_widget_hide(ruler_hbox);
+
+
+       select_account(compose, account);
+
        return compose;
 }
 
@@ -2761,6 +3318,8 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
        gtk_widget_show_all(toolbar);
 }
 
+#undef CREATE_TOOLBAR_ICON
+
 static GtkWidget *compose_account_option_menu_create(Compose *compose)
 {
        GList *accounts;
@@ -3091,6 +3650,8 @@ static void compose_attach_property_create(gboolean *cancelled)
        attach_prop.cancel_btn       = cancel_btn;
 }
 
+#undef SET_LABEL_AND_ENTRY
+
 static void attach_property_ok(GtkWidget *widget, gboolean *cancelled)
 {
        *cancelled = FALSE;
@@ -3163,20 +3724,20 @@ static void compose_exec_ext_editor(Compose *compose)
                close(pipe_fds[0]);
 
                if (compose_write_body_to_file(compose, tmp) < 0) {
-                       sock_write(pipe_fds[1], "2\n", 2);
+                       fd_write(pipe_fds[1], "2\n", 2);
                        _exit(1);
                }
 
                pid_ed = compose_exec_ext_editor_real(tmp);
                if (pid_ed < 0) {
-                       sock_write(pipe_fds[1], "1\n", 2);
+                       fd_write(pipe_fds[1], "1\n", 2);
                        _exit(1);
                }
 
                /* wait until editor is terminated */
                waitpid(pid_ed, NULL, 0);
 
-               sock_write(pipe_fds[1], "0\n", 2);
+               fd_write(pipe_fds[1], "0\n", 2);
 
                close(pipe_fds[1]);
                _exit(0);
@@ -3296,14 +3857,14 @@ static void compose_input_cb(gpointer data, gint source,
        waitpid(compose->exteditor_pid, NULL, 0);
 
        if (buf[0] == '0') {            /* success */
-               GtkText *text = GTK_TEXT(compose->text);
+               GtkSText *text = GTK_STEXT(compose->text);
 
-               gtk_text_freeze(text);
-               gtk_text_set_point(text, 0);
-               gtk_text_forward_delete(text, gtk_text_get_length(text));
+               gtk_stext_freeze(text);
+               gtk_stext_set_point(text, 0);
+               gtk_stext_forward_delete(text, gtk_stext_get_length(text));
                compose_insert_file(compose, compose->exteditor_file);
                compose_changed_cb(NULL, compose);
-               gtk_text_thaw(text);
+               gtk_stext_thaw(text);
 
                if (unlink(compose->exteditor_file) < 0)
                        FILE_OP_ERROR(compose->exteditor_file, "unlink");
@@ -3355,7 +3916,7 @@ static void compose_set_ext_editor_sensitive(Compose *compose,
        gtk_widget_set_sensitive(compose->linewrap_btn,  sensitive);
 }
 
-static gint calc_cursor_xpos(GtkText *text, gint extra, gint char_width)
+static gint calc_cursor_xpos(GtkSText *text, gint extra, gint char_width)
 {
        gint cursor_pos;
 
@@ -3387,7 +3948,7 @@ static gboolean compose_edit_size_alloc(GtkEditable *widget,
                /* got the maximum */
                gtk_ruler_set_range(GTK_RULER(shruler),
                                    0.0, line_width_in_chars,
-                                   calc_cursor_xpos(GTK_TEXT(widget),
+                                   calc_cursor_xpos(GTK_STEXT(widget),
                                                     allocation->x,
                                                     char_width),
                                    /*line_width_in_chars*/ char_width);
@@ -3447,6 +4008,85 @@ static void toolbar_address_cb(GtkWidget *widget, gpointer data)
        compose_address_cb(data, 0, NULL);
 }
 
+static void select_account(Compose * compose, PrefsAccount * ac)
+{
+               compose->account = ac;
+               compose_set_title(compose);
+
+               if (ac->protocol == A_NNTP) {
+                       GtkItemFactory *ifactory;
+                       GtkWidget *menuitem;
+
+                       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),
+                                                 1, 4);
+
+                       compose->use_to = FALSE;
+                       compose->use_cc = FALSE;
+
+                       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");
+                       gtk_check_menu_item_set_active
+                               (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
+
+                       gtk_widget_hide(compose->to_hbox);
+                       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),
+                                                 3, 0);
+               }
+               else {
+                       GtkItemFactory *ifactory;
+                       GtkWidget *menuitem;
+
+                       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);
+                       gtk_table_set_row_spacing(GTK_TABLE(compose->table),
+                                                 1, 0);
+
+                       compose->use_to = TRUE;
+                       compose->use_cc = TRUE;
+
+                       menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
+                       gtk_check_menu_item_set_active
+                               (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
+                       menu_set_sensitive(ifactory,
+                                          "/Message/To", FALSE);
+                       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);
+                       gtk_widget_show(compose->cc_entry);
+
+                       gtk_table_set_row_spacing(GTK_TABLE(compose->table),
+                                                 0, 4);
+                       gtk_table_set_row_spacing(GTK_TABLE(compose->table),
+                                                 3, 4);
+               }
+               gtk_widget_queue_resize(compose->table_vbox);
+}
+
 static void account_activated(GtkMenuItem *menuitem, gpointer data)
 {
        Compose *compose = (Compose *)data;
@@ -3456,10 +4096,8 @@ static void account_activated(GtkMenuItem *menuitem, gpointer data)
        ac = (PrefsAccount *)gtk_object_get_user_data(GTK_OBJECT(menuitem));
        g_return_if_fail(ac != NULL);
 
-       if (ac != compose->account) {
-               compose->account = ac;
-               compose_set_title(compose);
-       }
+       if (ac != compose->account)
+               select_account(compose, ac);
 }
 
 static void attach_selected(GtkCList *clist, gint row, gint column,
@@ -3581,13 +4219,12 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                return;
        }
 
-       if (folder_item_add_msg(draft, tmp) < 0) {
+       if (folder_item_add_msg(draft, tmp, TRUE) < 0) {
                unlink(tmp);
                g_free(tmp);
                return;
        }
 
-       unlink(tmp);
        g_free(tmp);
 
        //folderview_scan_folder_a(DRAFT_DIR, TRUE);
@@ -3723,7 +4360,7 @@ static void compose_changed_cb(GtkEditable *editable, Compose *compose)
 static void compose_button_press_cb(GtkWidget *widget, GdkEventButton *event,
                                    Compose *compose)
 {
-       gtk_text_set_point(GTK_TEXT(widget),
+       gtk_stext_set_point(GTK_STEXT(widget),
                           gtk_editable_get_position(GTK_EDITABLE(widget)));
 }
 
@@ -3731,7 +4368,7 @@ static void compose_button_press_cb(GtkWidget *widget, GdkEventButton *event,
 static void compose_key_press_cb(GtkWidget *widget, GdkEventKey *event,
                                 Compose *compose)
 {
-       gtk_text_set_point(GTK_TEXT(widget),
+       gtk_stext_set_point(GTK_STEXT(widget),
                           gtk_editable_get_position(GTK_EDITABLE(widget)));
 }
 #endif
@@ -4015,3 +4652,50 @@ static void followupto_activated(GtkWidget *widget, Compose *compose)
 {
        gtk_widget_grab_focus(compose->text);
 }
+
+static void compose_toggle_return_receipt_cb(gpointer data, guint action,
+                                            GtkWidget *widget)
+{
+       Compose *compose = (Compose *)data;
+
+       if (GTK_CHECK_MENU_ITEM(widget)->active)
+               compose->return_receipt = TRUE;
+       else
+               compose->return_receipt = FALSE;
+}
+
+static gchar *compose_quote_fmt                (Compose        *compose,
+                                        MsgInfo        *msginfo,
+                                        const gchar    *fmt,
+                                        const gchar    *qmark)
+{
+       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);
+               }
+       }
+
+       quote_fmt_init(msginfo, quote_str);
+       quote_fmt_scan_string(fmt);
+       quote_fmtparse();
+
+       if (quote_fmt_get_buffer() == NULL)
+               alertpanel_error
+                       (_("Message reply/forward format error."));
+
+       return quote_fmt_get_buffer();
+}