2005-09-19 [colin] 1.9.14cvs44
[claws.git] / src / compose.c
index 3a5d9930d5d01b13bcabc300f29492b1d413c798..ff0f48f6377459ce04fd2d7b2e62b6cc701fd292 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2004 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2005 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
 
 #include "defs.h"
 
+#ifndef PANGO_ENABLE_ENGINE
+#  define PANGO_ENABLE_ENGINE
+#endif
+
 #include <glib.h>
+#include <glib/gi18n.h>
 #include <gdk/gdkkeysyms.h>
 #include <gtk/gtkmain.h>
 #include <gtk/gtkmenu.h>
@@ -32,8 +37,6 @@
 #include <gtk/gtkcheckmenuitem.h>
 #include <gtk/gtkoptionmenu.h>
 #include <gtk/gtkwidget.h>
-#include <gtk/gtkclist.h>
-#include <gtk/gtkctree.h>
 #include <gtk/gtkvpaned.h>
 #include <gtk/gtkentry.h>
 #include <gtk/gtkeditable.h>
 #include <gtk/gtklabel.h>
 #include <gtk/gtkscrolledwindow.h>
 #include <gtk/gtktreeview.h>
+#include <gtk/gtkliststore.h>
+#include <gtk/gtktreeselection.h>
+#include <gtk/gtktreemodel.h>
 
 #include <gtk/gtkdnd.h>
+#include <gtk/gtkclipboard.h>
+#include <pango/pango-break.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/stat.h>
 #include <unistd.h>
 #include <time.h>
-/* #include <sys/utsname.h> */
 #include <stdlib.h>
-#include <sys/wait.h>
+#if HAVE_SYS_WAIT_H
+#  include <sys/wait.h>
+#endif
 #include <signal.h>
 #include <errno.h>
 #include <libgen.h>
@@ -70,7 +79,6 @@
 #  include <wctype.h>
 #endif
 
-#include "intl.h"
 #include "main.h"
 #include "mainwindow.h"
 #include "compose.h"
 #include "undo.h"
 #include "foldersel.h"
 #include "toolbar.h"
-
-typedef enum
+#include "inc.h"
+enum
 {
        COL_MIMETYPE = 0,
        COL_SIZE     = 1,
-       COL_NAME     = 2
-} AttachColumnPos;
+       COL_NAME     = 2,
+       COL_DATA     = 3,
+       COL_AUTODATA = 4,
+       N_COL_COLUMNS
+};
 
-#define N_ATTACH_COLS          3
+#define N_ATTACH_COLS  (N_COL_COLUMNS)
 
 typedef enum
 {
@@ -172,8 +183,6 @@ typedef enum
 
 #define MAX_REFERENCES_LEN     999
 
-static GdkColor quote_color = {0, 0, 0, 0xbfff};
-
 static GList *compose_list = NULL;
 
 Compose *compose_generic_new                   (PrefsAccount   *account,
@@ -187,6 +196,7 @@ static Compose *compose_create                      (PrefsAccount   *account,
 
 static GtkWidget *compose_account_option_menu_create
                                                (Compose        *compose);
+static void compose_set_out_encoding           (Compose        *compose);
 static void compose_set_template_menu          (Compose        *compose);
 static void compose_template_apply             (Compose        *compose,
                                                 Template       *tmpl,
@@ -215,21 +225,27 @@ static void compose_reply_set_entry               (Compose        *compose,
                                                 followup_and_reply_to);
 static void compose_reedit_set_entry           (Compose        *compose,
                                                 MsgInfo        *msginfo);
+
 static void compose_insert_sig                 (Compose        *compose,
                                                 gboolean        replace);
 static gchar *compose_get_signature_str                (Compose        *compose);
 static ComposeInsertResult compose_insert_file (Compose        *compose,
                                                 const gchar    *file);
+
 static void compose_attach_append              (Compose        *compose,
                                                 const gchar    *file,
                                                 const gchar    *type,
                                                 const gchar    *content_type);
 static void compose_attach_parts               (Compose        *compose,
                                                 MsgInfo        *msginfo);
-static void compose_wrap_line                  (Compose        *compose);
-static void compose_wrap_line_all              (Compose        *compose);
-static void compose_wrap_line_all_full         (Compose        *compose,
+
+static void compose_beautify_paragraph         (Compose        *compose,
+                                                GtkTextIter    *par_iter,
+                                                gboolean        force);
+static void compose_wrap_all                   (Compose        *compose);
+static void compose_wrap_all_full              (Compose        *compose,
                                                 gboolean        autowrap);
+
 static void compose_set_title                  (Compose        *compose);
 static void compose_select_account             (Compose        *compose,
                                                 PrefsAccount   *account,
@@ -259,7 +275,8 @@ static void compose_add_attachments         (Compose        *compose,
                                                 MimeInfo       *parent);
 static gchar *compose_get_header               (Compose        *compose);
 
-static void compose_convert_header             (gchar          *dest,
+static void compose_convert_header             (Compose        *compose,
+                                                gchar          *dest,
                                                 gint            len,
                                                 gchar          *src,
                                                 gint            header_len,
@@ -281,24 +298,22 @@ static gboolean attach_property_key_pressed       (GtkWidget      *widget,
                                                 GdkEventKey    *event,
                                                 gboolean       *cancelled);
 
-static void compose_exec_ext_editor            (Compose           *compose);
-static gint compose_exec_ext_editor_real       (const gchar       *file);
-static gboolean compose_ext_editor_kill                (Compose           *compose);
-static void compose_input_cb                   (gpointer           data,
-                                                gint               source,
-                                                GdkInputCondition  condition);
-static void compose_set_ext_editor_sensitive   (Compose           *compose,
-                                                gboolean           sensitive);
+static void compose_exec_ext_editor            (Compose        *compose);
+#ifdef G_OS_UNIX
+static gint compose_exec_ext_editor_real       (const gchar    *file);
+static gboolean compose_ext_editor_kill                (Compose        *compose);
+static gboolean compose_input_cb               (GIOChannel     *source,
+                                                GIOCondition    condition,
+                                                gpointer        data);
+static void compose_set_ext_editor_sensitive   (Compose        *compose,
+                                                gboolean        sensitive);
+#endif /* G_OS_UNIX */
 
 static void compose_undo_state_changed         (UndoMain       *undostruct,
                                                 gint            undo_state,
                                                 gint            redo_state,
                                                 gpointer        data);
 
-static gint calc_cursor_xpos   (GtkTextView    *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);
 static void compose_update_priority_menu_item(Compose * compose);
@@ -313,11 +328,10 @@ static gboolean compose_edit_size_alloc (GtkEditable      *widget,
                                         GtkSHRuler     *shruler);
 static void account_activated          (GtkMenuItem    *menuitem,
                                         gpointer        data);
-static void attach_selected            (GtkCList       *clist,
-                                        gint            row,
-                                        gint            column,
-                                        GdkEvent       *event,
-                                        gpointer        data);
+static void attach_selected            (GtkTreeView    *tree_view, 
+                                        GtkTreePath    *tree_path,
+                                        GtkTreeViewColumn *column, 
+                                        Compose *compose);
 static gboolean attach_button_pressed  (GtkWidget      *widget,
                                         GdkEventButton *event,
                                         gpointer        data);
@@ -350,6 +364,10 @@ static void compose_close_cb               (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
 
+static void compose_set_encoding_cb    (gpointer        data,
+                                        guint           action,
+                                        GtkWidget      *widget);
+
 static void compose_address_cb         (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
@@ -363,8 +381,6 @@ static void compose_ext_editor_cb   (gpointer        data,
 static gint compose_delete_cb          (GtkWidget      *widget,
                                         GdkEventAny    *event,
                                         gpointer        data);
-static void compose_destroy_cb         (GtkWidget      *widget,
-                                        Compose        *compose);
 
 static void compose_undo_cb            (Compose        *compose);
 static void compose_redo_cb            (Compose        *compose);
@@ -372,6 +388,8 @@ static void compose_cut_cb          (Compose        *compose);
 static void compose_copy_cb            (Compose        *compose);
 static void compose_paste_cb           (Compose        *compose);
 static void compose_paste_as_quote_cb  (Compose        *compose);
+static void compose_paste_no_wrap_cb   (Compose        *compose);
+static void compose_paste_wrap_cb      (Compose        *compose);
 static void compose_allsel_cb          (Compose        *compose);
 
 static void compose_advanced_action_cb (Compose                   *compose,
@@ -379,36 +397,17 @@ static void compose_advanced_action_cb    (Compose                   *compose,
 
 static void compose_grab_focus_cb      (GtkWidget      *widget,
                                         Compose        *compose);
-static void compose_grab_focus_before_cb(GtkWidget     *widget,
-                                        Compose        *compose);
 
 static void compose_changed_cb         (GtkTextBuffer  *textbuf,
                                         Compose        *compose);
 
-static void compose_toggle_autowrap_cb (gpointer        data,
-                                        guint           action,
-                                        GtkWidget      *widget);
-
-#if 0
-static void compose_toggle_to_cb       (gpointer        data,
-                                        guint           action,
-                                        GtkWidget      *widget);
-static void compose_toggle_cc_cb       (gpointer        data,
-                                        guint           action,
-                                        GtkWidget      *widget);
-static void compose_toggle_bcc_cb      (gpointer        data,
-                                        guint           action,
-                                        GtkWidget      *widget);
-static void compose_toggle_replyto_cb  (gpointer        data,
-                                        guint           action,
-                                        GtkWidget      *widget);
-static void compose_toggle_followupto_cb(gpointer       data,
+static void compose_wrap_cb            (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
-static void compose_toggle_attach_cb   (gpointer        data,
+static void compose_toggle_autowrap_cb (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
-#endif
+
 static void compose_toggle_ruler_cb    (gpointer        data,
                                         guint           action,
                                         GtkWidget      *widget);
@@ -420,9 +419,10 @@ static void compose_toggle_encrypt_cb      (gpointer        data,
                                         GtkWidget      *widget);
 static void compose_set_privacy_system_cb(GtkWidget      *widget,
                                          gpointer        data);
-static void compose_update_privacy_system_menu_item(Compose * compose);
+static void compose_update_privacy_system_menu_item(Compose * compose, gboolean warn);
 static void activate_privacy_system     (Compose *compose, 
-                                         PrefsAccount *account);
+                                         PrefsAccount *account,
+                                        gboolean warn);
 static void compose_use_signing(Compose *compose, gboolean use_signing);
 static void compose_use_encryption(Compose *compose, gboolean use_encryption);
 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
@@ -449,26 +449,20 @@ static void compose_insert_drag_received_cb (GtkWidget            *widget,
                                             guint               info,
                                             guint               time,
                                             gpointer            user_data);
+static void compose_header_drag_received_cb (GtkWidget         *widget,
+                                            GdkDragContext     *drag_context,
+                                            gint                x,
+                                            gint                y,
+                                            GtkSelectionData   *data,
+                                            guint               info,
+                                            guint               time,
+                                            gpointer            user_data);
 
-#if 0
-static void to_activated               (GtkWidget      *widget,
-                                        Compose        *compose);
-static void newsgroups_activated       (GtkWidget      *widget,
-                                        Compose        *compose);
-static void cc_activated               (GtkWidget      *widget,
-                                        Compose        *compose);
-static void bcc_activated              (GtkWidget      *widget,
-                                        Compose        *compose);
-static void replyto_activated          (GtkWidget      *widget,
-                                        Compose        *compose);
-static void followupto_activated       (GtkWidget      *widget,
-                                        Compose        *compose);
-static void subject_activated          (GtkWidget      *widget,
-                                        Compose        *compose);
-#endif
+static gboolean compose_drag_drop          (GtkWidget *widget,
+                                            GdkDragContext *drag_context,
+                                            gint x, gint y,
+                                            guint time, gpointer user_data);
 
-static void text_activated             (GtkWidget      *widget,
-                                        Compose        *compose);
 static void text_inserted              (GtkTextBuffer  *buffer,
                                         GtkTextIter    *iter,
                                         const gchar    *text,
@@ -497,7 +491,6 @@ static void compose_check_backwards    (Compose *compose);
 static void compose_check_forwards_go     (Compose *compose);
 #endif
 
-static gboolean compose_send_control_enter     (Compose        *compose);
 static gint compose_defer_auto_save_draft      (Compose        *compose);
 static PrefsAccount *compose_guess_forward_account_from_msginfo        (MsgInfo *msginfo);
 
@@ -535,8 +528,12 @@ static GtkItemFactoryEntry compose_entries[] =
        {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/Paste as _quotation"),
+       {N_("/_Edit/Special paste/as _quotation"),
                                        NULL, compose_paste_as_quote_cb, 0, NULL},
+       {N_("/_Edit/Special paste/_wrapped"),
+                                       NULL, compose_paste_wrap_cb, 0, NULL},
+       {N_("/_Edit/Special paste/_unwrapped"),
+                                       NULL, compose_paste_no_wrap_cb, 0, NULL},
        {N_("/_Edit/Select _all"),      "<control>A", compose_allsel_cb, 0, NULL},
        {N_("/_Edit/A_dvanced"),        NULL, NULL, 0, "<Branch>"},
        {N_("/_Edit/A_dvanced/Move a character backward"),
@@ -616,9 +613,9 @@ static GtkItemFactoryEntry compose_entries[] =
                                        NULL},
        {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
        {N_("/_Edit/_Wrap current paragraph"),
-                                       "<control>L", compose_wrap_line, 0, NULL},
+                                       "<control>L", compose_wrap_cb, 0, NULL},
        {N_("/_Edit/Wrap all long _lines"),
-                                       "<control><alt>L", compose_wrap_line_all, 0, NULL},
+                                       "<control><alt>L", compose_wrap_cb, 1, NULL},
        {N_("/_Edit/Aut_o wrapping"),   "<shift><control>L", compose_toggle_autowrap_cb, 0, "<ToggleItem>"},
        {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
        {N_("/_Edit/Edit with e_xternal editor"),
@@ -651,7 +648,88 @@ static GtkItemFactoryEntry compose_entries[] =
        {N_("/_Options/Priority/_Lowest"),  NULL, compose_set_priority_cb, PRIORITY_LOWEST, "/Options/Priority/Highest"},
        {N_("/_Options/---"),           NULL,           NULL,   0, "<Separator>"},
        {N_("/_Options/_Request Return Receipt"),       NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
+       {N_("/_Options/---"),           NULL,           NULL,   0, "<Separator>"},
        {N_("/_Options/Remo_ve references"),    NULL, compose_toggle_remove_refs_cb, 0, "<ToggleItem>"},
+       {N_("/_Options/---"),           NULL,           NULL,   0, "<Separator>"},
+
+#define ENC_ACTION(action) \
+       NULL, compose_set_encoding_cb, action, \
+       "/Options/Character encoding/Automatic"
+
+       {N_("/_Options/Character _encoding"), NULL, NULL, 0, "<Branch>"},
+       {N_("/_Options/Character _encoding/_Automatic"),
+                       NULL, compose_set_encoding_cb, C_AUTO, "<RadioItem>"},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/7bit ascii (US-ASC_II)"),
+        ENC_ACTION(C_US_ASCII)},
+       {N_("/_Options/Character _encoding/Unicode (_UTF-8)"),
+        ENC_ACTION(C_UTF_8)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Western European (ISO-8859-_1)"),
+        ENC_ACTION(C_ISO_8859_1)},
+       {N_("/_Options/Character _encoding/Western European (ISO-8859-15)"),
+        ENC_ACTION(C_ISO_8859_15)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Central European (ISO-8859-_2)"),
+        ENC_ACTION(C_ISO_8859_2)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/_Baltic (ISO-8859-13)"),
+        ENC_ACTION(C_ISO_8859_13)},
+       {N_("/_Options/Character _encoding/Baltic (ISO-8859-_4)"),
+        ENC_ACTION(C_ISO_8859_4)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Greek (ISO-8859-_7)"),
+        ENC_ACTION(C_ISO_8859_7)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Hebrew (ISO-8859-_8)"),
+        ENC_ACTION(C_ISO_8859_8)},
+       {N_("/_Options/Character _encoding/Hebrew (Windows-1255)"),
+        ENC_ACTION(C_WINDOWS_1255)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Turkish (ISO-8859-_9)"),
+        ENC_ACTION(C_ISO_8859_9)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Cyrillic (ISO-8859-_5)"),
+        ENC_ACTION(C_ISO_8859_5)},
+       {N_("/_Options/Character _encoding/Cyrillic (KOI8-_R)"),
+        ENC_ACTION(C_KOI8_R)},
+       {N_("/_Options/Character _encoding/Cyrillic (KOI8-U)"),
+        ENC_ACTION(C_KOI8_U)},
+       {N_("/_Options/Character _encoding/Cyrillic (Windows-1251)"),
+        ENC_ACTION(C_WINDOWS_1251)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Japanese (ISO-2022-_JP)"),
+        ENC_ACTION(C_ISO_2022_JP)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Simplified Chinese (_GB2312)"),
+        ENC_ACTION(C_GB2312)},
+       {N_("/_Options/Character _encoding/Simplified Chinese (GBK)"),
+        ENC_ACTION(C_GBK)},
+       {N_("/_Options/Character _encoding/Traditional Chinese (_Big5)"),
+        ENC_ACTION(C_BIG5)},
+       {N_("/_Options/Character _encoding/Traditional Chinese (EUC-_TW)"),
+        ENC_ACTION(C_EUC_TW)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Korean (EUC-_KR)"),
+        ENC_ACTION(C_EUC_KR)},
+       {N_("/_Options/Character _encoding/---"), NULL, NULL, 0, "<Separator>"},
+
+       {N_("/_Options/Character _encoding/Thai (TIS-620)"),
+        ENC_ACTION(C_TIS_620)},
+       {N_("/_Options/Character _encoding/Thai (Windows-874)"),
+        ENC_ACTION(C_WINDOWS_874)},
+
        {N_("/_Tools"),                 NULL, NULL, 0, "<Branch>"},
        {N_("/_Tools/Show _ruler"),     NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
        {N_("/_Tools/_Address book"),   "<shift><control>A", compose_address_cb , 0, NULL},
@@ -663,7 +741,9 @@ static GtkItemFactoryEntry compose_entries[] =
 
 static GtkTargetEntry compose_mime_types[] =
 {
-       {"text/uri-list", 0, 0}
+       {"text/uri-list", 0, 0},
+       {"text/plain", 0, 0},
+       {"STRING", 0, 0}
 };
 
 static gboolean compose_put_existing_to_front(MsgInfo *info)
@@ -689,6 +769,54 @@ static gboolean compose_put_existing_to_front(MsgInfo *info)
        return FALSE;
 }
 
+static GdkColor quote_color = 
+       {(gulong)0, (gushort)0, (gushort)0, (gushort)0};
+
+static GdkColor signature_color = {
+       (gulong)0,
+       (gushort)0x7fff,
+       (gushort)0x7fff,
+       (gushort)0x7fff
+};
+
+static GdkColor uri_color = {
+       (gulong)0,
+       (gushort)0,
+       (gushort)0,
+       (gushort)0
+};
+
+static void compose_create_tags(GtkTextView *text, Compose *compose)
+{
+       GtkTextBuffer *buffer;
+       GdkColor black = {(gulong)0, (gushort)0, (gushort)0, (gushort)0};
+
+       buffer = gtk_text_view_get_buffer(text);
+       
+       if (prefs_common.enable_color) {
+               /* grab the quote colors, converting from an int to a GdkColor */
+               gtkut_convert_int_to_gdk_color(prefs_common.quote_level1_col,
+                                              &quote_color);
+               gtkut_convert_int_to_gdk_color(prefs_common.signature_col,
+                                              &signature_color);
+               gtkut_convert_int_to_gdk_color(prefs_common.uri_col,
+                                              &uri_color);
+       } else {
+               signature_color = quote_color = uri_color = black;
+       }
+
+       gtk_text_buffer_create_tag(buffer, "quote",
+                                  "foreground-gdk", &quote_color,
+                                  NULL);
+       gtk_text_buffer_create_tag(buffer, "signature",
+                                  "foreground-gdk", &signature_color,
+                                  NULL);
+       gtk_text_buffer_create_tag(buffer, "link",
+                                        "foreground-gdk", &uri_color,
+                                        NULL);
+       compose->no_wrap_tag = gtk_text_buffer_create_tag(buffer, "no_wrap", NULL);
+}
+
 Compose *compose_new(PrefsAccount *account, const gchar *mailto,
                     GPtrArray *attach_files)
 {
@@ -728,6 +856,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
 
        textview = GTK_TEXT_VIEW(compose->text);
        textbuf = gtk_text_view_get_buffer(textview);
+       compose_create_tags(textview, compose);
 
        undo_block(compose->undostruct);
 #ifdef USE_ASPELL
@@ -751,7 +880,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
                        compose_entry_mark_default_to(compose, item->prefs->default_to);
                }
                if (item && item->ret_rcpt) {
-                       menu_set_active(ifactory, "/Message/Request Return Receipt", TRUE);
+                       menu_set_active(ifactory, "/Options/Request Return Receipt", TRUE);
                }
        } else {
                if (mailto) {
@@ -761,7 +890,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
                 * CLAWS: just don't allow return receipt request, even if the user
                 * may want to send an email. simple but foolproof.
                 */
-               menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE); 
+               menu_set_sensitive(ifactory, "/Options/Request Return Receipt", FALSE); 
        }
        compose_add_field_list( compose, listAddress );
 
@@ -797,30 +926,49 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI
         return compose;
 }
 
-/*
-Compose *compose_new_followup_and_replyto(PrefsAccount *account,
-                                          const gchar *followupto, gchar * to)
+static void compose_force_encryption(Compose *compose, PrefsAccount *account,
+               gboolean override_pref)
 {
-       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);
+       gchar *privacy = NULL;
 
-       compose = compose_create(account, COMPOSE_NEW);
+       if (override_pref == FALSE && account->default_encrypt_reply == FALSE)
+               return;
 
-       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);
+       if (account->default_privacy_system
+       &&  strlen(account->default_privacy_system)) {
+               privacy = account->default_privacy_system;
+       } else {
+               GSList *privacy_avail = privacy_get_system_ids();
+               if (privacy_avail && g_slist_length(privacy_avail)) {
+                       privacy = (gchar *)(privacy_avail->data);
+               }
+       }
+       if (privacy != NULL) {
+               compose->privacy_system = g_strdup(privacy);
+               compose_update_privacy_system_menu_item(compose, FALSE);
+               compose_use_encryption(compose, TRUE);
+       }
+}      
 
-       compose_entry_append(compose, to, COMPOSE_TO);
-       compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
-       gtk_widget_grab_focus(compose->subject_entry);
+static void compose_force_signing(Compose *compose, PrefsAccount *account)
+{
+       gchar *privacy = NULL;
 
-       return compose;
-}
-*/
+       if (account->default_privacy_system
+       &&  strlen(account->default_privacy_system)) {
+               privacy = account->default_privacy_system;
+       } else {
+               GSList *privacy_avail = privacy_get_system_ids();
+               if (privacy_avail && g_slist_length(privacy_avail)) {
+                       privacy = (gchar *)(privacy_avail->data);
+               }
+       }
+       if (privacy != NULL) {
+               compose->privacy_system = g_strdup(privacy);
+               compose_update_privacy_system_menu_item(compose, FALSE);
+               compose_use_signing(compose, TRUE);
+       }
+}      
 
 void compose_reply_mode(ComposeMode mode, GSList *msginfo_list, gchar *body)
 {
@@ -968,7 +1116,7 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                compose->replyinfo = procmsg_msginfo_copy(msginfo);
 
        if (msginfo->folder && msginfo->folder->ret_rcpt)
-               menu_set_active(ifactory, "/Message/Request Return Receipt", TRUE);
+               menu_set_active(ifactory, "/Options/Request Return Receipt", TRUE);
 
        /* Set save folder */
        if (msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
@@ -987,7 +1135,8 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
 
        textview = (GTK_TEXT_VIEW(compose->text));
        textbuf = gtk_text_view_get_buffer(textview);
-       
+       compose_create_tags(textview, compose);
+
        undo_block(compose->undostruct);
 #ifdef USE_ASPELL
        if (msginfo->folder && msginfo->folder->prefs && 
@@ -1010,6 +1159,9 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                                  prefs_common.quotefmt,
                                  qmark, body);
        }
+       if (procmime_msginfo_is_encrypted(compose->replyinfo)) {
+               compose_force_encryption(compose, account, FALSE);
+       }
 
        if (account->auto_sig)
                compose_insert_sig(compose, FALSE);
@@ -1019,8 +1171,7 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        gtk_text_buffer_get_iter_at_offset(textbuf, &iter, cursor_pos);
        gtk_text_buffer_place_cursor(textbuf, &iter);
        
-       if (quote && prefs_common.linewrap_quote)
-               compose_wrap_line_all(compose);
+       compose_wrap_all(compose);
 
        gtk_widget_grab_focus(compose->text);
 
@@ -1076,6 +1227,7 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
 
        textview = GTK_TEXT_VIEW(compose->text);
        textbuf = gtk_text_view_get_buffer(textview);
+       compose_create_tags(textview, compose);
 
        if (as_attach) {
                gchar *msgfile;
@@ -1113,18 +1265,11 @@ Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
        if (account->auto_sig)
                compose_insert_sig(compose, FALSE);
 
-       if (prefs_common.linewrap_quote)
-               compose_wrap_line_all(compose);
+       compose_wrap_all(compose);
 
        gtk_text_buffer_get_start_iter(textbuf, &iter);
        gtk_text_buffer_place_cursor(textbuf, &iter);
 
-#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);
 
        if (!no_extedit && prefs_common.auto_exteditor)
@@ -1177,6 +1322,7 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
 
        textview = GTK_TEXT_VIEW(compose->text);
        textbuf = gtk_text_view_get_buffer(textview);
+       compose_create_tags(textview, compose);
 
        for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
                msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
@@ -1191,27 +1337,62 @@ Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
        if (account->auto_sig)
                compose_insert_sig(compose, FALSE);
 
-       if (prefs_common.linewrap_quote)
-               compose_wrap_line_all(compose);
+       compose_wrap_all(compose);
 
        gtk_text_buffer_get_start_iter(textbuf, &iter);
        gtk_text_buffer_place_cursor(textbuf, &iter);
 
        gtk_widget_grab_focus(compose->header_last->entry);
        
-#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;
 }
 
+static gboolean compose_is_sig_separator(Compose *compose, GtkTextBuffer *textbuf, GtkTextIter *iter) 
+{
+       GtkTextIter start = *iter;
+       GtkTextIter end_iter;
+       int start_pos = gtk_text_iter_get_offset(&start);
+
+       if (!compose->account->sig_sep)
+               return FALSE;
+       
+       gtk_text_buffer_get_iter_at_offset(textbuf, &end_iter,
+               start_pos+strlen(compose->account->sig_sep));
+
+       /* check sig separator */
+       if (!strcmp(gtk_text_iter_get_text(&start, &end_iter),
+                       compose->account->sig_sep)) {
+               /* check end of line (\n) */
+               gtk_text_buffer_get_iter_at_offset(textbuf, &start,
+                       start_pos+strlen(compose->account->sig_sep));
+               gtk_text_buffer_get_iter_at_offset(textbuf, &end_iter,
+                       start_pos+strlen(compose->account->sig_sep)+1);
+
+               if (!strcmp(gtk_text_iter_get_text(&start, &end_iter),"\n"));
+                       return TRUE;
+               
+
+       }
+
+       return FALSE;
+}
+
+static void compose_colorize_signature(Compose *compose)
+{
+       GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(compose->text));
+       GtkTextIter iter;
+       GtkTextIter end_iter;
+       gtk_text_buffer_get_start_iter(buffer, &iter);
+       while (gtk_text_iter_forward_line(&iter))
+               if (compose_is_sig_separator(compose, buffer, &iter)) {
+                       gtk_text_buffer_get_end_iter(buffer, &end_iter);
+                       gtk_text_buffer_apply_tag_by_name(buffer,"signature",&iter, &end_iter);
+               }
+}
+
 void compose_reedit(MsgInfo *msginfo)
 {
-       Compose *compose;
+       Compose *compose = NULL;
        PrefsAccount *account = NULL;
        GtkTextView *textview;
        GtkTextBuffer *textbuf;
@@ -1229,7 +1410,8 @@ void compose_reedit(MsgInfo *msginfo)
        if (compose_put_existing_to_front(msginfo)) 
                return;
 
-        if (msginfo->folder->stype == F_QUEUE || msginfo->folder->stype == F_DRAFT) {
+        if (folder_has_parent_of_type(msginfo->folder, F_QUEUE) ||
+           folder_has_parent_of_type(msginfo->folder, F_DRAFT)) {
                gchar queueheader_buf[BUFFSIZE];
                gint id, param;
 
@@ -1287,13 +1469,18 @@ void compose_reedit(MsgInfo *msginfo)
        g_return_if_fail(account != NULL);
 
        compose = compose_create(account, COMPOSE_REEDIT);
-       compose->privacy_system = privacy_system;
-       compose_use_signing(compose, use_signing);
-       compose_use_encryption(compose, use_encryption);
+       if (privacy_system != NULL) {
+               compose->privacy_system = privacy_system;
+               compose_use_signing(compose, use_signing);
+               compose_use_encryption(compose, use_encryption);
+               compose_update_privacy_system_menu_item(compose, FALSE);
+       } else {
+               activate_privacy_system(compose, account, FALSE);
+       }
        compose->targetinfo = procmsg_msginfo_copy(msginfo);
 
-        if (msginfo->folder->stype == F_QUEUE
-       ||  msginfo->folder->stype == F_DRAFT) {
+        if (folder_has_parent_of_type(msginfo->folder, F_QUEUE) ||
+           folder_has_parent_of_type(msginfo->folder, F_DRAFT)) {
                gchar queueheader_buf[BUFFSIZE];
 
                /* Set message save folder */
@@ -1311,33 +1498,41 @@ void compose_reedit(MsgInfo *msginfo)
 
        textview = GTK_TEXT_VIEW(compose->text);
        textbuf = gtk_text_view_get_buffer(textview);
+       compose_create_tags(textview, compose);
+
        mark = gtk_text_buffer_get_insert(textbuf);
        gtk_text_buffer_get_iter_at_mark(textbuf, &iter, mark);
 
        g_signal_handlers_block_by_func(G_OBJECT(textbuf),
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
-                                       
-       g_signal_handlers_block_by_func(G_OBJECT(textbuf),
-                                       G_CALLBACK(text_inserted),
-                                       compose);
-
-       if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
+       
+       if (procmime_msginfo_is_encrypted(msginfo)) {
+               fp = procmime_get_first_encrypted_text_content(msginfo);
+               if (fp) 
+                       compose_force_encryption(compose, account, TRUE);
+       } else
+               fp = procmime_get_first_text_content(msginfo);
+       if (fp == NULL)
                g_warning("Can't get text part\n");
-       else {
+
+       if (fp != NULL) {
+               gboolean prev_autowrap = compose->autowrap;
+
+               compose->autowrap = FALSE;
                while (fgets(buf, sizeof(buf), fp) != NULL) {
                        strcrchomp(buf);
                        gtk_text_buffer_insert(textbuf, &iter, buf, -1);
-                       gtk_text_buffer_get_iter_at_mark(textbuf, &iter, mark);
                }
+               compose_wrap_all_full(compose, FALSE);
+               compose->autowrap = prev_autowrap;
                fclose(fp);
        }
        
        compose_attach_parts(compose, msginfo);
 
-       g_signal_handlers_unblock_by_func(G_OBJECT(textbuf),
-                                       G_CALLBACK(text_inserted),
-                                       compose);
+       compose_colorize_signature(compose);
+
        g_signal_handlers_unblock_by_func(G_OBJECT(textbuf),
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
@@ -1364,7 +1559,7 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
 
        compose = compose_create(account, COMPOSE_REDIRECT);
        ifactory = gtk_item_factory_from_widget(compose->menubar);
-
+       compose_create_tags(GTK_TEXT_VIEW(compose->text), compose);
        compose->replyinfo = NULL;
        compose->fwdinfo = NULL;
 
@@ -1372,7 +1567,7 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
 
        gtk_widget_grab_focus(compose->header_last->entry);
 
-       filename = procmsg_get_message_file(msginfo);
+       filename = procmsg_get_message_file_path(msginfo);
        if (filename == NULL)
                return NULL;
 
@@ -1397,12 +1592,14 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
        gtk_editable_set_editable(GTK_EDITABLE(compose->subject_entry), FALSE);
 
        compose_quote_fmt(compose, msginfo, "%M", NULL, NULL);
-       gtk_text_view_set_editable(GTK_TEXT_VIEW(compose->text), TRUE);
+       gtk_text_view_set_editable(GTK_TEXT_VIEW(compose->text), FALSE);
+
+       compose_colorize_signature(compose);
 
        ifactory = gtk_item_factory_from_widget(compose->popupmenu);
        menu_set_sensitive(ifactory, "/Add...", FALSE);
        menu_set_sensitive(ifactory, "/Remove", FALSE);
-       menu_set_sensitive(ifactory, "/Property...", FALSE);
+       menu_set_sensitive(ifactory, "/Properties...", FALSE);
 
        ifactory = gtk_item_factory_from_widget(compose->menubar);
        menu_set_sensitive(ifactory, "/Message/Save", FALSE);
@@ -1410,10 +1607,7 @@ Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
        menu_set_sensitive(ifactory, "/Message/Attach file", FALSE);
        menu_set_sensitive(ifactory, "/Message/Insert signature", FALSE);
        menu_set_sensitive(ifactory, "/Edit", FALSE);
-       menu_set_sensitive(ifactory, "/Options/Sign", FALSE);
-       menu_set_sensitive(ifactory, "/Options/Encrypt", FALSE);
-       menu_set_sensitive(ifactory, "/Options/Priority", FALSE);
-       menu_set_sensitive(ifactory, "/Options/Request Return Receipt", FALSE);
+       menu_set_sensitive(ifactory, "/Options", FALSE);
        menu_set_sensitive(ifactory, "/Tools/Show ruler", FALSE);
        menu_set_sensitive(ifactory, "/Tools/Actions", FALSE);
        
@@ -1437,32 +1631,10 @@ void compose_entry_append(Compose *compose, const gchar *address,
                          ComposeEntryType type)
 {
        gchar *header;
-
+       gchar *cur, *begin;
+       gboolean in_quote = FALSE;
        if (!address || *address == '\0') return;
 
-#if 0 /* NEW COMPOSE GUI */
-       switch (type) {
-       case COMPOSE_CC:
-               entry = GTK_ENTRY(compose->cc_entry);
-               break;
-       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);
-               break;
-       }
-
-       text = gtk_entry_get_text(entry);
-       if (*text != '\0')
-               gtk_entry_append_text(entry, ", ");
-       gtk_entry_append_text(entry, address);
-#endif
-
        switch (type) {
        case COMPOSE_CC:
                header = N_("Cc:");
@@ -1485,8 +1657,39 @@ void compose_entry_append(Compose *compose, const gchar *address,
                break;
        }
        header = prefs_common.trans_hdr ? gettext(header) : header;
-
-       compose_add_header_entry(compose, header, (gchar *)address);
+       
+       cur = begin = (gchar *)address;
+       
+       /* we separate the line by commas, but not if we're inside a quoted
+        * string */
+       while (*cur != '\0') {
+               if (*cur == '"') 
+                       in_quote = !in_quote;
+               if (*cur == ',' && !in_quote) {
+                       gchar *tmp = g_strdup(begin);
+                       gchar *o_tmp = tmp;
+                       tmp[cur-begin]='\0';
+                       cur++;
+                       begin = cur;
+                       while (*tmp == ' ')
+                               tmp++;
+                       compose_add_header_entry(compose, header, tmp);
+                       g_free(o_tmp);
+                       continue;
+               }
+               cur++;
+       }
+       if (begin < cur) {
+               gchar *tmp = g_strdup(begin);
+               gchar *o_tmp = tmp;
+               tmp[cur-begin]='\0';
+               cur++;
+               begin = cur;
+               while (*tmp == ' ')
+                       tmp++;
+               compose_add_header_entry(compose, header, tmp);
+               g_free(o_tmp);          
+       }
 }
 
 void compose_entry_mark_default_to(Compose *compose, const gchar *mailto)
@@ -1502,20 +1705,12 @@ void compose_entry_mark_default_to(Compose *compose, const gchar *mailto)
                    !g_utf8_collate(gtk_entry_get_text(entry), mailto)) {
                        gtk_widget_ensure_style(GTK_WIDGET(entry));
                        if (!bold_style) {
-                               PangoFontDescription *font_desc = NULL;
                                gtkut_convert_int_to_gdk_color
                                        (prefs_common.color_new, &bold_color);
                                bold_style = gtk_style_copy(gtk_widget_get_style
                                        (GTK_WIDGET(entry)));
-                               if (BOLD_FONT)
-                                       font_desc = pango_font_description_from_string
-                                                       (BOLD_FONT);
-                               if (font_desc) {
-                                       if (bold_style->font_desc)
-                                               pango_font_description_free
-                                                       (bold_style->font_desc);
-                                       bold_style->font_desc = font_desc;
-                               }
+                               pango_font_description_set_weight
+                                       (bold_style->font_desc, PANGO_WEIGHT_BOLD);
                                bold_style->fg[GTK_STATE_NORMAL] = bold_color;
                        }
                        gtk_widget_set_style(GTK_WIDGET(entry), bold_style);
@@ -1553,10 +1748,10 @@ void compose_toolbar_cb(gint action, gpointer data)
                compose_ext_editor_cb(compose, 0, NULL);
                break;
        case A_LINEWRAP_CURRENT:
-               compose_wrap_line(compose);
+               compose_beautify_paragraph(compose, NULL, TRUE);
                break;
        case A_LINEWRAP_ALL:
-               compose_wrap_line_all(compose);
+               compose_wrap_all_full(compose, TRUE);
                break;
        case A_ADDRBOOK:
                compose_address_cb(compose, 0, NULL);
@@ -1575,36 +1770,54 @@ static void compose_entries_set(Compose *compose, const gchar *mailto)
 {
        gchar *to = NULL;
        gchar *cc = NULL;
-       gchar *bcc = NULL;
        gchar *subject = NULL;
        gchar *body = NULL;
+       gchar *temp = NULL;
+       gint  len = 0;
 
-       scan_mailto_url(mailto, &to, &cc, &bcc, &subject, &body);
+       scan_mailto_url(mailto, &to, &cc, NULL, &subject, &body);
 
        if (to)
                compose_entry_append(compose, to, COMPOSE_TO);
        if (cc)
                compose_entry_append(compose, cc, COMPOSE_CC);
-       if (bcc)
-               compose_entry_append(compose, bcc, COMPOSE_BCC);
-       if (subject)
-               gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
+       if (subject) {
+               if (!g_utf8_validate (subject, -1, NULL)) {
+                       temp = g_locale_to_utf8 (subject, -1, NULL, &len, NULL);
+                       gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), temp);
+                       g_free(temp);
+               } else {
+                       gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
+               }
+       }
        if (body) {
                GtkTextView *text = GTK_TEXT_VIEW(compose->text);
                GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
                GtkTextMark *mark;
                GtkTextIter iter;
+               gboolean prev_autowrap = compose->autowrap;
+
+               compose->autowrap = FALSE;
 
                mark = gtk_text_buffer_get_insert(buffer);
                gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
 
-               gtk_text_buffer_insert(buffer, &iter, body, -1);
+               if (!g_utf8_validate (body, -1, NULL)) {
+                       temp = g_locale_to_utf8 (body, -1, NULL, &len, NULL);
+                       gtk_text_buffer_insert(buffer, &iter, temp, -1);
+                       g_free(temp);
+               } else {
+                       gtk_text_buffer_insert(buffer, &iter, body, -1);
+               }
                gtk_text_buffer_insert(buffer, &iter, "\n", 1);
+
+               compose->autowrap = prev_autowrap;
+               if (compose->autowrap)
+                       compose_wrap_all(compose);
        }
 
        g_free(to);
        g_free(cc);
-       g_free(bcc);
        g_free(subject);
        g_free(body);
 }
@@ -1642,13 +1855,17 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
        fclose(fp);
 
        if (hentry[H_REPLY_TO].body != NULL) {
-               conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
-               compose->replyto = hentry[H_REPLY_TO].body;
+               if (hentry[H_REPLY_TO].body[0] != '\0') {
+                       compose->replyto =
+                               conv_unmime_header(hentry[H_REPLY_TO].body,
+                                                  NULL);
+               }
+               g_free(hentry[H_REPLY_TO].body);
                hentry[H_REPLY_TO].body = NULL;
        }
        if (hentry[H_CC].body != NULL) {
-               conv_unmime_header_overwrite(hentry[H_CC].body);
-               compose->cc = hentry[H_CC].body;
+               compose->cc = conv_unmime_header(hentry[H_CC].body, NULL);
+               g_free(hentry[H_CC].body);
                hentry[H_CC].body = NULL;
        }
        if (hentry[H_REFERENCES].body != NULL) {
@@ -1662,21 +1879,23 @@ 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) {
-                       conv_unmime_header_overwrite(hentry[H_BCC].body);
-                       compose->bcc = hentry[H_BCC].body;
-               } else
-                       g_free(hentry[H_BCC].body);
+               if (compose->mode == COMPOSE_REEDIT)
+                       compose->bcc =
+                               conv_unmime_header(hentry[H_BCC].body, NULL);
+               g_free(hentry[H_BCC].body);
                hentry[H_BCC].body = NULL;
        }
        if (hentry[H_NEWSGROUPS].body != NULL) {
-               conv_unmime_header_overwrite(hentry[H_NEWSGROUPS].body);
                compose->newsgroups = hentry[H_NEWSGROUPS].body;
                hentry[H_NEWSGROUPS].body = NULL;
        }
        if (hentry[H_FOLLOWUP_TO].body != NULL) {
-               conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
-               compose->followup_to = hentry[H_FOLLOWUP_TO].body;
+               if (hentry[H_FOLLOWUP_TO].body[0] != '\0') {
+                       compose->followup_to =
+                               conv_unmime_header(hentry[H_FOLLOWUP_TO].body,
+                                                  NULL);
+               }
+               g_free(hentry[H_FOLLOWUP_TO].body);
                hentry[H_FOLLOWUP_TO].body = NULL;
        }
        if (hentry[H_LIST_POST].body != NULL) {
@@ -1712,13 +1931,17 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                        compose->priority =  priority;
                }
  
-       if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
-               compose->inreplyto = g_strdup(msginfo->inreplyto);
-       else if (compose->mode != COMPOSE_REEDIT &&
-                msginfo->msgid && *msginfo->msgid) {
+       if (compose->mode == COMPOSE_REEDIT) {
+               if (msginfo->inreplyto && *msginfo->inreplyto)
+                       compose->inreplyto = g_strdup(msginfo->inreplyto);
+               return 0;
+       }
+
+       if (msginfo->msgid && *msginfo->msgid)
                compose->inreplyto = g_strdup(msginfo->msgid);
 
-               if (!compose->references) {
+       if (!compose->references) {
+               if (msginfo->msgid && *msginfo->msgid) {
                        if (msginfo->inreplyto && *msginfo->inreplyto)
                                compose->references =
                                        g_strdup_printf("<%s>\n\t<%s>",
@@ -1728,6 +1951,10 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                                compose->references =
                                        g_strconcat("<", msginfo->msgid, ">",
                                                    NULL);
+               } else if (msginfo->inreplyto && *msginfo->inreplyto) {
+                       compose->references =
+                               g_strconcat("<", msginfo->inreplyto, ">",
+                                           NULL);
                }
        }
 
@@ -1793,7 +2020,10 @@ static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
        gchar *buf;
        gchar *p, *lastp;
        gint len;
+       gboolean prev_autowrap;
        const gchar *trimmed_body = body;
+       GtkTextView *text = GTK_TEXT_VIEW(compose->text);
+       GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
        
        if (!msginfo)
                msginfo = &dummyinfo;
@@ -1827,18 +2057,19 @@ static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
        } else
                buf = "";
 
+       prev_autowrap = compose->autowrap;
+       compose->autowrap = FALSE;
+
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),
+                               G_CALLBACK(compose_changed_cb),
+                               compose);
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),
+                               G_CALLBACK(text_inserted),
+                               compose);
        for (p = buf; *p != '\0'; ) {
-               GtkTextView *text = GTK_TEXT_VIEW(compose->text);
-               GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
                GtkTextMark *mark;
                GtkTextIter iter;
 
-               g_signal_handlers_block_by_func(G_OBJECT(buffer),
-                                       G_CALLBACK(compose_changed_cb),
-                                       compose);
-               g_signal_handlers_block_by_func(G_OBJECT(buffer),
-                                       G_CALLBACK(text_inserted),
-                                       compose);
                
                mark = gtk_text_buffer_get_insert(buffer);
                gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
@@ -1846,21 +2077,38 @@ static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
                lastp = strchr(p, '\n');
                len = lastp ? lastp - p + 1 : -1;
 
-               gtk_text_buffer_insert(buffer, &iter, p, len);
+               if (g_utf8_validate(p, -1, NULL)) { 
+                       gtk_text_buffer_insert(buffer, &iter, p, len);
+               } else {
+                       gchar *tmpin = g_strdup(p);
+                       gchar *tmpout = NULL;
+                       tmpin[len] = '\0';
+                       tmpout = conv_codeset_strdup
+                               (tmpin, conv_get_locale_charset_str(),
+                                CS_INTERNAL);
+                       gtk_text_buffer_insert(buffer, &iter, tmpout, -1);
+                       g_free(tmpin);
+                       g_free(tmpout);
+               }
 
-               g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
-                                       G_CALLBACK(compose_changed_cb),
-                                       compose);
-               g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
-                                       G_CALLBACK(text_inserted),
-                                       compose);
-               
                if (lastp)
                        p = lastp + 1;
                else
                        break;
        }
 
+       compose->autowrap = prev_autowrap;
+       if (compose->autowrap)
+               compose_wrap_all(compose);
+
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
+                               G_CALLBACK(compose_changed_cb),
+                               compose);
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
+                               G_CALLBACK(text_inserted),
+                               compose);
+
+
        return buf;
 }
 
@@ -2023,7 +2271,7 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
        SET_ADDRESS(COMPOSE_FOLLOWUPTO, compose->followup_to);
 
        compose_update_priority_menu_item(compose);
-       compose_update_privacy_system_menu_item(compose);
+       compose_update_privacy_system_menu_item(compose, FALSE);
        compose_show_first_last_header(compose, TRUE);
 }
 
@@ -2035,12 +2283,16 @@ static void compose_insert_sig(Compose *compose, gboolean replace)
        GtkTextView *text = GTK_TEXT_VIEW(compose->text);
        GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
        GtkTextMark *mark;
-       GtkTextIter iter;
+       GtkTextIter iter, iter_end;
        gint cur_pos;
+       gboolean prev_autowrap;
 
        
        g_return_if_fail(compose->account != NULL);
 
+       prev_autowrap = compose->autowrap;
+       compose->autowrap = FALSE;
+
        g_signal_handlers_block_by_func(G_OBJECT(buffer),
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
@@ -2077,24 +2329,35 @@ static void compose_insert_sig(Compose *compose, gboolean replace)
        if (!compose->sig_str || (replace && !compose->account->auto_sig))
                compose->sig_str = g_strdup("");
 
+       cur_pos = gtk_text_iter_get_offset(&iter);
        gtk_text_buffer_insert(buffer, &iter, compose->sig_str, -1);
+       /* skip \n\n */
+       gtk_text_buffer_get_iter_at_offset(buffer, &iter, cur_pos);
+       gtk_text_iter_forward_char(&iter);
+       gtk_text_iter_forward_char(&iter);
+       gtk_text_buffer_get_end_iter(buffer, &iter_end);
+       gtk_text_buffer_apply_tag_by_name(buffer,"signature",&iter, &iter_end);
 
        if (cur_pos > gtk_text_buffer_get_char_count (buffer))
                cur_pos = gtk_text_buffer_get_char_count (buffer);
 
-       gtk_text_buffer_get_iter_at_offset (buffer, &iter, cur_pos);
-       gtk_text_buffer_place_cursor (buffer, &iter);
+       gtk_text_buffer_get_iter_at_offset(buffer, &iter, cur_pos);
+       gtk_text_buffer_place_cursor(buffer, &iter);
 
        g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
                                        G_CALLBACK(compose_changed_cb),
                                        compose);
-       
+               
+       compose->autowrap = prev_autowrap;
+       if (compose->autowrap)
+               compose_wrap_all(compose);
 }
 
 static gchar *compose_get_signature_str(Compose *compose)
 {
        gchar *sig_body = NULL;
        gchar *sig_str = NULL;
+       gchar *utf8_sig_str = NULL;
 
        g_return_val_if_fail(compose->account != NULL, NULL);
 
@@ -2121,15 +2384,25 @@ static gchar *compose_get_signature_str(Compose *compose)
                g_free(tmp);
        }
 
-       if (compose->account->sig_sep)
+       if (compose->account->sig_sep) {
                sig_str = g_strconcat("\n\n", compose->account->sig_sep, "\n", sig_body,
                                      NULL);
-       else
+               g_free(sig_body);
+       } else
                sig_str = g_strconcat("\n\n", sig_body, NULL);
 
-       g_free(sig_body);
-       
-       return sig_str;
+       if (sig_str) {
+               if (g_utf8_validate(sig_str, -1, NULL) == TRUE)
+                       utf8_sig_str = sig_str;
+               else {
+                       utf8_sig_str = conv_codeset_strdup
+                               (sig_str, conv_get_locale_charset_str(),
+                                CS_INTERNAL);
+                       g_free(sig_str);
+               }
+       }
+
+       return utf8_sig_str;
 }
 
 static ComposeInsertResult compose_insert_file(Compose *compose, const gchar *file)
@@ -2138,18 +2411,23 @@ static ComposeInsertResult compose_insert_file(Compose *compose, const gchar *fi
        GtkTextBuffer *buffer;
        GtkTextMark *mark;
        GtkTextIter iter;
+       const gchar *cur_encoding;
        gchar buf[BUFFSIZE];
        gint len;
        FILE *fp;
+       gboolean prev_autowrap;
        gboolean badtxt = FALSE;
 
        g_return_val_if_fail(file != NULL, COMPOSE_INSERT_NO_FILE);
 
-       if ((fp = fopen(file, "rb")) == NULL) {
+       if ((fp = g_fopen(file, "rb")) == NULL) {
                FILE_OP_ERROR(file, "fopen");
                return COMPOSE_INSERT_READ_ERROR;
        }
 
+       prev_autowrap = compose->autowrap;
+       compose->autowrap = FALSE;
+
        text = GTK_TEXT_VIEW(compose->text);
        buffer = gtk_text_view_get_buffer(text);
        mark = gtk_text_buffer_get_insert(buffer);
@@ -2159,14 +2437,16 @@ static ComposeInsertResult compose_insert_file(Compose *compose, const gchar *fi
                                        G_CALLBACK(text_inserted),
                                        compose);
 
+       cur_encoding = conv_get_locale_charset_str();
+
        while (fgets(buf, sizeof(buf), fp) != NULL) {
-               const gchar *cur_encoding = conv_get_current_charset_str();
-               gchar *str = NULL;
-               if (!g_utf8_validate(buf, -1, NULL))
-                       str = conv_codeset_strdup(buf, cur_encoding, CS_UTF_8);
-               else
-                       str = g_strdup(buf);
+               gchar *str;
 
+               if (g_utf8_validate(buf, -1, NULL) == TRUE)
+                       str = g_strdup(buf);
+               else
+                       str = conv_codeset_strdup
+                               (buf, cur_encoding, CS_INTERNAL);
                if (!str) continue;
 
                /* strip <CR> if DOS/Windows file,
@@ -2177,14 +2457,17 @@ static ComposeInsertResult compose_insert_file(Compose *compose, const gchar *fi
                        while (--len >= 0)
                                if (str[len] == '\r') str[len] = '\n';
                }
-               gtk_text_buffer_insert(buffer, &iter, str, -1);
 
-               g_free (str);
+               gtk_text_buffer_insert(buffer, &iter, str, -1);
+               g_free(str);
        }
 
        g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
                                          G_CALLBACK(text_inserted),
                                          compose);
+       compose->autowrap = prev_autowrap;
+       if (compose->autowrap)
+               compose_wrap_all(compose);
 
        fclose(fp);
 
@@ -2199,39 +2482,35 @@ static void compose_attach_append(Compose *compose, const gchar *file,
                                  const gchar *content_type)
 {
        AttachInfo *ainfo;
-       gchar *text[N_ATTACH_COLS];
+       GtkTreeIter iter;
        FILE *fp;
        off_t size;
-       gint row;
+       GAuto *auto_ainfo;
+       gchar *size_text;
+       GtkListStore *store;
        gchar *name;
 
        if (!is_file_exist(file)) {
-               g_warning("File %s doesn't exist\n", file);
+               g_warning("File %s doesn't exist\n", filename);
                return;
        }
        if ((size = get_file_size(file)) < 0) {
-               g_warning("Can't get file size of %s\n", file);
+               g_warning("Can't get file size of %s\n", filename);
                return;
        }
        if (size == 0) {
-               alertpanel_notice(_("File %s is empty."), file);
+               alertpanel_notice(_("File %s is empty."), filename);
                return;
        }
-       if ((fp = fopen(file, "rb")) == NULL) {
-               alertpanel_error(_("Can't read %s."), file);
+       if ((fp = g_fopen(file, "rb")) == NULL) {
+               alertpanel_error(_("Can't read %s."), filename);
                return;
        }
        fclose(fp);
 
-#if 0 /* NEW COMPOSE GUI */
-       if (!compose->use_attach) {
-               GtkItemFactory *ifactory;
-
-               ifactory = gtk_item_factory_from_widget(compose->menubar);
-               menu_set_active(ifactory, "/View/Attachment", TRUE);
-       }
-#endif
        ainfo = g_new0(AttachInfo, 1);
+       auto_ainfo = g_auto_pointer_new_with_free
+                       (ainfo, (GFreeFunc) compose_attach_info_free); 
        ainfo->file = g_strdup(file);
 
        if (content_type) {
@@ -2285,13 +2564,21 @@ static void compose_attach_append(Compose *compose, const gchar *file,
        }
 
        ainfo->size = size;
+       size_text = to_human_readable(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);
+       store = GTK_LIST_STORE(gtk_tree_view_get_model
+                       (GTK_TREE_VIEW(compose->attach_clist)));
+               
+       gtk_list_store_append(store, &iter);
+       gtk_list_store_set(store, &iter, 
+                          COL_MIMETYPE, ainfo->content_type,
+                          COL_SIZE, size_text,
+                          COL_NAME, ainfo->name,
+                          COL_DATA, ainfo,
+                          COL_AUTODATA, auto_ainfo,
+                          -1);
+       
+       g_auto_pointer_free(auto_ainfo);
 }
 
 static void compose_use_signing(Compose *compose, gboolean use_signing)
@@ -2358,13 +2645,7 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
        } else if (compose->mode == COMPOSE_REEDIT &&
                 child->type == MIMETYPE_APPLICATION &&
                 !g_ascii_strcasecmp(child->subtype, "pgp-encrypted")) {
-               AlertValue val;
-               val = alertpanel(_("Encrypted message"),
-                                _("Cannot re-edit an encrypted message. \n"
-                                  "Discard encrypted part?"),
-                                _("Yes"), _("No"), NULL);
-               if (val == G_ALERTDEFAULT) 
-                       encrypted = (MimeInfo *)child->node->parent->data;
+               encrypted = (MimeInfo *)child->node->parent->data;
        }
      
        child = (MimeInfo *) mimeinfo->node->children->data;
@@ -2393,11 +2674,20 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
                        gchar *content_type;
 
                        content_type = procmime_get_content_type_str(child->type, child->subtype);
-                       partname = procmime_mimeinfo_get_parameter(child, "name");
-                       if (partname == NULL)
-                               partname = "";
-                       compose_attach_append(compose, outfile, 
-                                             partname, content_type);
+
+                       /* if we meet a pgp signature, we don't attach it, but
+                        * we force signing. */
+                       if (strcmp(content_type, "application/pgp-signature")) {
+                               partname = procmime_mimeinfo_get_parameter(child, "filename");
+                               if (partname == NULL)
+                                       partname = procmime_mimeinfo_get_parameter(child, "name");
+                               if (partname == NULL)
+                                       partname = "";
+                               compose_attach_append(compose, outfile, 
+                                                     partname, content_type);
+                       } else {
+                               compose_force_signing(compose, compose->account);
+                       }
                        g_free(content_type);
                }
                g_free(outfile);
@@ -2406,702 +2696,587 @@ static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
        procmime_mimeinfo_free_all(mimeinfo);
 }
 
-  
-#define CHAR_BUF_SIZE 8
 #undef NEXT_PART_NOT_CHILD
 
-#define GET_CHAR(iter_p, buf, len)                                          \
-{                                                                           \
-       GtkTextIter end_iter;                                                \
-       gchar *tmp;                                                          \
-       end_iter = *iter_p;                                                  \
-       gtk_text_iter_forward_char(&end_iter);                               \
-       tmp = gtk_text_buffer_get_text(textbuf, iter_p, &end_iter, FALSE);   \
-       if (tmp) {                                                           \
-               glong items_read, items_witten;                              \
-               GError *error = NULL;                                        \
-               gunichar *wide_char;                                         \
-               strncpy2(buf, tmp, CHAR_BUF_SIZE);                           \
-               wide_char = g_utf8_to_ucs4(tmp, -1,                          \
-                                          &items_read, &items_witten,       \
-                                          &error);                          \
-               if (error != NULL) {                                         \
-                       g_warning("%s\n", error->message);                   \
-                       g_error_free(error);                                 \
-               }                                                            \
-               len = wide_char && g_unichar_iswide(*wide_char) ? 2 : 1;     \
-               g_free(wide_char);                                           \
-       } else {                                                             \
-               buf[0] = '\0';                                               \
-               len = 1;                                                     \
-       }                                                                    \
-       g_free(tmp);                                                         \
-}
-
-#define DISP_WIDTH(len) \
-       ((len > 2 && conv_get_current_charset() == C_UTF_8) ? 2 : \
-        (len == 2 && conv_get_current_charset() == C_UTF_8) ? 1 : len)
-
-#define SPACE_CHARS    " \t"
-
-static void compose_wrap_line(Compose *compose)
-{
-       GtkTextView *text = GTK_TEXT_VIEW(compose->text);
-       GtkTextBuffer *textbuf = gtk_text_view_get_buffer(text);
-       GtkTextMark *mark;
-       GtkTextIter insert_iter, iter;
-       gint ch_len, last_ch_len;
-       gchar cbuf[CHAR_BUF_SIZE], last_ch;
-       guint text_len;
-       gint p_start, p_end;
-       gint line_pos, cur_pos;
-       gint line_len, cur_len;
-       gboolean line_end, quoted;
-
-       text_len = gtk_text_buffer_get_char_count(textbuf);
-       mark = gtk_text_buffer_get_insert(textbuf);
-       gtk_text_buffer_get_iter_at_mark(textbuf, &insert_iter, mark);
-       cur_pos = gtk_text_iter_get_offset(&insert_iter);
-       GET_CHAR(&insert_iter, cbuf, ch_len);
-       if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
-               GtkTextIter prev_iter;
-               if (cur_pos == 0)
-                       return; /* on the paragraph mark */
-               prev_iter = insert_iter;
-               gtk_text_iter_backward_char(&prev_iter);
-               GET_CHAR(&prev_iter, cbuf, ch_len);
-               if (ch_len == 1 && *cbuf == '\n')
-                       return; /* on the paragraph mark */
-       }
-
-       /* find paragraph start. */
-       line_end = quoted = FALSE;
-       for (iter = insert_iter; gtk_text_iter_backward_char(&iter);) {
-               GET_CHAR(&iter, cbuf, ch_len);
-               if (ch_len == 1 && *cbuf == '\n') {
-                       if (quoted)
-                               return; /* quoted part */
-                       if (line_end) {
-                               gtk_text_iter_forward_chars(&iter, 2);
-                               break;
-                       }
-                       line_end = TRUE;
-               } else {
-                       if (ch_len == 1 
-                           && strchr(prefs_common.quote_chars, *cbuf))
-                               quoted = 1;
-                       else if (ch_len != 1 || !isspace(*(guchar *)cbuf))
-                               quoted = 0;
-
-                       line_end = FALSE;
-               }
-       }
-       p_start = gtk_text_iter_get_offset(&iter);
 
-       /* find paragraph end. */
-       line_end = FALSE;
-       for (iter = insert_iter; gtk_text_iter_forward_char(&iter);) {
-               GET_CHAR(&iter, cbuf, ch_len);
-               if (ch_len == 1 && *cbuf == '\n') {
-                       if (line_end) {
-                               p_end -= 1;
-                               gtk_text_iter_backward_char(&iter);
-                               break;
-                       }
-                       line_end = TRUE;
-               } else {
-                       if (line_end && ch_len == 1 &&
-                           strchr(prefs_common.quote_chars, *cbuf))
-                               return; /* quoted part */
 
-                       line_end = FALSE;
-               }
-       }
-       p_end = gtk_text_iter_get_offset(&iter);
+typedef enum {
+       WAIT_FOR_INDENT_CHAR,
+       WAIT_FOR_INDENT_CHAR_OR_SPACE,
+} IndentState;
 
-       if (p_end >= text_len)
-               p_end = text_len;
-
-       if (p_start >= p_end)
-               return;
-
-       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++) {
-               gboolean space = FALSE;
-
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter, cur_pos);
-
-               GET_CHAR(&iter, cbuf, ch_len);
-
-               if (ch_len < 0) {
-                       cbuf[0] = '\0';
-                       ch_len = 1;
-               }
+/* return indent length, we allow:
+   indent characters followed by indent characters or spaces/tabs,
+   alphabets and numbers immediately followed by indent characters,
+   and the repeating sequences of the above
+   If quote ends with multiple spaces, only the first one is included. */
+static gchar *compose_get_quote_str(GtkTextBuffer *buffer,
+                                   const GtkTextIter *start, gint *len)
+{
+       GtkTextIter iter = *start;
+       gunichar wc;
+       gchar ch[6];
+       gint clen;
+       IndentState state = WAIT_FOR_INDENT_CHAR;
+       gboolean is_space;
+       gboolean is_indent;
+       gint alnum_count = 0;
+       gint space_count = 0;
+       gint quote_len = 0;
 
-               if (ch_len == 1 && isspace(*(guchar *)cbuf))
-                       space = 1;
+       if (prefs_common.quote_chars == NULL) {
+               return 0 ;
+       }
 
-               if (ch_len == 1 && *cbuf == '\n') {
-                       gboolean replace = FALSE;
-                       GtkTextIter next_iter = iter;
+       while (!gtk_text_iter_ends_line(&iter)) {
+               wc = gtk_text_iter_get_char(&iter);
+               if (g_unichar_iswide(wc))
+                       break;
+               clen = g_unichar_to_utf8(wc, ch);
+               if (clen != 1)
+                       break;
 
-                       gtk_text_iter_forward_char(&next_iter);
+               is_indent = strchr(prefs_common.quote_chars, ch[0]) ? TRUE : FALSE;
+               is_space = g_unichar_isspace(wc);
 
-                       if (last_ch_len == 1 && !isspace((guchar)last_ch)) {
-                               if (cur_pos + 1 < p_end) {
-                                       GET_CHAR(&next_iter, cbuf, ch_len);
-                                       if (ch_len == 1 &&
-                                           !isspace(*(guchar *)cbuf))
-                                               replace = TRUE;
-                               }
-                       }
-                       gtk_text_buffer_delete(textbuf, &iter, &next_iter);
-                       if (replace) {
-                               gtk_text_buffer_insert(textbuf, &iter, " ", 1);
-                               space = TRUE;
-                       }
-                       else {
-                               p_end--;
-                               cur_pos--;
-                               gtk_text_buffer_get_iter_at_offset
-                                       (textbuf, &iter, cur_pos);
-                               continue;
+               if (state == WAIT_FOR_INDENT_CHAR) {
+                       if (!is_indent && !g_unichar_isalnum(wc))
+                               break;
+                       if (is_indent) {
+                               quote_len += alnum_count + space_count + 1;
+                               alnum_count = space_count = 0;
+                               state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
+                       } else
+                               alnum_count++;
+               } else if (state == WAIT_FOR_INDENT_CHAR_OR_SPACE) {
+                       if (!is_indent && !is_space && !g_unichar_isalnum(wc))
+                               break;
+                       if (is_space)
+                               space_count++;
+                       else if (is_indent) {
+                               quote_len += alnum_count + space_count + 1;
+                               alnum_count = space_count = 0;
+                       } else {
+                               alnum_count++;
+                               state = WAIT_FOR_INDENT_CHAR;
                        }
                }
 
-               last_ch_len = ch_len;
-               last_ch = *cbuf;
-
-               if (space) {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len + ch_len;
-               }
-
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter, line_pos);
-
-               if (cur_len + ch_len > prefs_common.linewrap_len &&
-                   line_len > 0) {
-                       gint tlen = ch_len;
-                       GtkTextIter prev_iter = iter;
+               gtk_text_iter_forward_char(&iter);
+       }
 
-                       gtk_text_iter_backward_char(&prev_iter);
+       if (quote_len > 0 && space_count > 0)
+               quote_len++;
 
-                       GET_CHAR(&prev_iter, cbuf, ch_len);
-                       if (ch_len == 1 && isspace(*(guchar *)cbuf)) {
-                               gtk_text_buffer_delete(textbuf, &prev_iter, &iter);
-                               iter = prev_iter;
-                               p_end--;
-                               cur_pos--;
-                               line_pos--;
-                               cur_len--;
-                               line_len--;
-                       }
-                       ch_len = tlen;
-
-                       gtk_text_buffer_insert(textbuf, &iter, "\n", 1);
-                       p_end++;
-                       cur_pos++;
-                       line_pos++;
-                       cur_len = cur_len - line_len + ch_len;
-                       line_len = 0;
-                       continue;
-               }
+       if (len)
+               *len = quote_len;
 
-               if (ch_len > 1) {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len + ch_len;
-               }
-               cur_len += ch_len;
+       if (quote_len > 0) {
+               iter = *start;
+               gtk_text_iter_forward_chars(&iter, quote_len);
+               return gtk_text_buffer_get_text(buffer, start, &iter, FALSE);
        }
+
+       return NULL;
 }
 
-#undef WRAP_DEBUG
-#ifdef WRAP_DEBUG
-/* Darko: used when I debug wrapping */
-void dump_text(GtkTextBuffer *textbuf, int pos, int tlen, int breakoncr)
+/* return TRUE if the line is itemized */
+static gboolean compose_is_itemized(GtkTextBuffer *buffer,
+                                   const GtkTextIter *start)
 {
-       gint i, clen;
-       gchar cbuf[CHAR_BUF_SIZE];
-       GtkTextIter iter, end_iter;
+       GtkTextIter iter = *start;
+       gunichar wc;
+       gchar ch[6];
+       gint clen;
 
-       printf("%d [", pos);
-       gtk_text_buffer_get_iter_at_offset(textbuf, &iter, pos);
-       gtk_text_buffer_get_iter_at_offset(textbuf, &end_iter, pos + tlen);
-       for (; gtk_text_iter_forward_char(&iter) &&
-                    gtk_text_iter_compare(&iter, &end_iter) < 0;) {
-               GET_CHAR(&iter, cbuf, clen);
-               if (clen < 0) break;
-               if (breakoncr && clen == 1 && cbuf[0] == '\n')
+       if (gtk_text_iter_ends_line(&iter))
+               return FALSE;
+
+       while (1) {
+               wc = gtk_text_iter_get_char(&iter);
+               if (!g_unichar_isspace(wc))
                        break;
-               fwrite(cbuf, clen, 1, stdout);
+               gtk_text_iter_forward_char(&iter);
+               if (gtk_text_iter_ends_line(&iter))
+                       return FALSE;
        }
-       printf("]\n");
-}
-#endif
 
-typedef enum {
-       WAIT_FOR_SPACE,
-       WAIT_FOR_INDENT_CHAR,
-       WAIT_FOR_INDENT_CHAR_OR_SPACE
-} IndentState;
+       clen = g_unichar_to_utf8(wc, ch);
+       if (clen != 1)
+               return FALSE;
 
-/* return indent length, we allow:
-   > followed by spaces/tabs
-   | followed by spaces/tabs
-   uppercase characters immediately followed by >,
-   and the repeating sequences of the above */
-/* return indent length */
-static guint get_indent_length(GtkTextBuffer *textbuf, guint start_pos, guint text_len)
-{
-       guint i_len = 0;
-       guint i, ch_len, alnum_cnt = 0;
-       IndentState state = WAIT_FOR_INDENT_CHAR;
-       gchar cbuf[CHAR_BUF_SIZE];
-       gboolean is_space;
-       gboolean is_indent;
+       if (!strchr("*-+", ch[0]))
+               return FALSE;
 
-       if (prefs_common.quote_chars == NULL) {
-               return 0 ;
-       }
+       gtk_text_iter_forward_char(&iter);
+       if (gtk_text_iter_ends_line(&iter))
+               return FALSE;
+       wc = gtk_text_iter_get_char(&iter);
+       if (g_unichar_isspace(wc))
+               return TRUE;
 
-       for (i = start_pos; i < text_len; i++) {
-               GtkTextIter iter;
+       return FALSE;
+}
 
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter, i);
-               GET_CHAR(&iter, cbuf, ch_len);
-               if (ch_len > 1)
+static gboolean compose_get_line_break_pos(GtkTextBuffer *buffer,
+                                          const GtkTextIter *start,
+                                          GtkTextIter *break_pos,
+                                          gint max_col,
+                                          gint quote_len)
+{
+       GtkTextIter iter = *start, line_end = *start;
+       PangoLogAttr *attrs;
+       gchar *str;
+       gchar *p;
+       gint len;
+       gint i;
+       gint col = 0;
+       gint pos = 0;
+       gboolean can_break = FALSE;
+       gboolean do_break = FALSE;
+       gboolean was_white = FALSE;
+       gboolean prev_dont_break = FALSE;
+
+       gtk_text_iter_forward_to_line_end(&line_end);
+       str = gtk_text_buffer_get_text(buffer, &iter, &line_end, FALSE);
+       len = g_utf8_strlen(str, -1);
+       /* g_print("breaking line: %d: %s (len = %d)\n",
+               gtk_text_iter_get_line(&iter), str, len); */
+       attrs = g_new(PangoLogAttr, len + 1);
+
+       pango_default_break(str, -1, NULL, attrs, len + 1);
+
+       p = str;
+
+       /* skip quote and leading spaces */
+       for (i = 0; *p != '\0' && i < len; i++) {
+               gunichar wc;
+
+               wc = g_utf8_get_char(p);
+               if (i >= quote_len && !g_unichar_isspace(wc))
                        break;
+               if (g_unichar_iswide(wc))
+                       col += 2;
+               else if (*p == '\t')
+                       col += 8;
+               else
+                       col++;
+               p = g_utf8_next_char(p);
+       }
 
-               if (cbuf[0] == '\n')
-                       break;
+       for (; *p != '\0' && i < len; i++) {
+               PangoLogAttr *attr = attrs + i;
+               gunichar wc;
+               gint uri_len;
 
-               is_indent = strchr(prefs_common.quote_chars, cbuf[0]) ? TRUE : FALSE;
-               is_space = strchr(SPACE_CHARS, cbuf[0]) ? TRUE : FALSE;
+               if (attr->is_line_break && can_break && was_white && !prev_dont_break)
+                       pos = i;
+               
+               was_white = attr->is_white;
 
-               switch (state) {
-               case WAIT_FOR_SPACE:
-                       if (is_space == FALSE)
-                               goto out;
-                       state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
-                       break;
-               case WAIT_FOR_INDENT_CHAR_OR_SPACE:
-                       if (is_indent == FALSE && is_space == FALSE &&
-                           !isupper((guchar)cbuf[0]))
-                               goto out;
-                       if (is_space == TRUE) {
-                               alnum_cnt = 0;
-                               state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
-                       } else if (is_indent == TRUE) {
-                               alnum_cnt = 0;
-                               state = WAIT_FOR_SPACE;
-                       } else {
-                               alnum_cnt++;
-                               state = WAIT_FOR_INDENT_CHAR;
-                       }
-                       break;
-               case WAIT_FOR_INDENT_CHAR:
-                       if (is_indent == FALSE && !isupper((guchar)cbuf[0]))
-                               goto out;
-                       if (is_indent == TRUE) {
-                               if (alnum_cnt > 0 
-                                   && !strchr(prefs_common.quote_chars, cbuf[0]))
-                                       goto out;
-                               alnum_cnt = 0;
-                               state = WAIT_FOR_SPACE;
-                       } else {
-                               alnum_cnt++;
+               /* don't wrap URI */
+               if ((uri_len = get_uri_len(p)) > 0) {
+                       col += uri_len;
+                       if (pos > 0 && col > max_col) {
+                               do_break = TRUE;
+                               break;
                        }
+                       i += uri_len - 1;
+                       p += uri_len;
+                       can_break = TRUE;
+                       continue;
+               }
+
+               wc = g_utf8_get_char(p);
+               if (g_unichar_iswide(wc)) {
+                       col += 2;
+                       if (prev_dont_break && can_break && attr->is_line_break)
+                               pos = i;
+               } else if (*p == '\t')
+                       col += 8;
+               else
+                       col++;
+               if (pos > 0 && col > max_col) {
+                       do_break = TRUE;
                        break;
                }
 
-               i_len++;
+               if (*p == '-' || *p == '/')
+                       prev_dont_break = TRUE;
+               else
+                       prev_dont_break = FALSE;
+
+               p = g_utf8_next_char(p);
+               can_break = TRUE;
        }
 
-out:
-       if ((i_len > 0) && (state == WAIT_FOR_INDENT_CHAR))
-               i_len -= alnum_cnt;
+       debug_print("compose_get_line_break_pos(): do_break = %d, pos = %d, col = %d\n", do_break, pos, col);
+
+       g_free(attrs);
+       g_free(str);
+
+       *break_pos = *start;
+       gtk_text_iter_set_line_offset(break_pos, pos);
 
-       return i_len;
+       return do_break;
 }
 
-/* insert quotation string when line was wrapped */
-static guint ins_quote(GtkTextBuffer *textbuf, GtkTextIter *iter,
-                      guint indent_len,
-                      guint prev_line_pos, guint text_len,
-                      gchar *quote_fmt)
+static gboolean compose_join_next_line(Compose *compose,
+                                      GtkTextBuffer *buffer,
+                                      GtkTextIter *iter,
+                                      const gchar *quote_str)
 {
-       guint ins_len = 0;
-
-       if (indent_len) {
-               GtkTextIter iter1, iter2;
-               gchar *text;
+       GtkTextIter iter_ = *iter, cur, prev, next, end;
+       PangoLogAttr attrs[3];
+       gchar *str;
+       gchar *next_quote_str;
+       gunichar wc1, wc2;
+       gint quote_len;
+       gboolean keep_cursor = FALSE;
 
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter1,
-                                                  prev_line_pos);
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter2,
-                                                  prev_line_pos + indent_len);
-               text = gtk_text_buffer_get_text(textbuf, &iter1, &iter2, FALSE);
-               if (!text) return 0;
+       if (!gtk_text_iter_forward_line(&iter_) ||
+           gtk_text_iter_ends_line(&iter_))
+               return FALSE;
 
-               gtk_text_buffer_insert(textbuf, iter, text, -1);
-               ins_len = g_utf8_strlen(text, -1);
+       next_quote_str = compose_get_quote_str(buffer, &iter_, &quote_len);
 
-               g_free(text);
+       if ((quote_str || next_quote_str) &&
+           strcmp2(quote_str, next_quote_str) != 0) {
+               g_free(next_quote_str);
+               return FALSE;
        }
+       g_free(next_quote_str);
 
-       return ins_len;
-}
+       end = iter_;
+       if (quote_len > 0) {
+               gtk_text_iter_forward_chars(&end, quote_len);
+               if (gtk_text_iter_ends_line(&end))
+                       return FALSE;
+       }
 
-static gboolean is_sig_separator(Compose *compose, GtkTextBuffer *textbuf, guint start_pos) 
-{
-       char *text = NULL;
-       GtkTextIter iter; 
-       GtkTextIter end_iter;
-       if (!compose->account->sig_sep)
+       /* don't join itemized lines */
+       if (compose_is_itemized(buffer, &end))
                return FALSE;
-       
-       gtk_text_buffer_get_iter_at_offset(textbuf, &iter, start_pos+1);
-       gtk_text_buffer_get_iter_at_offset(textbuf, &end_iter,
-               start_pos+strlen(compose->account->sig_sep)+1);
 
-       if (!strcmp(gtk_text_iter_get_text(&iter, &end_iter),
-                       compose->account->sig_sep)) {
-               /* check \n */
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter,
-                       start_pos+strlen(compose->account->sig_sep)+1);
-               gtk_text_buffer_get_iter_at_offset(textbuf, &end_iter,
-                       start_pos+strlen(compose->account->sig_sep)+2);
+       /* don't join signature separator */
+       if (compose_is_sig_separator(compose, buffer, &iter_))
+               return FALSE;
 
-               if (!strcmp(gtk_text_iter_get_text(&iter, &end_iter),"\n"));
-                       return TRUE;
-               
+       /* delete quote str */
+       if (quote_len > 0)
+               gtk_text_buffer_delete(buffer, &iter_, &end);
 
+       /* delete linebreak and extra spaces */
+       prev = cur = iter_;
+       while (gtk_text_iter_backward_char(&cur)) {
+               wc1 = gtk_text_iter_get_char(&cur);
+               if (!g_unichar_isspace(wc1))
+                       break;
+               prev = cur;
        }
+       next = cur = iter_;
+       while (!gtk_text_iter_ends_line(&cur)) {
+               wc1 = gtk_text_iter_get_char(&cur);
+               if (!g_unichar_isspace(wc1))
+                       break;
+               gtk_text_iter_forward_char(&cur);
+               next = cur;
+       }
+       if (!gtk_text_iter_equal(&prev, &next)) {
+               GtkTextMark *mark;
 
-       return FALSE;
-}
-
-/* check if we should join the next line */
-static gboolean join_next_line_is_needed(GtkTextBuffer *textbuf,
-                                        guint start_pos, guint tlen,
-                                        guint prev_ilen, gboolean autowrap)
-{
-       guint indent_len, ch_len;
-       gboolean do_join = FALSE;
-       gchar cbuf[CHAR_BUF_SIZE];
-
-       indent_len = get_indent_length(textbuf, start_pos, tlen);
-
-       if ((autowrap || indent_len > 0) && indent_len == prev_ilen) {
-               GtkTextIter iter;
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter,
-                                                  start_pos + indent_len);
-               GET_CHAR(&iter, cbuf, ch_len);
-               
-               if (ch_len > 0 && (cbuf[0] != '\n'))
-                       do_join = TRUE;
+               mark = gtk_text_buffer_get_insert(buffer);
+               gtk_text_buffer_get_iter_at_mark(buffer, &cur, mark);
+               if (gtk_text_iter_equal(&prev, &cur))
+                       keep_cursor = TRUE;
+               gtk_text_buffer_delete(buffer, &prev, &next);
+       }
+       iter_ = prev;
+
+       /* insert space if required */
+       gtk_text_iter_backward_char(&prev);
+       wc1 = gtk_text_iter_get_char(&prev);
+       wc2 = gtk_text_iter_get_char(&next);
+       gtk_text_iter_forward_char(&next);
+       str = gtk_text_buffer_get_text(buffer, &prev, &next, FALSE);
+       pango_default_break(str, -1, NULL, attrs, 3);
+       if (!attrs[1].is_line_break ||
+           (!g_unichar_iswide(wc1) || !g_unichar_iswide(wc2))) {
+               gtk_text_buffer_insert(buffer, &iter_, " ", 1);
+               if (keep_cursor) {
+                       gtk_text_iter_backward_char(&iter_);
+                       gtk_text_buffer_place_cursor(buffer, &iter_);
+               }
        }
+       g_free(str);
 
-       return do_join;
+       *iter = iter_;
+       return TRUE;
 }
 
-static void compose_wrap_line_all(Compose *compose)
-{
-       compose_wrap_line_all_full(compose, FALSE);
-}
+#define ADD_TXT_POS(bp_, ep_, pti_) \
+       if ((last->next = alloca(sizeof(struct txtpos))) != NULL) { \
+               last = last->next; \
+               last->bp = (bp_); last->ep = (ep_); last->pti = (pti_); \
+               last->next = NULL; \
+       } else { \
+               g_warning("alloc error scanning URIs\n"); \
+       }
 
-static void compose_wrap_line_all_full(Compose *compose, gboolean autowrap)
+static void compose_beautify_paragraph(Compose *compose, GtkTextIter *par_iter, gboolean force)
 {
        GtkTextView *text = GTK_TEXT_VIEW(compose->text);
-       GtkTextBuffer *textbuf = gtk_text_view_get_buffer(text);
-       GtkTextIter iter, end_iter;
-       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 i_len = 0;
-       gboolean linewrap_quote = prefs_common.linewrap_quote;
-       gboolean set_editable_pos = FALSE;
-       gint editable_pos = 0;
-       guint linewrap_len = prefs_common.linewrap_len;
-       gchar *qfmt = prefs_common.quotemark;
-       gchar cbuf[CHAR_BUF_SIZE];
-       GtkTextMark *cursor_mark = gtk_text_buffer_get_insert(textbuf);
-       
-       tlen = gtk_text_buffer_get_char_count(textbuf);
-
-       for (; cur_pos < tlen; cur_pos++) {
-               /* mark position of new line - needed for quotation wrap */
-               if (is_new_line) {
-                       if (linewrap_quote)
-                               i_len = get_indent_length(textbuf, cur_pos, tlen);
+       GtkTextBuffer *buffer;
+       GtkTextIter iter, break_pos, end_of_line;
+       gchar *quote_str = NULL;
+       gint quote_len;
+       gboolean wrap_quote = prefs_common.linewrap_quote;
+       gboolean prev_autowrap = compose->autowrap;
+       gint startq_offset = -1, noq_offset = -1;
+       gint uri_start = -1, uri_stop = -1;
+       gint nouri_start = -1, nouri_stop = -1;
 
-                       is_new_line = FALSE;
-                       p_pos = cur_pos;
-               }
+       compose->autowrap = FALSE;
 
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter, cur_pos);
-               GET_CHAR(&iter, cbuf, ch_len);
+       buffer = gtk_text_view_get_buffer(text);
 
-               /* fix line length for tabs */
-               if (ch_len == 1 && *cbuf == '\t') {
-                       guint tab_width = 8;
-                       guint tab_offset = line_len % tab_width;
+       undo_block(compose->undostruct);
+       
+       if (par_iter) {
+               iter = *par_iter;
+       } else {
+               GtkTextMark *mark;
+               mark = gtk_text_buffer_get_insert(buffer);
+               gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
+       }
 
-                       line_len += tab_width - tab_offset - 1;
-                       cur_len = line_len;
+       /* move to paragraph start */
+       gtk_text_iter_set_line_offset(&iter, 0);
+       if (gtk_text_iter_ends_line(&iter)) {
+               while (gtk_text_iter_ends_line(&iter) &&
+                      gtk_text_iter_forward_line(&iter))
+                       ;
+       } else {
+               while (gtk_text_iter_backward_line(&iter)) {
+                       if (gtk_text_iter_ends_line(&iter)) {
+                               gtk_text_iter_forward_line(&iter);
+                               break;
+                       }
                }
+       }
 
-               /* we have encountered line break */
-               if (ch_len == 1 && *cbuf == '\n') {
-                       gint clen;
-                       gchar cb[CHAR_BUF_SIZE];
-
-                       /* should we join the next line */
-                       if ((autowrap || i_len != cur_len) && do_delete &&
-                       !is_sig_separator(compose, textbuf, cur_pos+i_len) &&
-                           join_next_line_is_needed
-                               (textbuf, cur_pos + 1, tlen, i_len, autowrap)) {
-                               do_delete = TRUE;
-                       } else
-                               do_delete = FALSE;
-
-                       /* skip delete if it is continuous URL */
-                       if (do_delete && (line_pos - p_pos <= i_len) &&
-                           gtkut_text_buffer_is_uri_string(textbuf, line_pos,
-                                                           tlen))
-                               do_delete = FALSE;
-
-                       /* should we delete to perform smart wrapping */
-                       if (line_len < linewrap_len && do_delete) {
-                               /* get rid of newline */
-                               gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                                  &iter,
-                                                                  cur_pos);
-                               end_iter = iter;
-                               gtk_text_iter_forward_char(&end_iter);
-                               gtk_text_buffer_delete(textbuf, &iter, &end_iter);
-                               tlen--;
-
-                               /* if text starts with quote fmt or with
-                                  indent string, delete them */
-                               if (i_len) {
-                                       guint ilen;
-                                       ilen =  gtkut_text_buffer_str_compare_n
-                                               (textbuf, cur_pos, p_pos, i_len,
-                                                tlen);
-                                       if (ilen) {
-                                               end_iter = iter;
-                                               gtk_text_iter_forward_chars
-                                                       (&end_iter, ilen);
-                                               gtk_text_buffer_delete(textbuf,
-                                                                      &iter,
-                                                                      &end_iter);
-                                               tlen -= ilen;
-                                       }
-                               }
-
-                               gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                                  &iter,
-                                                                  cur_pos);
-                               GET_CHAR(&iter, cb, clen);
-
-                               /* insert space if it's alphanumeric */
-                               if ((cur_pos != line_pos) &&
-                                   ((clen > 1) || isalnum((guchar)cb[0]))) {
-                                       GtkTextIter cursor_iter;
-                                       gboolean go_back = FALSE;
-                                       gtk_text_buffer_get_iter_at_mark(textbuf, &cursor_iter, cursor_mark);
-                                       if (gtk_text_iter_get_offset(&iter) ==
-                                                gtk_text_iter_get_offset(&cursor_iter))
-                                               go_back = TRUE;
-                                       
-                                       gtk_text_buffer_insert(textbuf, &iter,
-                                                              " ", 1);
-                                       if (go_back) {
-                                               gtk_text_buffer_get_iter_at_mark(textbuf, &cursor_iter, cursor_mark);
-                                               gtk_text_iter_backward_chars(&cursor_iter, 1);
-                                               gtk_text_buffer_place_cursor(textbuf, &cursor_iter);
-                                       }
-                                       tlen++;
-                               }
+       /* go until paragraph end (empty line) */
+       while (!gtk_text_iter_ends_line(&iter)) {
+               gchar *scanpos = NULL;
+               /* parse table - in order of priority */
+               struct table {
+                       const gchar *needle; /* token */
+
+                       /* token search function */
+                       gchar    *(*search)     (const gchar *haystack,
+                                                const gchar *needle);
+                       /* part parsing function */
+                       gboolean  (*parse)      (const gchar *start,
+                                                const gchar *scanpos,
+                                                const gchar **bp_,
+                                                const gchar **ep_);
+                       /* part to URI function */
+                       gchar    *(*build_uri)  (const gchar *bp,
+                                                const gchar *ep);
+               };
+
+               static struct table parser[] = {
+                       {"http://",  strcasestr, get_uri_part,   make_uri_string},
+                       {"https://", strcasestr, get_uri_part,   make_uri_string},
+                       {"ftp://",   strcasestr, get_uri_part,   make_uri_string},
+                       {"www.",     strcasestr, get_uri_part,   make_http_string},
+                       {"mailto:",  strcasestr, get_uri_part,   make_uri_string},
+                       {"@",        strcasestr, get_email_part, make_email_string}
+               };
+               const gint PARSE_ELEMS = sizeof parser / sizeof parser[0];
+               gint last_index = PARSE_ELEMS;
+               gint  n;
+               gchar *o_walk = NULL, *walk = NULL, *bp = NULL, *ep = NULL;
+               gint walk_pos;
+               
+               if (gtk_text_iter_has_tag(&iter, compose->no_wrap_tag) && !force)
+                       goto colorize;
 
-                               /* and start over with current line */
-                               cur_pos = p_pos - 1;
-                               line_pos = cur_pos;
-                               line_len = cur_len = 0;
-                               do_delete = FALSE;
-                               is_new_line = TRUE;
-#ifdef WRAP_DEBUG
-                               g_print("after delete l_pos=");
-                               dump_text(textbuf, line_pos, tlen, 1);
-#endif
-                               /* move beginning of line if we are on LF */
-                               gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                                  &iter,
-                                                                  line_pos);
-                               GET_CHAR(&iter, cb, clen);
-                               if (clen == 1 && *cb == '\n')
-                                       line_pos++;
-#ifdef WRAP_DEBUG
-                               g_print("new line_pos=%d\n", line_pos);
-#endif
+               uri_start = uri_stop = -1;
+               quote_str = compose_get_quote_str(buffer, &iter, &quote_len);
 
-                               continue;
+               if (quote_str) {
+                       if (!wrap_quote) {
+                               if (startq_offset == -1) {
+                                       startq_offset = gtk_text_iter_get_offset(&iter);
+                               }
+                               goto colorize;
                        }
-
-                       /* mark new line beginning */
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len = 0;
-                       do_delete = FALSE;
-                       is_new_line = TRUE;
-                       continue;
+                       debug_print("compose_beautify_paragraph(): quote_str = '%s'\n", quote_str);
+                       if (startq_offset == -1) 
+                               startq_offset = gtk_text_iter_get_offset(&iter);
+               } else {
+                       if (startq_offset == -1)
+                               noq_offset = gtk_text_iter_get_offset(&iter);
                }
 
-               if (ch_len < 0) {
-                       cbuf[0] = '\0';
-                       ch_len = 1;
+               if (prev_autowrap == FALSE && !force && !wrap_quote) {
+                       goto colorize;
                }
+               if (compose_get_line_break_pos(buffer, &iter, &break_pos,
+                                              prefs_common.linewrap_len,
+                                              quote_len)) {
+                       GtkTextIter prev, next, cur;
+                       
+                       if (prev_autowrap != FALSE || force)
+                               gtk_text_buffer_insert(buffer, &break_pos, "\n", 1);
+                       else if (quote_str && wrap_quote)
+                               gtk_text_buffer_insert(buffer, &break_pos, "\n", 1);
+                       else 
+                               goto colorize;
+                       /* remove trailing spaces */
+                       cur = break_pos;
+                       gtk_text_iter_backward_char(&cur);
+                       prev = next = cur;
+                       while (!gtk_text_iter_starts_line(&cur)) {
+                               gunichar wc;
+
+                               gtk_text_iter_backward_char(&cur);
+                               wc = gtk_text_iter_get_char(&cur);
+                               if (!g_unichar_isspace(wc))
+                                       break;
+                               prev = cur;
+                       }
+                       if (!gtk_text_iter_equal(&prev, &next)) {
+                               gtk_text_buffer_delete(buffer, &prev, &next);
+                               break_pos = next;
+                               gtk_text_iter_forward_char(&break_pos);
+                       }
 
-               /* possible line break */
-               if (ch_len == 1 && isspace(*(guchar *)cbuf)) {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len + ch_len;
-               }
+                       if (quote_str)
+                               gtk_text_buffer_insert(buffer, &break_pos,
+                                                      quote_str, -1);
 
-               /* are we over wrapping length set in preferences ? */
-               if (cur_len + DISP_WIDTH(ch_len) > linewrap_len) {
-                       gint clen;
+                       iter = break_pos;
+                       compose_join_next_line(compose, buffer, &iter, quote_str);
 
-#ifdef WRAP_DEBUG
-                       g_print("should wrap cur_pos=%d ", cur_pos);
-                       dump_text(textbuf, p_pos, tlen, 1);
-                       dump_text(textbuf, line_pos, tlen, 1);
-#endif
-                       /* force wrapping if it is one long word but not URL */
-                       if (line_pos - p_pos <= i_len)
-                               if (!gtkut_text_buffer_is_uri_string
-                                   (textbuf, line_pos, tlen))
-                                       line_pos = cur_pos - 1;
-#ifdef WRAP_DEBUG
-                       g_print("new line_pos=%d\n", line_pos);
-#endif
+                       /* move iter to current line start */
+                       gtk_text_iter_set_line_offset(&iter, 0);
+                       continue;
+               } else {
+                       /* move iter to next line start */
+                       iter = break_pos;
+               }
 
-                       gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                          &iter,
-                                                          line_pos - 1);
-                       GET_CHAR(&iter, cbuf, clen);
-
-                       /* if next character is space delete it */
-                       if (clen == 1 && isspace(*(guchar *)cbuf)) {
-                               if (p_pos + i_len != line_pos ||
-                                   !gtkut_text_buffer_is_uri_string
-                                       (textbuf, line_pos, tlen)) {
-                                       /* workaround for correct cursor
-                                          position */
-                                       if (set_editable_pos == FALSE) {
-                                               GtkTextMark *ins = gtk_text_buffer_get_insert(textbuf);
-                                               gtk_text_buffer_get_iter_at_mark(textbuf, &iter, ins);
-                                               editable_pos = gtk_text_iter_get_offset(&iter);
-                                               if (editable_pos == line_pos)
-                                                       set_editable_pos = TRUE;
-                                       }
-                                       gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                          &iter,
-                                                          line_pos-1);
-                                       gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                          &end_iter,
-                                                          line_pos);
-                                       gtk_text_buffer_delete(textbuf, &iter, &end_iter);
-                                       //gtk_stext_set_point(text, line_pos);
-                                       //gtk_stext_backward_delete(text, 1);
-                                       tlen--;
-                                       cur_pos--;
-                                       line_pos--;
-                                       cur_len--;
-                                       line_len--;
-                               }
-                       }
+colorize:
+               end_of_line = iter;
+               while (!gtk_text_iter_ends_line(&end_of_line)) {
+                       gtk_text_iter_forward_char(&end_of_line);
+               }
+               o_walk = walk = gtk_text_buffer_get_text(buffer, &iter, &end_of_line, FALSE);
 
-                       /* if it is URL at beginning of line don't wrap */
-                       if (p_pos + i_len == line_pos &&
-                           gtkut_text_buffer_is_uri_string(textbuf, line_pos, tlen)) {
-#ifdef WRAP_DEBUG
-                               g_print("found URL at ");
-                               dump_text(textbuf, line_pos, tlen, 1);
-#endif
-                               continue;
-                       }
+               nouri_start = gtk_text_iter_get_offset(&iter);
+               nouri_stop = gtk_text_iter_get_offset(&end_of_line);
 
-                       /* insert CR */
-                       gtk_text_buffer_get_iter_at_offset(textbuf,
-                                                          &iter,
-                                                          line_pos);
-                       gtk_text_buffer_insert(textbuf, &iter, "\n", 1);
-                       //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 = cur_len = 0;
-                       if (autowrap || i_len > 0) {
-                               do_delete = TRUE;
-                       } else
-                               do_delete = FALSE;
-#ifdef WRAP_DEBUG
-                       g_print("after CR insert ");
-                       dump_text(textbuf, line_pos, tlen, 1);
-                       dump_text(textbuf, cur_pos, tlen, 1);
-#endif
+               walk_pos = gtk_text_iter_get_offset(&iter);
+               /* FIXME: this looks phony. scanning for anything in the parse table */
+               for (n = 0; n < PARSE_ELEMS; n++) {
+                       gchar *tmp;
 
-                       /* should we insert quotation ? */
-                       if (linewrap_quote && i_len) {
-                               /* only if line is not already quoted  */
-                               if (!gtkut_text_buffer_str_compare
-                                       (textbuf, line_pos, tlen, qfmt)) {
-                                       guint ins_len;
-                                       
-                                       gtk_text_buffer_get_iter_at_offset(textbuf, &iter, line_pos);
-                                       
-                                       if (line_pos - p_pos > i_len) {
-                                               ins_len = ins_quote
-                                                       (textbuf, &iter, i_len, p_pos,
-                                                        tlen, qfmt);
-                                               tlen += ins_len;
-                                       }
-#ifdef WRAP_DEBUG
-                                       g_print("after quote insert ");
-                                       dump_text(textbuf, line_pos, tlen, 1);
-#endif
+                       tmp = parser[n].search(walk, parser[n].needle);
+                       if (tmp) {
+                               if (scanpos == NULL || tmp < scanpos) {
+                                       scanpos = tmp;
+                                       last_index = n;
                                }
-                       }
-                       continue;
+                       }                                       
                }
 
-               if (ch_len > 1) {
-                       line_pos = cur_pos + 1;
-                       line_len = cur_len + ch_len;
+               bp = ep = 0;
+               if (scanpos) {
+                       /* check if URI can be parsed */
+                       if (parser[last_index].parse(walk, scanpos, (const gchar **)&bp,(const gchar **)&ep)
+                           && (size_t) (ep - bp - 1) > strlen(parser[last_index].needle)) {
+                                       walk = ep;
+                       } else
+                               walk = scanpos +
+                                       strlen(parser[last_index].needle);
+               } 
+               if (bp && ep) {
+                       uri_start = walk_pos + (bp - o_walk);
+                       uri_stop  = walk_pos + (ep - o_walk);
+               }
+               g_free(o_walk);
+               o_walk = NULL;
+               gtk_text_iter_forward_line(&iter);
+               g_free(quote_str);
+               quote_str = NULL;
+               if (startq_offset != -1) {
+                       GtkTextIter startquote, endquote;
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &startquote, startq_offset);
+                       endquote = iter;
+                       gtk_text_buffer_apply_tag_by_name(
+                               buffer, "quote", &startquote, &endquote);
+                       startq_offset = -1;
+               } else if (noq_offset != -1) {
+                       GtkTextIter startnoquote, endnoquote;
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &startnoquote, noq_offset);
+                       endnoquote = iter;
+                       gtk_text_buffer_remove_tag_by_name(
+                               buffer, "quote", &startnoquote, &endnoquote);
+                       noq_offset = -1;
+               }
+               
+               /* always */ {
+                       GtkTextIter nouri_start_iter, nouri_end_iter;
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &nouri_start_iter, nouri_start);
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &nouri_end_iter, nouri_stop);
+                       gtk_text_buffer_remove_tag_by_name(
+                               buffer, "link", &nouri_start_iter, &nouri_end_iter);
+               }
+               if (uri_start > 0 && uri_stop > 0) {
+                       GtkTextIter uri_start_iter, uri_end_iter;
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &uri_start_iter, uri_start);
+                       gtk_text_buffer_get_iter_at_offset(
+                               buffer, &uri_end_iter, uri_stop);
+                       gtk_text_buffer_apply_tag_by_name(
+                               buffer, "link", &uri_start_iter, &uri_end_iter);
                }
-               /* advance to next character in buffer */
-               cur_len += ch_len;
        }
 
-       if (set_editable_pos && editable_pos <= tlen) {
-               gtk_text_buffer_get_iter_at_offset(textbuf, &iter, editable_pos);
-               gtk_text_buffer_place_cursor(textbuf, &iter);
-       }
+       if (par_iter)
+               *par_iter = iter;
+
+       undo_unblock(compose->undostruct);
+       compose->autowrap = prev_autowrap;
 }
 
-#undef GET_CHAR
-#undef CHAR_BUF_SIZE
+static void compose_wrap_all(Compose *compose)
+{
+       compose_wrap_all_full(compose, FALSE);
+}
+
+static void compose_wrap_all_full(Compose *compose, gboolean force)
+{
+       GtkTextView *text = GTK_TEXT_VIEW(compose->text);
+       GtkTextBuffer *buffer;
+       GtkTextIter iter;
+
+       buffer = gtk_text_view_get_buffer(text);
+
+       undo_block(compose->undostruct);
+
+       gtk_text_buffer_get_start_iter(buffer, &iter);
+       while (!gtk_text_iter_is_end(&iter))
+               compose_beautify_paragraph(compose, &iter, force);
+
+       undo_unblock(compose->undostruct);
+}
 
 static void compose_set_title(Compose *compose)
 {
@@ -3157,64 +3332,17 @@ static void compose_select_account(Compose *compose, PrefsAccount *account,
        compose_set_title(compose);
 
        ifactory = gtk_item_factory_from_widget(compose->menubar);
-#if 0
-       if (account->protocol == A_NNTP) {
-               gtk_widget_show(compose->newsgroups_hbox);
-               gtk_widget_show(compose->newsgroups_entry);
-               gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 4);
-               compose->use_newsgroups = TRUE;
-
-               menu_set_active(ifactory, "/View/To", FALSE);
-               menu_set_sensitive(ifactory, "/View/To", TRUE);
-               menu_set_active(ifactory, "/View/Cc", FALSE);
-               menu_set_sensitive(ifactory, "/View/Cc", TRUE);
-               menu_set_sensitive(ifactory, "/View/Followup to", TRUE);
-       } else {
-               gtk_widget_hide(compose->newsgroups_hbox);
-               gtk_widget_hide(compose->newsgroups_entry);
-               gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 0);
-               gtk_widget_queue_resize(compose->table_vbox);
-               compose->use_newsgroups = FALSE;
-
-               menu_set_active(ifactory, "/View/To", TRUE);
-               menu_set_sensitive(ifactory, "/View/To", FALSE);
-               menu_set_active(ifactory, "/View/Cc", TRUE);
-               menu_set_sensitive(ifactory, "/View/Cc", FALSE);
-               menu_set_active(ifactory, "/View/Followup to", FALSE);
-               menu_set_sensitive(ifactory, "/View/Followup to", FALSE);
-       }
-
-       if (account->set_autocc) {
-               compose_entry_show(compose, COMPOSE_ENTRY_CC);
-               if (account->auto_cc && compose->mode != COMPOSE_REEDIT)
-                       compose_entry_set(compose, account->auto_cc,
-                                         COMPOSE_ENTRY_CC);
-       }
-       if (account->set_autobcc) {
-               compose_entry_show(compose, COMPOSE_ENTRY_BCC);
-               if (account->auto_bcc && compose->mode != COMPOSE_REEDIT)
-                       compose_entry_set(compose, account->auto_bcc,
-                                         COMPOSE_ENTRY_BCC);
-       }
-       if (account->set_autoreplyto) {
-               compose_entry_show(compose, COMPOSE_ENTRY_REPLY_TO);
-               if (account->auto_replyto && compose->mode != COMPOSE_REEDIT)
-                       compose_entry_set(compose, account->auto_replyto,
-                                         COMPOSE_ENTRY_REPLY_TO);
-       }
-
-#endif
 
-       if (account->default_sign)
+       if (account->default_sign && compose->mode != COMPOSE_REDIRECT)
                menu_set_active(ifactory, "/Options/Sign", TRUE);
        else
                menu_set_active(ifactory, "/Options/Sign", FALSE);
-       if (account->default_encrypt)
+       if (account->default_encrypt && compose->mode != COMPOSE_REDIRECT)
                menu_set_active(ifactory, "/Options/Encrypt", TRUE);
        else
                menu_set_active(ifactory, "/Options/Encrypt", FALSE);
                                       
-       activate_privacy_system(compose, account);
+       activate_privacy_system(compose, account, FALSE);
 
        if (!init && compose->mode != COMPOSE_REDIRECT)
                compose_insert_sig(compose, TRUE);
@@ -3278,7 +3406,7 @@ static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
 
                aval = alertpanel(_("Send"),
                                  _("Subject is empty. Send it anyway?"),
-                                 _("Yes"), _("No"), NULL);
+                                 GTK_STOCK_YES, GTK_STOCK_NO, NULL);
                if (aval != G_ALERTDEFAULT)
                        return FALSE;
        }
@@ -3302,7 +3430,14 @@ gint compose_send(Compose *compose)
        val = compose_queue(compose, &msgnum, &folder);
 
        if (val) {
-               alertpanel_error(_("Could not queue message for sending"));
+               if (val == -3) {
+                       alertpanel_error(_("Could not queue message for sending:\n\n"
+                                          "Signature failed."));
+               } else if (val == -2) {
+                       alertpanel_error(_("Could not queue message for sending:\n\n%s."), strerror(errno));
+               } else {
+                       alertpanel_error(_("Could not queue message for sending."));
+               }
                goto bail;
        }
 
@@ -3312,6 +3447,7 @@ gint compose_send(Compose *compose)
                compose_close(compose);
                /* No more compose access in the normal codepath 
                 * after this point! */
+               compose = NULL;
        }
 
        if (msgnum == 0) {
@@ -3365,7 +3501,9 @@ bail:
 
 static gboolean compose_use_attach(Compose *compose) 
 {
-       return gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL;
+       GtkTreeModel *model = gtk_tree_view_get_model
+                               (GTK_TREE_VIEW(compose->attach_clist));
+       return gtk_tree_model_iter_n_children(model, NULL) > 0;
 }
 
 static gint compose_redirect_write_headers_from_headerlist(Compose *compose, 
@@ -3387,46 +3525,61 @@ static gint compose_redirect_write_headers_from_headerlist(Compose *compose,
        to_hdr = prefs_common.trans_hdr ? _("To:") : "To:";
 
        first_to_address = TRUE;
-       first_cc_address = TRUE;
        for (list = compose->header_list; list; list = list->next) {
                headerentry = ((ComposeHeaderEntry *)list->data);
                headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
 
-               if (g_utf8_collate(headerentryname, cc_hdr) == 0 
-                  || g_utf8_collate(headerentryname, to_hdr) == 0) {
+               if (g_utf8_collate(headerentryname, to_hdr) == 0) {
                        const gchar *entstr = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
                        Xstrdup_a(str, entstr, return -1);
                        g_strstrip(str);
                        if (str[0] != '\0') {
                                compose_convert_header
-                                       (buf, sizeof(buf), str,
+                                       (compose, buf, sizeof(buf), str,
                                        strlen("Resent-To") + 2, TRUE);
-                               if (g_utf8_collate(headerentryname, to_hdr) == 0) {
-                                       if (first_to_address) {
-                                               fprintf(fp, "Resent-To: ");
-                                               first_to_address = FALSE;
-                                       } else {
-                                               fprintf(fp, ",");
-                                       }
-                               }
-                               if (g_utf8_collate(headerentryname, cc_hdr) == 0) {
-                                       if (first_cc_address) {
-                                               fprintf(fp, "\n");
-                                               fprintf(fp, "Resent-Cc: ");
-                                               first_cc_address = FALSE;
-                                       } else {
-                                               fprintf(fp, ",");
-                                       }
-                               }
-                               
+
+                               if (first_to_address) {
+                                       fprintf(fp, "Resent-To: ");
+                                       first_to_address = FALSE;
+                               } else {
+                                       fprintf(fp, ",");
+                                }
                                fprintf(fp, "%s", buf);
                        }
                }
        }
-       /* if (!first_address) { */
-       fprintf(fp, "\n");
-       /* } */
+       if (!first_to_address) {
+               fprintf(fp, "\n");
+       }
 
+       first_cc_address = TRUE;
+       for (list = compose->header_list; list; list = list->next) {
+               headerentry = ((ComposeHeaderEntry *)list->data);
+               headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
+
+               if (g_utf8_collate(headerentryname, cc_hdr) == 0) {
+                       const gchar *strg = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
+                       Xstrdup_a(str, strg, return -1);
+                       g_strstrip(str);
+                       if (str[0] != '\0') {
+                               compose_convert_header
+                                       (compose, buf, sizeof(buf), str,
+                                       strlen("Resent-Cc") + 2, TRUE);
+
+                                if (first_cc_address) {
+                                        fprintf(fp, "Resent-Cc: ");
+                                        first_cc_address = FALSE;
+                                } else {
+                                        fprintf(fp, ",");
+                                }
+                               fprintf(fp, "%s", buf);
+                       }
+               }
+       }
+       if (!first_cc_address) {
+               fprintf(fp, "\n");
+        }
+       
        return(0);
 }
 
@@ -3448,7 +3601,7 @@ static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
        /* Resent-From */
        if (compose->account->name && *compose->account->name) {
                compose_convert_header
-                       (buf, sizeof(buf), compose->account->name,
+                       (compose, buf, sizeof(buf), compose->account->name,
                         strlen("From: "), TRUE);
                fprintf(fp, "Resent-From: %s <%s>\n",
                        buf, compose->account->address);
@@ -3461,7 +3614,7 @@ static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
                Xstrdup_a(str, entstr, return -1);
                g_strstrip(str);
                if (*str != '\0') {
-                       compose_convert_header(buf, sizeof(buf), str,
+                       compose_convert_header(compose, buf, sizeof(buf), str,
                                               strlen("Subject: "), FALSE);
                        fprintf(fp, "Subject: %s\n", buf);
                }
@@ -3488,7 +3641,7 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
        size_t len;
        gchar buf[BUFFSIZE];
 
-       if ((fp = fopen(compose->redirect_filename, "rb")) == NULL) {
+       if ((fp = g_fopen(compose->redirect_filename, "rb")) == NULL) {
                FILE_OP_ERROR(compose->redirect_filename, "fopen");
                return -1;
        }
@@ -3517,7 +3670,7 @@ static gint compose_redirect_write_to_file(Compose *compose, FILE *fdest)
                                if (compose->account->name
                                    && *compose->account->name) {
                                        compose_convert_header
-                                               (buf, sizeof(buf),
+                                               (compose, buf, sizeof(buf),
                                                 compose->account->name,
                                                 strlen("From: "),
                                                 FALSE);
@@ -3560,6 +3713,7 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
        const gchar *out_codeset;
        EncodingType encoding;
        MimeInfo *mimemsg, *mimetext;
+       gint line;
 
        /* create message MimeInfo */
        mimemsg = procmime_mimeinfo_new();
@@ -3582,7 +3736,10 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
        } else {
                const gchar *src_codeset;
 
-               out_codeset = conv_get_outgoing_charset_str();
+               out_codeset = conv_get_charset_str(compose->out_encoding);
+               if (!out_codeset)
+                       out_codeset = conv_get_outgoing_charset_str();
+
                if (!g_ascii_strcasecmp(out_codeset, CS_US_ASCII))
                        out_codeset = CS_ISO_8859_1;
 
@@ -3595,7 +3752,7 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
                else
                        encoding = procmime_get_encoding_for_charset(out_codeset);
 
-               src_codeset = CS_UTF_8;
+               src_codeset = CS_INTERNAL;
                /* if current encoding is US-ASCII, set it the same as
                   outgoing one to prevent code conversion failure */
                if (!g_ascii_strcasecmp(src_codeset, CS_US_ASCII))
@@ -3606,6 +3763,7 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
 
                if (action == COMPOSE_WRITE_FOR_SEND) {
                        buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
+                       
                        if (!buf) {
                                AlertValue aval;
                                gchar *msg;
@@ -3613,9 +3771,9 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
                                msg = g_strdup_printf(_("Can't convert the character encoding of the message from\n"
                                                        "%s to %s.\n"
                                                        "Send it anyway?"), src_codeset, out_codeset);
-                               aval = alertpanel_with_type
-                                       (_("Error"), msg, _("Yes"), _("+No"), NULL, NULL, ALERT_ERROR);
-                               g_free(msg);
+                               aval = alertpanel_full(_("Error"), msg, GTK_STOCK_YES, GTK_STOCK_NO, NULL, FALSE,
+                                                     NULL, ALERT_ERROR, G_ALERTALTERNATE);
+       g_free(msg);
 
                                if (aval != G_ALERTDEFAULT) {
                                        g_free(chars);
@@ -3634,6 +3792,13 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
        }
        g_free(chars);
 
+       if (encoding == ENC_8BIT || encoding == ENC_7BIT) {
+               if (!strncmp(buf, "From ", sizeof("From ")-1) ||
+                   strstr(buf, "\nFrom ") != NULL) {
+                       encoding = ENC_QUOTED_PRINTABLE;
+               }
+       }
+
        mimetext = procmime_mimeinfo_new();
        mimetext->content = MIMECONTENT_MEM;
        mimetext->data.mem = buf;
@@ -3643,8 +3808,32 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
                            g_strdup(out_codeset));
        /* protect trailing spaces when signing message */
        if (action == COMPOSE_WRITE_FOR_SEND && compose->use_signing && 
-           privacy_system_can_sign(compose->privacy_system))
-               encoding = ENC_QUOTED_PRINTABLE;
+           privacy_system_can_sign(compose->privacy_system)) {
+               if (encoding == ENC_7BIT)
+                       encoding = ENC_QUOTED_PRINTABLE;
+               else if (encoding == ENC_8BIT)
+                       encoding = ENC_BASE64;
+       }
+       
+       /* check for line length limit */
+       if (action == COMPOSE_WRITE_FOR_SEND &&
+           encoding != ENC_QUOTED_PRINTABLE && encoding != ENC_BASE64 &&
+           check_line_length(buf, 1000, &line) < 0) {
+               AlertValue aval;
+               gchar *msg;
+
+               msg = g_strdup_printf
+                       (_("Line %d exceeds the line length limit (998 bytes).\n"
+                          "The contents of the message might be broken on the way to the delivery.\n"
+                          "\n"
+                          "Send it anyway?"), line + 1);
+               aval = alertpanel(_("Warning"), msg, GTK_STOCK_OK, GTK_STOCK_CANCEL, NULL);
+               g_free(msg);
+               if (aval != G_ALERTDEFAULT) {
+                       return -1;
+               }
+       }
+       
        if (encoding != ENC_UNKNOWN)
                procmime_encode_content(mimetext, encoding);
 
@@ -3672,9 +3861,11 @@ static gint compose_write_to_file(Compose *compose, FILE *fp, gint action)
        if (action == COMPOSE_WRITE_FOR_SEND && compose->use_signing && 
            privacy_system_can_sign(compose->privacy_system))
                if (!privacy_sign(compose->privacy_system, mimemsg, compose->account))
-                       return -1;
+                       return -2;
 
        procmime_write_mimeinfo(mimemsg, fp);
+       
+       procmime_mimeinfo_free_all(mimemsg);
 
        return 0;
 }
@@ -3686,9 +3877,8 @@ static gint compose_write_body_to_file(Compose *compose, const gchar *file)
        FILE *fp;
        size_t len;
        gchar *chars, *tmp;
-       const gchar *src_codeset, *dest_codeset;
 
-       if ((fp = fopen(file, "wb")) == NULL) {
+       if ((fp = g_fopen(file, "wb")) == NULL) {
                FILE_OP_ERROR(file, "fopen");
                return -1;
        }
@@ -3704,9 +3894,9 @@ static gint compose_write_body_to_file(Compose *compose, const gchar *file)
        gtk_text_buffer_get_end_iter(buffer, &end);
        tmp = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
 
-       src_codeset = CS_UTF_8;
-       dest_codeset = conv_get_current_charset_str();
-       chars = conv_codeset_strdup(tmp, src_codeset, dest_codeset);
+       chars = conv_codeset_strdup
+               (tmp, CS_INTERNAL, conv_get_locale_charset_str());
+
        g_free(tmp);
        if (!chars) return -1;
 
@@ -3716,7 +3906,7 @@ static gint compose_write_body_to_file(Compose *compose, const gchar *file)
                FILE_OP_ERROR(file, "fwrite");
                g_free(chars);
                fclose(fp);
-               unlink(file);
+               g_unlink(file);
                return -1;
        }
 
@@ -3724,7 +3914,7 @@ static gint compose_write_body_to_file(Compose *compose, const gchar *file)
 
        if (fclose(fp) == EOF) {
                FILE_OP_ERROR(file, "fclose");
-               unlink(file);
+               g_unlink(file);
                return -1;
        }
        return 0;
@@ -3742,7 +3932,8 @@ static gint compose_remove_reedit_target(Compose *compose)
        g_return_val_if_fail(item != NULL, -1);
 
        if (procmsg_msg_exist(msginfo) &&
-           (item->stype == F_DRAFT || item->stype == F_QUEUE 
+           (folder_has_parent_of_type(item, F_QUEUE) ||
+            folder_has_parent_of_type(item, F_DRAFT) 
             || msginfo == compose->autosaved_draft)) {
                if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
                        g_warning("can't remove the old message\n");
@@ -3818,15 +4009,15 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
        }
 
         if (prefs_common.linewrap_at_send)
-               compose_wrap_line_all(compose);
+               compose_wrap_all(compose);
 
        /* write queue header */
        tmp = g_strdup_printf("%s%cqueue.%p", get_tmp_dir(),
                              G_DIR_SEPARATOR, compose);
-       if ((fp = fopen(tmp, "wb")) == NULL) {
+       if ((fp = g_fopen(tmp, "wb")) == NULL) {
                FILE_OP_ERROR(tmp, "fopen");
                g_free(tmp);
-               return -1;
+               return -2;
        }
 
        if (change_file_mode_rw(fp, tmp) < 0) {
@@ -3883,14 +4074,21 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
        if (compose->privacy_system != NULL) {
                fprintf(fp, "X-Sylpheed-Privacy-System:%s\n", compose->privacy_system);
                fprintf(fp, "X-Sylpheed-Sign:%d\n", compose->use_signing);
-               fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
                if (compose->use_encryption) {
                        gchar *encdata;
 
                        encdata = privacy_get_encrypt_data(compose->privacy_system, compose->to_list);
-                       if (encdata != NULL)
-                               fprintf(fp, "X-Sylpheed-Encrypt-Data:%s\n", 
-                                       encdata);
+                       if (encdata != NULL) {
+                               if (strcmp(encdata, "_DONT_ENCRYPT_")) {
+                                       fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
+                                       fprintf(fp, "X-Sylpheed-Encrypt-Data:%s\n", 
+                                               encdata);
+                               } /* else we finally dont want to encrypt */
+                       } else {
+                               fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
+                               /* and if encdata was null, it means there's been a problem in 
+                                * key selection */
+                       }
                        g_free(encdata);
                }
        }
@@ -3925,42 +4123,43 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
                if (compose_redirect_write_to_file(compose, fp) < 0) {
                        lock = FALSE;
                        fclose(fp);
-                       unlink(tmp);
+                       g_unlink(tmp);
                        g_free(tmp);
-                       return -1;
+                       return -2;
                }
        } else {
-               if (compose_write_to_file(compose, fp, COMPOSE_WRITE_FOR_SEND) < 0) {
+               gint result = 0;
+               if ((result = compose_write_to_file(compose, fp, COMPOSE_WRITE_FOR_SEND)) < 0) {
                        lock = FALSE;
                        fclose(fp);
-                       unlink(tmp);
+                       g_unlink(tmp);
                        g_free(tmp);
-                       return -1;
+                       return result - 1; /* -2 for a generic error, -3 for signing error */
                }
        }
 
        if (fclose(fp) == EOF) {
                FILE_OP_ERROR(tmp, "fclose");
-               unlink(tmp);
+               g_unlink(tmp);
                g_free(tmp);
-               return -1;
+               return -2;
        }
 
        queue = account_get_special_folder(compose->account, F_QUEUE);
        if (!queue) {
                g_warning("can't find queue folder\n");
-               unlink(tmp);
+               g_unlink(tmp);
                g_free(tmp);
                return -1;
        }
        folder_item_scan(queue);
        if ((num = folder_item_add_msg(queue, tmp, NULL, TRUE)) < 0) {
                g_warning("can't queue the message\n");
-               unlink(tmp);
+               g_unlink(tmp);
                g_free(tmp);
                return -1;
        }
-       unlink(tmp);
+       g_unlink(tmp);
        g_free(tmp);
 
        if (compose->mode == COMPOSE_REEDIT) {
@@ -3978,14 +4177,22 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item,
 static void compose_add_attachments(Compose *compose, MimeInfo *parent)
 {
        AttachInfo *ainfo;
-       GtkCList *clist = GTK_CLIST(compose->attach_clist);
-       gint row;
+       GtkTreeView *tree_view = GTK_TREE_VIEW(compose->attach_clist);
        MimeInfo *mimepart;
        struct stat statbuf;
        gchar *type, *subtype;
+       GtkTreeModel *model;
+       GtkTreeIter iter;
 
-       for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
-            row++) {
+       model = gtk_tree_view_get_model(tree_view);
+       
+       if (!gtk_tree_model_get_iter_first(model, &iter))
+               return;
+       do {
+               gtk_tree_model_get(model, &iter,
+                                  COL_DATA, &ainfo,
+                                  -1);
+                                                          
                mimepart = procmime_mimeinfo_new();
                mimepart->content = MIMECONTENT_FILE;
                mimepart->data.filename = g_strdup(ainfo->file);
@@ -4018,10 +4225,17 @@ static void compose_add_attachments(Compose *compose, MimeInfo *parent)
                        mimepart->disposition = DISPOSITIONTYPE_ATTACHMENT;
                }
 
+               if (compose->use_signing) {
+                       if (ainfo->encoding == ENC_7BIT)
+                               ainfo->encoding = ENC_QUOTED_PRINTABLE;
+                       else if (ainfo->encoding == ENC_8BIT)
+                               ainfo->encoding = ENC_BASE64;
+               }
+               
                procmime_encode_content(mimepart, ainfo->encoding);
 
                g_node_append(parent->node, mimepart->node);
-       }
+       } while (gtk_tree_model_iter_next(model, &iter));
 }
 
 #define QUOTE_IF_REQUIRED(out, str)                                    \
@@ -4099,7 +4313,7 @@ static void compose_add_headerfield_from_headerlist(Compose *compose,
 
                buf = g_new0(gchar, fieldstr->len * 4 + 256);
                compose_convert_header
-                       (buf, fieldstr->len * 4  + 256, fieldstr->str,
+                       (compose, buf, fieldstr->len * 4  + 256, fieldstr->str,
                        strlen(fieldname) + 2, TRUE);
                g_string_append_printf(header, "%s: %s\n", fieldname, buf);
                g_free(buf);
@@ -4121,8 +4335,6 @@ static gchar *compose_get_header(Compose *compose)
        gchar *std_headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
        GString *header;
 
-       /* struct utsname utsbuf; */
-
        g_return_val_if_fail(compose->account != NULL, NULL);
        g_return_val_if_fail(compose->account->address != NULL, NULL);
 
@@ -4137,7 +4349,7 @@ static gchar *compose_get_header(Compose *compose)
        /* From */
        if (compose->account->name && *compose->account->name) {
                compose_convert_header
-                       (buf, sizeof(buf), compose->account->name,
+                       (compose, buf, sizeof(buf), compose->account->name,
                         strlen("From: "), TRUE);
                QUOTE_IF_REQUIRED(name, buf);
                g_string_append_printf(header, "From: %s <%s>\n",
@@ -4159,10 +4371,11 @@ static gchar *compose_get_header(Compose *compose)
 
        /* Subject */
        str = gtk_editable_get_chars(GTK_EDITABLE(compose->subject_entry), 0, -1);
+
        if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
                g_strstrip(str);
                if (*str != '\0') {
-                       compose_convert_header(buf, sizeof(buf), str,
+                       compose_convert_header(compose, buf, sizeof(buf), str,
                                               strlen("Subject: "), FALSE);
                        g_string_append_printf(header, "Subject: %s\n", buf);
                }
@@ -4196,28 +4409,25 @@ static gchar *compose_get_header(Compose *compose)
        if (compose->account->organization &&
            strlen(compose->account->organization) &&
            !IS_IN_CUSTOM_HEADER("Organization")) {
-               compose_convert_header(buf, sizeof(buf),
+               compose_convert_header(compose, buf, sizeof(buf),
                                       compose->account->organization,
                                       strlen("Organization: "), FALSE);
                g_string_append_printf(header, "Organization: %s\n", buf);
        }
 
        /* Program version and system info */
-       /* uname(&utsbuf); */
        if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer") &&
            !compose->newsgroup_list) {
                g_string_append_printf(header, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
                        TARGET_ALIAS);
-                       /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
        if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
                g_string_append_printf(header, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
                        TARGET_ALIAS);
-                       /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
 
        /* custom headers */
@@ -4230,7 +4440,7 @@ static gchar *compose_get_header(Compose *compose)
 
                        if (custom_header_is_allowed(chdr->name)) {
                                compose_convert_header
-                                       (buf, sizeof(buf),
+                                       (compose, buf, sizeof(buf),
                                         chdr->value ? chdr->value : "",
                                         strlen(chdr->name) + 2, FALSE);
                                g_string_append_printf(header, "%s: %s\n", chdr->name, buf);
@@ -4262,7 +4472,7 @@ static gchar *compose_get_header(Compose *compose)
                if (compose->return_receipt) {
                        if (compose->account->name
                            && *compose->account->name) {
-                               compose_convert_header(buf, sizeof(buf), 
+                               compose_convert_header(compose, buf, sizeof(buf), 
                                                       compose->account->name, 
                                                       strlen("Disposition-Notification-To: "),
                                                       TRUE);
@@ -4326,7 +4536,7 @@ static gchar *compose_get_header(Compose *compose)
 
 #undef IS_IN_CUSTOM_HEADER
 
-static void compose_convert_header(gchar *dest, gint len, gchar *src,
+static void compose_convert_header(Compose *compose, gchar *dest, gint len, gchar *src,
                                   gint header_len, gboolean addr_field)
 {
        gchar *tmpstr = NULL;
@@ -4342,7 +4552,14 @@ static void compose_convert_header(gchar *dest, gint len, gchar *src,
        subst_char(tmpstr, '\r', ' ');
        g_strchomp(tmpstr);
 
-       conv_encode_header(dest, len, tmpstr, header_len, addr_field);
+       if (!g_utf8_validate(tmpstr, -1, NULL)) {
+               gchar *mybuf = g_malloc(strlen(tmpstr)*2 +1);
+               conv_localetodisp(mybuf, strlen(tmpstr)*2 +1, tmpstr);
+               g_free(tmpstr);
+               tmpstr = mybuf;
+       }
+       conv_encode_header_full(dest, len, tmpstr, header_len, addr_field, 
+               conv_get_charset_str(compose->out_encoding));
        g_free(tmpstr);
 }
 
@@ -4398,8 +4615,6 @@ static void compose_create_header_entry(Compose *compose)
        if (header)
                gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
 
-       g_signal_connect(G_OBJECT(GTK_COMBO(combo)->entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_before_cb), compose);
        g_signal_connect_after(G_OBJECT(GTK_COMBO(combo)->entry), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
 
@@ -4414,12 +4629,20 @@ static void compose_create_header_entry(Compose *compose)
        g_signal_connect(G_OBJECT(entry), "changed", 
                         G_CALLBACK(compose_headerentry_changed_cb), 
                         headerentry);
-       g_signal_connect(G_OBJECT(entry), "activate", 
-                        G_CALLBACK(text_activated), compose);
-       g_signal_connect(G_OBJECT(entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_before_cb), compose);
        g_signal_connect_after(G_OBJECT(entry), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
+                        
+       /* email dnd */
+       gtk_drag_dest_set(entry, GTK_DEST_DEFAULT_ALL, compose_mime_types, 
+                         sizeof(compose_mime_types)/sizeof(compose_mime_types[0]),
+                         GDK_ACTION_COPY | GDK_ACTION_MOVE);
+       g_signal_connect(G_OBJECT(entry), "drag_data_received",
+                        G_CALLBACK(compose_header_drag_received_cb),
+                        entry);
+       g_signal_connect(G_OBJECT(entry), "drag-drop",
+                        G_CALLBACK(compose_drag_drop),
+                        compose);
+       
        address_completion_register_entry(GTK_ENTRY(entry));
 
         headerentry->compose = compose;
@@ -4446,24 +4669,8 @@ static GtkWidget *compose_create_header(Compose *compose)
        GtkWidget *label;
        GtkWidget *hbox;
        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;
-#if 0 /* NEW COMPOSE GUI */
-       GtkWidget *cc_entry;
-       GtkWidget *cc_hbox;
-       GtkWidget *bcc_entry;
-       GtkWidget *bcc_hbox;
-       GtkWidget *reply_entry;
-       GtkWidget *reply_hbox;
-       GtkWidget *followup_entry;
-       GtkWidget *followup_hbox;
-#endif
 
        gint count = 0;
 
@@ -4488,9 +4695,6 @@ static GtkWidget *compose_create_header(Compose *compose)
        from_optmenu_hbox = compose_account_option_menu_create(compose);
        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++;
 
        compose->header_table = header_table;
@@ -4499,95 +4703,20 @@ static GtkWidget *compose_create_header(Compose *compose)
 
        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);
-
-       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);
-
-       g_signal_connect(G_OBJECT(to_entry), "activate",
-                        G_CALLBACK(to_activated), compose);
-       g_signal_connect(G_OBJECT(newsgroups_entry), "activate",
-                        G_CALLBACK(newsgroups_activated), compose);
-       g_signal_connect(G_OBJECT(subject_entry), "activate",
-                        G_CALLBACK(subject_activated), compose);
-       g_signal_connect(G_OBJECT(cc_entry), "activate",
-                        G_CALLBACK(cc_activated), compose);
-       g_signal_connect(G_OBJECT(bcc_entry), "activate",
-                        G_CALLBACK(bcc_activated), compose);
-       g_signal_connect(G_OBJECT(reply_entry), "activate",
-                        G_CALLBACK(replyto_activated), compose);
-       g_signal_connect(G_OBJECT(followup_entry), "activate",
-                        G_CALLBACK(followupto_activated), compose);
-
-       g_signal_connect(G_OBJECT(subject_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(to_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(newsgroups_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(cc_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(bcc_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(reply_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(followup_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_cb), compose);
-#endif
-
        compose->table            = NULL;
-#if 0 /* NEW COMPOSE GUI */
-       compose->table            = table;
-       compose->to_hbox          = to_hbox;
-       compose->to_entry         = to_entry;
-       compose->newsgroups_hbox  = newsgroups_hbox;
-       compose->newsgroups_entry = newsgroups_entry;
-#endif
-#if 0 /* NEW COMPOSE GUI */
-       compose->cc_hbox          = cc_hbox;
-       compose->cc_entry         = cc_entry;
-       compose->bcc_hbox         = bcc_hbox;
-       compose->bcc_entry        = bcc_entry;
-       compose->reply_hbox       = reply_hbox;
-       compose->reply_entry      = reply_entry;
-       compose->followup_hbox    = followup_hbox;
-       compose->followup_entry   = followup_entry;
-#endif
 
        return header_scrolledwin ;
 }
 
 GtkWidget *compose_create_attach(Compose *compose)
 {
-       gchar *titles[N_ATTACH_COLS];
-       gint i;
-
        GtkWidget *attach_scrwin;
        GtkWidget *attach_clist;
 
-       titles[COL_MIMETYPE] = _("MIME type");
-       titles[COL_SIZE]     = _("Size");
-       titles[COL_NAME]     = _("Name");
+       GtkListStore *store;
+       GtkCellRenderer *renderer;
+       GtkTreeViewColumn *column;
+       GtkTreeSelection *selection;
 
        /* attachment list */
        attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
@@ -4596,20 +4725,42 @@ GtkWidget *compose_create_attach(Compose *compose)
                                       GTK_POLICY_AUTOMATIC);
        gtk_widget_set_size_request(attach_scrwin, -1, 80);
 
-       attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
-       gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
-                                          GTK_JUSTIFY_RIGHT);
-       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
-       gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
-       gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
-                                    GTK_SELECTION_EXTENDED);
-       for (i = 0; i < N_ATTACH_COLS; i++)
-               GTK_WIDGET_UNSET_FLAGS
-                       (GTK_CLIST(attach_clist)->column[i].button,
-                        GTK_CAN_FOCUS);
+       store = gtk_list_store_new(N_ATTACH_COLS, 
+                                  G_TYPE_STRING,
+                                  G_TYPE_STRING,
+                                  G_TYPE_STRING,
+                                  G_TYPE_POINTER,
+                                  G_TYPE_AUTO_POINTER,
+                                  -1);
+       attach_clist = GTK_WIDGET(gtk_tree_view_new_with_model
+                                       (GTK_TREE_MODEL(store)));
        gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
-
-       g_signal_connect(G_OBJECT(attach_clist), "select_row",
+       g_object_unref(store);
+       
+       renderer = gtk_cell_renderer_text_new();
+       column = gtk_tree_view_column_new_with_attributes
+                       (_("Mime type"), renderer, "text", 
+                        COL_MIMETYPE, NULL);
+       gtk_tree_view_append_column(GTK_TREE_VIEW(attach_clist), column);                        
+       
+       renderer = gtk_cell_renderer_text_new();
+       column = gtk_tree_view_column_new_with_attributes
+                       (_("Size"), renderer, "text", 
+                        COL_SIZE, NULL);
+       gtk_tree_view_append_column(GTK_TREE_VIEW(attach_clist), column);                        
+       
+       renderer = gtk_cell_renderer_text_new();
+       column = gtk_tree_view_column_new_with_attributes
+                       (_("Name"), renderer, "text", 
+                        COL_NAME, NULL);
+       gtk_tree_view_append_column(GTK_TREE_VIEW(attach_clist), column);
+
+       gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(attach_clist),
+                                    prefs_common.enable_rules_hint);
+       selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(attach_clist));
+       gtk_tree_selection_set_mode(selection, GTK_SELECTION_MULTIPLE);
+
+       g_signal_connect(G_OBJECT(attach_clist), "row_activated",
                         G_CALLBACK(attach_selected), compose);
        g_signal_connect(G_OBJECT(attach_clist), "button_press_event",
                         G_CALLBACK(attach_button_pressed), compose);
@@ -4618,11 +4769,15 @@ GtkWidget *compose_create_attach(Compose *compose)
 
        /* drag and drop */
        gtk_drag_dest_set(attach_clist,
-                         GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
+                         GTK_DEST_DEFAULT_ALL, compose_mime_types, 
+                         sizeof(compose_mime_types)/sizeof(compose_mime_types[0]),
                          GDK_ACTION_COPY | GDK_ACTION_MOVE);
        g_signal_connect(G_OBJECT(attach_clist), "drag_data_received",
                         G_CALLBACK(compose_attach_drag_received_cb),
                         compose);
+       g_signal_connect(G_OBJECT(attach_clist), "drag-drop",
+                        G_CALLBACK(compose_drag_drop),
+                        compose);
 
        compose->attach_scrwin = attach_scrwin;
        compose->attach_clist  = attach_clist;
@@ -4663,8 +4818,6 @@ static GtkWidget *compose_create_others(Compose *compose)
        gtk_widget_show(savemsg_entry);
        gtk_table_attach_defaults(GTK_TABLE(table), savemsg_entry, 1, 2, rowcount, rowcount + 1);
        gtk_editable_set_editable(GTK_EDITABLE(savemsg_entry), prefs_common.savemsg);
-       g_signal_connect(G_OBJECT(savemsg_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_before_cb), compose);
        g_signal_connect_after(G_OBJECT(savemsg_entry), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
        if (account_get_special_folder(compose->account, F_OUTBOX)) {
@@ -4709,6 +4862,52 @@ static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose)
        g_free(path);
 }
 
+static void entry_paste_clipboard(Compose *compose, GtkWidget *entry, gboolean wrap,
+                                 GdkAtom clip);
+
+#define BLOCK_WRAP() {                                                 \
+       prev_autowrap = compose->autowrap;                              \
+       buffer = gtk_text_view_get_buffer(                              \
+                                       GTK_TEXT_VIEW(compose->text));  \
+       compose->autowrap = FALSE;                                      \
+                                                                       \
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
+                               G_CALLBACK(compose_changed_cb),         \
+                               compose);                               \
+       g_signal_handlers_block_by_func(G_OBJECT(buffer),               \
+                               G_CALLBACK(text_inserted),              \
+                               compose);                               \
+}
+#define UNBLOCK_WRAP() {                                               \
+       compose->autowrap = prev_autowrap;                              \
+       if (compose->autowrap)                                          \
+               compose_wrap_all(compose);                              \
+                                                                       \
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
+                               G_CALLBACK(compose_changed_cb),         \
+                               compose);                               \
+       g_signal_handlers_unblock_by_func(G_OBJECT(buffer),             \
+                               G_CALLBACK(text_inserted),              \
+                               compose);                               \
+}
+
+
+static gboolean text_clicked(GtkWidget *text, GdkEventButton *event,
+                                       Compose *compose)
+{
+       gint prev_autowrap;
+       GtkTextBuffer *buffer;
+       if (event->button == 2) {
+               BLOCK_WRAP();
+               entry_paste_clipboard(compose, compose->focused_editable, 
+                               prefs_common.linewrap_pastes,
+                               GDK_SELECTION_PRIMARY);
+               UNBLOCK_WRAP();
+               return TRUE;
+       }
+       return FALSE;
+}
+
 static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 {
        Compose   *compose;
@@ -4740,7 +4939,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        gchar *titles[N_ATTACH_COLS];
        guint n_menu_entries;
-       GtkStyle  *style, *new_style;
        GdkColormap *cmap;
        GdkColor color[1];
        gboolean success[1];
@@ -4749,6 +4947,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        GtkItemFactory *ifactory;
        GtkWidget *tmpl_menu;
        gint n_entries;
+       GtkWidget *menuitem;
 
 #if USE_ASPELL
         GtkAspell * gtkaspell = NULL;
@@ -4775,6 +4974,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                geometry.max_width = gdk_screen_width();
                geometry.max_height = gdk_screen_height();
        }
+
        gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL,
                                      &geometry, GDK_HINT_MAX_SIZE);
        if (!geometry.min_width) {
@@ -4788,8 +4988,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        g_signal_connect(G_OBJECT(window), "delete_event",
                         G_CALLBACK(compose_delete_cb), compose);
-       g_signal_connect(G_OBJECT(window), "destroy",
-                        G_CALLBACK(compose_destroy_cb), compose);
        MANAGE_WINDOW_SIGNALS_CONNECT(window);
        gtk_widget_realize(window);
 
@@ -4803,9 +5001,14 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                                 n_menu_entries, "<Compose>", compose);
        gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
 
-       handlebox = gtk_handle_box_new();
+       if (prefs_common.toolbar_detachable) {
+               handlebox = gtk_handle_box_new();
+       } else {
+               handlebox = gtk_hbox_new(FALSE, 0);
+       }
        gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
 
+       gtk_widget_realize(handlebox);
        compose->toolbar = toolbar_create(TOOLBAR_COMPOSE, handlebox,
                                          (gpointer)compose);
 
@@ -4844,10 +5047,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        subject_entry = gtk_entry_new();
        gtk_box_pack_start(GTK_BOX(subject), subject_entry, TRUE, TRUE, 2);
-       g_signal_connect(G_OBJECT(subject_entry), "activate", 
-                        G_CALLBACK(text_activated), compose);
-       g_signal_connect(G_OBJECT(subject_entry), "grab_focus",
-                        G_CALLBACK(compose_grab_focus_before_cb), compose);
        g_signal_connect_after(G_OBJECT(subject_entry), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
        gtk_widget_show(subject_entry);
@@ -4865,13 +5064,15 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        ruler = gtk_shruler_new();
        gtk_ruler_set_range(GTK_RULER(ruler), 0.0, 100.0, 1.0, 100.0);
        gtk_box_pack_start(GTK_BOX(ruler_hbox), ruler, TRUE, TRUE,
-                          BORDER_WIDTH + 1);
-       gtk_widget_set_size_request(ruler_hbox, 1, -1);
+                          BORDER_WIDTH);
 
        /* text widget */
        scrolledwin = gtk_scrolled_window_new(NULL, NULL);
        gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
-                                      GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
+                                      GTK_POLICY_AUTOMATIC,
+                                      GTK_POLICY_AUTOMATIC);
+       gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwin),
+                                           GTK_SHADOW_IN);
        gtk_box_pack_start(GTK_BOX(edit_vbox), scrolledwin, TRUE, TRUE, 0);
        gtk_widget_set_size_request(scrolledwin, prefs_common.compose_width, -1);
 
@@ -4891,15 +5092,21 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                         G_CALLBACK(compose_changed_cb), compose);
        g_signal_connect(G_OBJECT(text), "grab_focus",
                         G_CALLBACK(compose_grab_focus_cb), compose);
-       g_signal_connect(G_OBJECT(buffer), "insert-text",
+       g_signal_connect(G_OBJECT(buffer), "insert_text",
                         G_CALLBACK(text_inserted), compose);
+       g_signal_connect(G_OBJECT(text), "button_press_event",
+                        G_CALLBACK(text_clicked), compose);
 
        /* drag and drop */
-       gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
+       gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 
+                         sizeof(compose_mime_types)/sizeof(compose_mime_types[0]),
                          GDK_ACTION_COPY | GDK_ACTION_MOVE);
        g_signal_connect(G_OBJECT(text), "drag_data_received",
                         G_CALLBACK(compose_insert_drag_received_cb),
                         compose);
+       g_signal_connect(G_OBJECT(text), "drag-drop",
+                        G_CALLBACK(compose_drag_drop),
+                        compose);
        gtk_widget_show_all(vbox);
 
        /* pane between attach clist and text */
@@ -4910,29 +5117,24 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        gtk_paned_add2(GTK_PANED(paned), edit_vbox);
        gtk_widget_show_all(paned);
 
-       style = gtk_widget_get_style(text);
-
-       new_style = gtk_style_copy(style);
 
        if (prefs_common.textfont) {
                PangoFontDescription *font_desc;
 
                font_desc = pango_font_description_from_string
-                                       (prefs_common.textfont);
+                       (prefs_common.textfont);
                if (font_desc) {
-                       if (new_style->font_desc)
-                               pango_font_description_free
-                                       (new_style->font_desc);
-                       new_style->font_desc = font_desc;
+                       gtk_widget_modify_font(text, font_desc);
+                       pango_font_description_free(font_desc);
                }
        }
 
-       gtk_widget_set_style(text, new_style);
-
        color[0] = quote_color;
-       cmap = gdk_window_get_colormap(window->window);
+       cmap = gdk_drawable_get_colormap(window->window);
        gdk_colormap_alloc_colors(cmap, color, 1, FALSE, TRUE, success);
        if (success[0] == FALSE) {
+               GtkStyle *style;
+
                g_warning("Compose: color allocation failed.\n");
                style = gtk_widget_get_style(text);
                quote_color = style->black;
@@ -5016,7 +5218,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        compose->exteditor_file    = NULL;
        compose->exteditor_pid     = -1;
-       compose->exteditor_readdes = -1;
        compose->exteditor_tag     = -1;
        compose->draft_timeout_tag = -1;
 
@@ -5027,7 +5228,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                    strcmp(prefs_common.dictionary, _("None"))) {
                        gtkaspell = gtkaspell_new(prefs_common.aspell_path,
                                                  prefs_common.dictionary,
-                                                 conv_get_current_charset_str(),
+                                                 conv_get_locale_charset_str(),
                                                  prefs_common.misspelled_col,
                                                  prefs_common.check_while_typing,
                                                  prefs_common.use_alternate,
@@ -5083,7 +5284,6 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        if (mode != COMPOSE_REDIRECT)
                compose_set_template_menu(compose);
        else {
-               GtkWidget *menuitem;
                menuitem = gtk_item_factory_get_item(ifactory, "/Tools/Template");
                menu_set_sensitive(ifactory, "/Tools/Template", FALSE);
        }
@@ -5092,18 +5292,24 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        if (!prefs_common.show_ruler)
                gtk_widget_hide(ruler_hbox);
+               
+       menuitem = gtk_item_factory_get_item(ifactory, "/Tools/Show ruler");
+       gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
+                                      prefs_common.show_ruler);
 
        /* Priority */
        compose->priority = PRIORITY_NORMAL;
        compose_update_priority_menu_item(compose);
 
+       compose_set_out_encoding(compose);
+       
        /* Actions menu */
        compose_update_actions_menu(compose);
 
        /* Privacy Systems menu */
        compose_update_privacy_systems_menu(compose);
 
-       activate_privacy_system(compose, account);
+       activate_privacy_system(compose, account, TRUE);
        toolbar_set_style(compose->toolbar->toolbar, compose->handlebox, prefs_common.toolbar_style);
        gtk_widget_show(window);
        
@@ -5222,13 +5428,14 @@ static void compose_set_privacy_system_cb(GtkWidget *widget, gpointer data)
        menu_set_sensitive(ifactory, "/Options/Encrypt", can_encrypt);
 }
 
-static void compose_update_privacy_system_menu_item(Compose * compose)
+static void compose_update_privacy_system_menu_item(Compose * compose, gboolean warn)
 {
        static gchar *branch_path = "/Options/Privacy System";
        GtkItemFactory *ifactory;
        GtkWidget *menuitem = NULL;
        GList *amenu;
        gboolean can_sign = FALSE, can_encrypt = FALSE;
+       gboolean found = FALSE;
 
        ifactory = gtk_item_factory_from_widget(compose->menubar);
 
@@ -5250,7 +5457,7 @@ static void compose_update_privacy_system_menu_item(Compose * compose)
 
                                        can_sign = privacy_system_can_sign(systemid);
                                        can_encrypt = privacy_system_can_encrypt(systemid);
-
+                                       found = TRUE;
                                        break;
                                }
 
@@ -5258,12 +5465,56 @@ static void compose_update_privacy_system_menu_item(Compose * compose)
                }
                if (menuitem != NULL)
                        gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
+               
+               if (warn && !found && strlen(compose->privacy_system)) {
+                       gchar *tmp = g_strdup_printf(
+                               _("The privacy system '%s' cannot be loaded. You "
+                                 "will not be able to sign or encrypt this message."),
+                                 compose->privacy_system);
+                       alertpanel_warning(tmp);
+                       g_free(tmp);
+               }
        }
 
        menu_set_sensitive(ifactory, "/Options/Sign", can_sign);
        menu_set_sensitive(ifactory, "/Options/Encrypt", can_encrypt);
 }      
  
+static void compose_set_out_encoding(Compose *compose)
+{
+       GtkItemFactoryEntry *entry;
+       GtkItemFactory *ifactory;
+       CharSet out_encoding;
+       gchar *path, *p, *q;
+       GtkWidget *item;
+
+       out_encoding = conv_get_charset_from_str(prefs_common.outgoing_charset);
+       ifactory = gtk_item_factory_from_widget(compose->menubar);
+
+       for (entry = compose_entries; entry->callback != compose_address_cb;
+            entry++) {
+               if (entry->callback == compose_set_encoding_cb &&
+                   (CharSet)entry->callback_action == out_encoding) {
+                       p = q = path = g_strdup(entry->path);
+                       while (*p) {
+                               if (*p == '_') {
+                                       if (p[1] == '_') {
+                                               p++;
+                                               *q++ = '_';
+                                       }
+                               } else
+                                       *q++ = *p;
+                               p++;
+                       }
+                       *q = '\0';
+                       item = gtk_item_factory_get_item(ifactory, path);
+                       gtk_widget_activate(item);
+                       g_free(path);
+                       break;
+               }
+       }
+}
+
 static void compose_set_template_menu(Compose *compose)
 {
        GSList *tmpl_list, *cur;
@@ -5301,7 +5552,6 @@ void compose_update_actions_menu(Compose *compose)
 void compose_update_privacy_systems_menu(Compose *compose)
 {
        static gchar *branch_path = "/Options/Privacy System";
-       static gboolean connected = FALSE;
        GtkItemFactory *ifactory;
        GtkWidget *menuitem;
        GSList *systems, *cur;
@@ -5325,11 +5575,9 @@ void compose_update_privacy_systems_menu(Compose *compose)
 
        system_none = gtk_item_factory_get_widget(ifactory,
                "/Options/Privacy System/None");
-       if (!connected) {
-               g_signal_connect(G_OBJECT(system_none), "activate",
-                       G_CALLBACK(compose_set_privacy_system_cb), compose);
-               connected = TRUE;
-       }
+
+       g_signal_connect(G_OBJECT(system_none), "activate",
+               G_CALLBACK(compose_set_privacy_system_cb), compose);
 
        systems = privacy_get_system_ids();
        for (cur = systems; cur != NULL; cur = g_slist_next(cur)) {
@@ -5381,7 +5629,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
        GtkTextIter iter;
        gchar *qmark;
        gchar *parsed_str;
-
+       gint cursor_pos = 0;
        if (!tmpl || !tmpl->value) return;
 
        text = GTK_TEXT_VIEW(compose->text);
@@ -5399,7 +5647,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
                compose_entry_append(compose, tmpl->bcc, COMPOSE_BCC);
 
        if (replace)
-               gtk_text_buffer_set_text(buffer, "", 1);
+               gtk_text_buffer_set_text(buffer, "", -1);
 
        mark = gtk_text_buffer_get_insert(buffer);
        gtk_text_buffer_get_iter_at_mark(buffer, &iter, mark);
@@ -5430,6 +5678,13 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
                gtk_text_buffer_get_start_iter(buffer, &iter);
                gtk_text_buffer_place_cursor(buffer, &iter);
        }
+       
+       if (parsed_str) {
+               cursor_pos = quote_fmt_get_cursor_pos();
+               gtk_text_buffer_get_start_iter(buffer, &iter);
+               gtk_text_buffer_get_iter_at_offset(buffer, &iter, cursor_pos);
+               gtk_text_buffer_place_cursor(buffer, &iter);
+       }
 
        if (parsed_str)
                compose_changed_cb(NULL, compose);
@@ -5437,9 +5692,7 @@ static void compose_template_apply(Compose *compose, Template *tmpl,
 
 static void compose_destroy(Compose *compose)
 {
-       gint row;
-       GtkCList *clist = GTK_CLIST(compose->attach_clist);
-       AttachInfo *ainfo;
+       compose_list = g_list_remove(compose_list, compose);
 
        /* NOTE: address_completion_end() does nothing with the window
         * however this may change. */
@@ -5478,29 +5731,27 @@ static void compose_destroy(Compose *compose)
 
        g_free(compose->exteditor_file);
 
-       for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
-            row++)
-               compose_attach_info_free(ainfo);
-
        if (addressbook_get_target_compose() == compose)
                addressbook_set_target_compose(NULL);
 
 #if USE_ASPELL
         if (compose->gtkaspell) {
                gtkaspell_delete(compose->gtkaspell);
+               compose->gtkaspell = NULL;
         }
 #endif
 
        prefs_common.compose_width = compose->scrolledwin->allocation.width;
        prefs_common.compose_height = compose->window->allocation.height;
 
-       gtk_widget_destroy(compose->paned);
+       if (!gtk_widget_get_parent(compose->paned))
+               gtk_widget_destroy(compose->paned);
+       gtk_widget_destroy(compose->popupmenu);
 
+       gtk_widget_destroy(compose->window);
        toolbar_destroy(compose->toolbar);
        g_free(compose->toolbar);
        g_free(compose);
-
-       compose_list = g_list_remove(compose_list, compose);
 }
 
 static void compose_attach_info_free(AttachInfo *ainfo)
@@ -5513,16 +5764,38 @@ static void compose_attach_info_free(AttachInfo *ainfo)
 
 static void compose_attach_remove_selected(Compose *compose)
 {
-       GtkCList *clist = GTK_CLIST(compose->attach_clist);
-       AttachInfo *ainfo;
-       gint row;
+       GtkTreeView *tree_view = GTK_TREE_VIEW(compose->attach_clist);
+       GtkTreeSelection *selection;
+       GList *sel, *cur;
+       GtkTreeModel *model;
+
+       selection = gtk_tree_view_get_selection(tree_view);
+       sel = gtk_tree_selection_get_selected_rows(selection, &model);
+
+       if (!sel) 
+               return;
+
+       for (cur = sel; cur != NULL; cur = cur->next) {
+               GtkTreePath *path = cur->data;
+               GtkTreeRowReference *ref = gtk_tree_row_reference_new
+                                               (model, cur->data);
+               cur->data = ref;
+               gtk_tree_path_free(path);
+       }
+
+       for (cur = sel; cur != NULL; cur = cur->next) {
+               GtkTreeRowReference *ref = cur->data;
+               GtkTreePath *path = gtk_tree_row_reference_get_path(ref);
+               GtkTreeIter iter;
 
-       while (clist->selection != NULL) {
-               row = GPOINTER_TO_INT(clist->selection->data);
-               ainfo = gtk_clist_get_row_data(clist, row);
-               compose_attach_info_free(ainfo);
-               gtk_clist_remove(clist, row);
+               if (gtk_tree_model_get_iter(model, &iter, path))
+                       gtk_list_store_remove(GTK_LIST_STORE(model), &iter);
+               
+               gtk_tree_path_free(path);
+               gtk_tree_row_reference_free(ref);
        }
+
+       g_list_free(sel);
 }
 
 static struct _AttachProperty
@@ -5536,19 +5809,42 @@ static struct _AttachProperty
        GtkWidget *cancel_btn;
 } attach_prop;
 
+static void gtk_tree_path_free_(gpointer ptr, gpointer data)
+{      
+       gtk_tree_path_free((GtkTreePath *)ptr);
+}
+
 static void compose_attach_property(Compose *compose)
 {
-       GtkCList *clist = GTK_CLIST(compose->attach_clist);
+       GtkTreeView *tree_view = GTK_TREE_VIEW(compose->attach_clist);
        AttachInfo *ainfo;
-       gint row;
        GtkOptionMenu *optmenu;
+       GtkTreeSelection *selection;
+       GList *sel;
+       GtkTreeModel *model;
+       GtkTreeIter iter;
+       GtkTreePath *path;
        static gboolean cancelled;
 
-       if (!clist->selection) return;
-       row = GPOINTER_TO_INT(clist->selection->data);
+       /* only if one selected */
+       selection = gtk_tree_view_get_selection(tree_view);
+       if (gtk_tree_selection_count_selected_rows(selection) != 1) 
+               return;
+
+       sel = gtk_tree_selection_get_selected_rows(selection, &model);
+       if (!sel)
+               return;
 
-       ainfo = gtk_clist_get_row_data(clist, row);
-       if (!ainfo) return;
+       path = (GtkTreePath *) sel->data;
+       gtk_tree_model_get_iter(model, &iter, path);
+       gtk_tree_model_get(model, &iter, COL_DATA, &ainfo, -1); 
+       
+       if (!ainfo) {
+               g_list_foreach(sel, gtk_tree_path_free_, NULL);
+               g_list_free(sel);
+               return;
+       }               
+       g_list_free(sel);
 
        if (!attach_prop.window)
                compose_attach_property_create(&cancelled);
@@ -5583,10 +5879,10 @@ static void compose_attach_property(Compose *compose)
                cancelled = FALSE;
                gtk_main();
 
-               if (cancelled == TRUE) {
-                       gtk_widget_hide(attach_prop.window);
+               gtk_widget_hide(attach_prop.window);
+               
+               if (cancelled) 
                        break;
-               }
 
                entry_text = gtk_entry_get_text(GTK_ENTRY(attach_prop.mimetype_entry));
                if (*entry_text != '\0') {
@@ -5638,15 +5934,19 @@ static void compose_attach_property(Compose *compose)
                if (size)
                        ainfo->size = size;
 
-               gtk_clist_set_text(clist, row, COL_MIMETYPE,
-                                  ainfo->content_type);
-               gtk_clist_set_text(clist, row, COL_SIZE,
-                                  to_human_readable(ainfo->size));
-               gtk_clist_set_text(clist, row, COL_NAME, ainfo->name);
-
-               gtk_widget_hide(attach_prop.window);
+               /* update tree store */
+               text = to_human_readable(ainfo->size);
+               gtk_tree_model_get_iter(model, &iter, path);
+               gtk_list_store_set(GTK_LIST_STORE(model), &iter,
+                                  COL_MIMETYPE, ainfo->content_type,
+                                  COL_SIZE, text,
+                                  COL_NAME, ainfo->file,
+                                  -1);
+               
                break;
        }
+
+       gtk_tree_path_free(path);
 }
 
 #define SET_LABEL_AND_ENTRY(str, entry, top) \
@@ -5744,14 +6044,8 @@ static void compose_attach_property_create(gboolean *cancelled)
        optmenu_menu = gtk_menu_new();
        MENUITEM_ADD(optmenu_menu, menuitem, "7bit", ENC_7BIT);
        gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
-#if 0
-       gtk_widget_set_sensitive(menuitem, FALSE);
-#endif
        MENUITEM_ADD(optmenu_menu, menuitem, "8bit", ENC_8BIT);
        gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
-#if 0
-       gtk_widget_set_sensitive(menuitem, FALSE);
-#endif
        MENUITEM_ADD(optmenu_menu, menuitem, "quoted-printable",
                     ENC_QUOTED_PRINTABLE);
        gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
@@ -5763,8 +6057,9 @@ static void compose_attach_property_create(gboolean *cancelled)
        SET_LABEL_AND_ENTRY(_("Path"),      path_entry,     2);
        SET_LABEL_AND_ENTRY(_("File name"), filename_entry, 3);
 
-       gtkut_button_set_create(&hbbox, &ok_btn, _("OK"),
-                               &cancel_btn, _("Cancel"), NULL, NULL);
+       gtkut_stock_button_set_create(&hbbox, &ok_btn, GTK_STOCK_OK,
+                                     &cancel_btn, GTK_STOCK_CANCEL,
+                                     NULL, NULL);
        gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
        gtk_widget_grab_default(ok_btn);
 
@@ -5822,6 +6117,7 @@ static gboolean attach_property_key_pressed(GtkWidget *widget,
 
 static void compose_exec_ext_editor(Compose *compose)
 {
+#ifdef G_OS_UNIX
        gchar *tmp;
        pid_t pid;
        gint pipe_fds[2];
@@ -5847,13 +6143,14 @@ static void compose_exec_ext_editor(Compose *compose)
 
                compose->exteditor_file    = g_strdup(tmp);
                compose->exteditor_pid     = pid;
-               compose->exteditor_readdes = pipe_fds[0];
 
                compose_set_ext_editor_sensitive(compose, FALSE);
 
-               compose->exteditor_tag =
-                       gdk_input_add(pipe_fds[0], GDK_INPUT_READ,
-                                     compose_input_cb, compose);
+               compose->exteditor_ch = g_io_channel_unix_new(pipe_fds[0]);
+               compose->exteditor_tag = g_io_add_watch(compose->exteditor_ch,
+                                                       G_IO_IN,
+                                                       compose_input_cb,
+                                                       compose);
        } else {        /* process-monitoring process */
                pid_t pid_ed;
 
@@ -5884,8 +6181,10 @@ static void compose_exec_ext_editor(Compose *compose)
        }
 
        g_free(tmp);
+#endif /* G_OS_UNIX */
 }
 
+#ifdef G_OS_UNIX
 static gint compose_exec_ext_editor_real(const gchar *file)
 {
        static gchar *def_cmd = "emacs %s";
@@ -5914,7 +6213,7 @@ static gint compose_exec_ext_editor_real(const gchar *file)
                g_snprintf(buf, sizeof(buf), prefs_common.ext_editor_cmd, file);
        } else {
                if (prefs_common.ext_editor_cmd)
-                       g_warning("External editor command line is invalid: `%s'\n",
+                       g_warning("External editor command line is invalid: '%s'\n",
                                  prefs_common.ext_editor_cmd);
                g_snprintf(buf, sizeof(buf), def_cmd, file);
        }
@@ -5943,12 +6242,16 @@ static gboolean compose_ext_editor_kill(Compose *compose)
                        (_("The external editor is still working.\n"
                           "Force terminating the process?\n"
                           "process group id: %d"), -pgid);
-               val = alertpanel(_("Notice"), msg, _("Yes"), _("+No"), NULL);
+               val = alertpanel_full(_("Notice"), msg, GTK_STOCK_YES, GTK_STOCK_NO,
+                                     NULL, FALSE, NULL, ALERT_WARNING, G_ALERTALTERNATE);
+                       
                g_free(msg);
 
                if (val == G_ALERTDEFAULT) {
-                       gdk_input_remove(compose->exteditor_tag);
-                       close(compose->exteditor_readdes);
+                       g_source_remove(compose->exteditor_tag);
+                       g_io_channel_shutdown(compose->exteditor_ch,
+                                             FALSE, NULL);
+                       g_io_channel_unref(compose->exteditor_ch);
 
                        if (kill(pgid, SIGTERM) < 0) perror("kill");
                        waitpid(compose->exteditor_pid, NULL, 0);
@@ -5962,7 +6265,7 @@ static gboolean compose_ext_editor_kill(Compose *compose)
                        g_free(compose->exteditor_file);
                        compose->exteditor_file    = NULL;
                        compose->exteditor_pid     = -1;
-                       compose->exteditor_readdes = -1;
+                       compose->exteditor_ch      = NULL;
                        compose->exteditor_tag     = -1;
                } else
                        return FALSE;
@@ -5971,30 +6274,19 @@ static gboolean compose_ext_editor_kill(Compose *compose)
        return TRUE;
 }
 
-static void compose_input_cb(gpointer data, gint source,
-                            GdkInputCondition condition)
+static gboolean compose_input_cb(GIOChannel *source, GIOCondition condition,
+                                gpointer data)
 {
-       gchar buf[3];
+       gchar buf[3] = "3";
        Compose *compose = (Compose *)data;
-       gint i = 0;
+       gsize bytes_read;
 
-       debug_print("Compose: input from monitoring process\n");
+       debug_print(_("Compose: input from monitoring process\n"));
 
-       gdk_input_remove(compose->exteditor_tag);
+       g_io_channel_read_chars(source, buf, sizeof(buf), &bytes_read, NULL);
 
-       for (;;) {
-               if (read(source, &buf[i], 1) < 1) {
-                       buf[0] = '3';
-                       break;
-               }
-               if (buf[i] == '\n') {
-                       buf[i] = '\0';
-                       break;
-               }
-               i++;
-               if (i == sizeof(buf) - 1)
-                       break;
-       }
+       g_io_channel_shutdown(source, FALSE, NULL);
+       g_io_channel_unref(source);
 
        waitpid(compose->exteditor_pid, NULL, 0);
 
@@ -6002,15 +6294,15 @@ static void compose_input_cb(gpointer data, gint source,
                GtkTextView *text = GTK_TEXT_VIEW(compose->text);
                GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
 
-               gtk_text_buffer_set_text(buffer, "", 1);
+               gtk_text_buffer_set_text(buffer, "", -1);
                compose_insert_file(compose, compose->exteditor_file);
                compose_changed_cb(NULL, compose);
 
-               if (unlink(compose->exteditor_file) < 0)
+               if (g_unlink(compose->exteditor_file) < 0)
                        FILE_OP_ERROR(compose->exteditor_file, "unlink");
        } else if (buf[0] == '1') {     /* failed */
                g_warning("Couldn't exec external editor\n");
-               if (unlink(compose->exteditor_file) < 0)
+               if (g_unlink(compose->exteditor_file) < 0)
                        FILE_OP_ERROR(compose->exteditor_file, "unlink");
        } else if (buf[0] == '2') {
                g_warning("Couldn't write to file\n");
@@ -6018,15 +6310,15 @@ static void compose_input_cb(gpointer data, gint source,
                g_warning("Pipe read failed\n");
        }
 
-       close(source);
-
        compose_set_ext_editor_sensitive(compose, TRUE);
 
        g_free(compose->exteditor_file);
        compose->exteditor_file    = NULL;
        compose->exteditor_pid     = -1;
-       compose->exteditor_readdes = -1;
+       compose->exteditor_ch      = NULL;
        compose->exteditor_tag     = -1;
+
+       return FALSE;
 }
 
 static void compose_set_ext_editor_sensitive(Compose *compose,
@@ -6055,6 +6347,7 @@ static void compose_set_ext_editor_sensitive(Compose *compose,
        gtk_widget_set_sensitive(compose->toolbar->linewrap_current_btn,  sensitive);
        gtk_widget_set_sensitive(compose->toolbar->linewrap_all_btn,  sensitive);
 }
+#endif /* G_OS_UNIX */
 
 /**
  * compose_undo_state_changed:
@@ -6120,12 +6413,6 @@ static void compose_undo_state_changed(UndoMain *undostruct, gint undo_state,
        }
 }
 
-static gint calc_cursor_xpos(GtkTextView *text, gint extra, gint char_width)
-{
-#warning FIXME_GTK2
-       return 0;
-}
-
 /* callback functions */
 
 /* compose_edit_size_alloc() - called when resized. don't know whether Gtk
@@ -6147,10 +6434,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_VIEW(widget),
-                                                    allocation->x,
-                                                    char_width),
+                                   0.0, line_width_in_chars, 0,
                                    /*line_width_in_chars*/ char_width);
        }
 
@@ -6187,37 +6471,39 @@ static void account_activated(GtkMenuItem *menuitem, gpointer data)
        }
 }
 
-static void attach_selected(GtkCList *clist, gint row, gint column,
-                           GdkEvent *event, gpointer data)
+static void attach_selected(GtkTreeView *tree_view, GtkTreePath *tree_path,
+                           GtkTreeViewColumn *column, Compose *compose)
 {
-       Compose *compose = (Compose *)data;
-
-       if (event && event->type == GDK_2BUTTON_PRESS)
-               compose_attach_property(compose);
+       compose_attach_property(compose);
 }
 
 static gboolean attach_button_pressed(GtkWidget *widget, GdkEventButton *event,
                                      gpointer data)
 {
        Compose *compose = (Compose *)data;
-       GtkCList *clist = GTK_CLIST(compose->attach_clist);
-       gint row, column;
-
+       GtkTreeSelection *attach_selection;
+       gint attach_nr_selected;
+       GtkItemFactory *ifactory;
+       
        if (!event) return FALSE;
 
        if (event->button == 3) {
-               if ((clist->selection && !clist->selection->next) ||
-                   !clist->selection) {
-                       gtk_clist_unselect_all(clist);
-                       if (gtk_clist_get_selection_info(clist,
-                                                        event->x, event->y,
-                                                        &row, &column)) {
-                               gtk_clist_select_row(clist, row, column);
-                               gtkut_clist_set_focus_row(clist, row);
-                       }
+               attach_selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget));
+               attach_nr_selected = gtk_tree_selection_count_selected_rows(attach_selection);
+               ifactory = gtk_item_factory_from_widget(compose->popupmenu);
+                       
+               if (attach_nr_selected > 0)
+               {
+                       menu_set_sensitive(ifactory, "/Remove", TRUE);
+                       menu_set_sensitive(ifactory, "/Properties...", TRUE);
+               } else {
+                       menu_set_sensitive(ifactory, "/Remove", FALSE);
+                       menu_set_sensitive(ifactory, "/Properties...", FALSE);
                }
+                       
                gtk_menu_popup(GTK_MENU(compose->popupmenu), NULL, NULL,
                               NULL, NULL, event->button, event->time);
+               return TRUE;                           
        }
 
        return FALSE;
@@ -6250,17 +6536,17 @@ static void compose_allow_user_actions (Compose *compose, gboolean allow)
        menu_set_sensitive(ifactory, "/Options", allow);
        menu_set_sensitive(ifactory, "/Tools", allow);
        menu_set_sensitive(ifactory, "/Help", allow);
+       
+       gtk_text_view_set_editable(GTK_TEXT_VIEW(compose->text), allow);
+
 }
 
 static void compose_send_cb(gpointer data, guint action, GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
        
-       if (prefs_common.work_offline)
-               if (alertpanel(_("Offline warning"), 
-                              _("You're working offline. Override?"),
-                              _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
-                       return;
+       if (prefs_common.work_offline && !inc_offline_should_override())
+               return;
        
        if (compose->draft_timeout_tag != -1) { /* CLAWS: disable draft timeout */
                gtk_timeout_remove(compose->draft_timeout_tag);
@@ -6279,6 +6565,9 @@ static void compose_send_later_cb(gpointer data, guint action,
        val = compose_queue_sub(compose, NULL, NULL, TRUE);
        if (!val) 
                compose_close(compose);
+       else if (val == -2) {
+               alertpanel_error(_("Could not queue message:\n\n%s."), strerror(errno));
+       }
 }
 
 void compose_draft (gpointer data) 
@@ -6306,7 +6595,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 
        tmp = g_strdup_printf("%s%cdraft.%p", get_tmp_dir(),
                              G_DIR_SEPARATOR, compose);
-       if ((fp = fopen(tmp, "wb")) == NULL) {
+       if ((fp = g_fopen(tmp, "wb")) == NULL) {
                FILE_OP_ERROR(tmp, "fopen");
                return;
        }
@@ -6327,14 +6616,16 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                fprintf(fp, "SCF:%s\n", savefolderid);
                g_free(savefolderid);
        }
-       fprintf(fp, "X-Sylpheed-Sign:%d\n", compose->use_signing);
-       fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
-       fprintf(fp, "X-Sylpheed-Privacy-System:%s\n", compose->privacy_system);
+       if (compose->privacy_system) {
+               fprintf(fp, "X-Sylpheed-Sign:%d\n", compose->use_signing);
+               fprintf(fp, "X-Sylpheed-Encrypt:%d\n", compose->use_encryption);
+               fprintf(fp, "X-Sylpheed-Privacy-System:%s\n", compose->privacy_system);
+       }
        fprintf(fp, "\n");
 
        if (compose_write_to_file(compose, fp, COMPOSE_WRITE_FOR_STORE) < 0) {
                fclose(fp);
-               unlink(tmp);
+               g_unlink(tmp);
                g_free(tmp);
                lock = FALSE;
                return;
@@ -6343,9 +6634,11 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 
        folder_item_scan(draft);
        if ((msgnum = folder_item_add_msg(draft, tmp, &flag, TRUE)) < 0) {
-               unlink(tmp);
+               g_unlink(tmp);
                g_free(tmp);
                lock = FALSE;
+               if (action != COMPOSE_AUTO_SAVE)
+                       alertpanel_error(_("Could not save draft."));
                return;
        }
        g_free(tmp);
@@ -6378,7 +6671,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
 
                path = folder_item_fetch_msg(draft, msgnum);
                g_return_if_fail(path != NULL);
-               if (stat(path, &s) < 0) {
+               if (g_stat(path, &s) < 0) {
                        FILE_OP_ERROR(path, "stat");
                        g_free(path);
                        lock = FALSE;
@@ -6397,6 +6690,8 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
                if (action == COMPOSE_AUTO_SAVE) {
                        compose->autosaved_draft = compose->targetinfo;
                }
+               compose->modified = FALSE;
+               compose_set_title(compose);
        }
 }
 
@@ -6415,9 +6710,11 @@ static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
 
                for ( tmp = file_list; tmp; tmp = tmp->next) {
                        gchar *file = (gchar *) tmp->data;
-                       compose_attach_append(compose, file, file, NULL);
+                       gchar *utf8_filename = conv_filename_to_utf8(file);
+                       compose_attach_append(compose, file, utf8_filename, NULL);
                        compose_changed_cb(NULL, compose);
                        g_free(file);
+                       g_free(utf8_filename);
                }
                g_list_free(file_list);
        }               
@@ -6484,15 +6781,17 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
        Compose *compose = (Compose *)data;
        AlertValue val;
 
+#ifdef G_OS_UNIX
        if (compose->exteditor_tag != -1) {
                if (!compose_ext_editor_kill(compose))
                        return;
        }
+#endif
 
        if (compose->modified) {
                val = alertpanel(_("Discard message"),
-                                _("This message has been modified. discard it?"),
-                                _("Discard"), _("to Draft"), _("Cancel"));
+                                _("This message has been modified. Discard it?"),
+                                _("Discard"), _("Save to Drafts"), GTK_STOCK_CANCEL);
 
                switch (val) {
                case G_ALERTDEFAULT:
@@ -6510,6 +6809,15 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
        compose_close(compose);
 }
 
+static void compose_set_encoding_cb(gpointer data, guint action,
+                                   GtkWidget *widget)
+{
+       Compose *compose = (Compose *)data;
+
+       if (GTK_CHECK_MENU_ITEM(widget)->active)
+               compose->out_encoding = (CharSet)action;
+}
+
 static void compose_address_cb(gpointer data, guint action, GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
@@ -6527,10 +6835,10 @@ static void compose_template_activate_cb(GtkWidget *widget, gpointer data)
        tmpl = g_object_get_data(G_OBJECT(widget), "template");
        g_return_if_fail(tmpl != NULL);
 
-       msg = g_strdup_printf(_("Do you want to apply the template `%s' ?"),
+       msg = g_strdup_printf(_("Do you want to apply the template '%s' ?"),
                              tmpl->name);
        val = alertpanel(_("Apply template"), msg,
-                        _("Replace"), _("Insert"), _("Cancel"));
+                        _("_Replace"), _("_Insert"), GTK_STOCK_CANCEL);
        g_free(msg);
 
        if (val == G_ALERTDEFAULT)
@@ -6547,21 +6855,22 @@ static void compose_ext_editor_cb(gpointer data, guint action,
        compose_exec_ext_editor(compose);
 }
 
-static void compose_destroy_cb(GtkWidget *widget, Compose *compose)
-{
-       if (compose->sending)
-               return;
-       compose_destroy(compose);
-}
-
 static void compose_undo_cb(Compose *compose)
 {
+       gboolean prev_autowrap = compose->autowrap;
+
+       compose->autowrap = FALSE;
        undo_undo(compose->undostruct);
+       compose->autowrap = prev_autowrap;
 }
 
 static void compose_redo_cb(Compose *compose)
 {
+       gboolean prev_autowrap = compose->autowrap;
+       
+       compose->autowrap = FALSE;
        undo_redo(compose->undostruct);
+       compose->autowrap = prev_autowrap;
 }
 
 static void entry_cut_clipboard(GtkWidget *entry)
@@ -6571,7 +6880,7 @@ static void entry_cut_clipboard(GtkWidget *entry)
        else if (GTK_IS_TEXT_VIEW(entry))
                gtk_text_buffer_cut_clipboard(
                        gtk_text_view_get_buffer(GTK_TEXT_VIEW(entry)),
-                       gtk_clipboard_get(GDK_NONE),
+                       gtk_clipboard_get(GDK_SELECTION_CLIPBOARD),
                        TRUE);
 }
 
@@ -6582,18 +6891,45 @@ static void entry_copy_clipboard(GtkWidget *entry)
        else if (GTK_IS_TEXT_VIEW(entry))
                gtk_text_buffer_copy_clipboard(
                        gtk_text_view_get_buffer(GTK_TEXT_VIEW(entry)),
-                       gtk_clipboard_get(GDK_NONE));
+                       gtk_clipboard_get(GDK_SELECTION_CLIPBOARD));
 }
 
-static void entry_paste_clipboard(GtkWidget *entry)
+static void entry_paste_clipboard(Compose *compose, GtkWidget *entry, 
+                                 gboolean wrap, GdkAtom clip)
 {
-       if (GTK_IS_EDITABLE(entry))
+       if (GTK_IS_TEXT_VIEW(entry)) {
+               GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(entry));
+               GtkTextMark *mark_start = gtk_text_buffer_get_insert(buffer);
+               GtkTextIter start_iter, end_iter;
+               gint start, end;
+               
+               gchar *contents = gtk_clipboard_wait_for_text(gtk_clipboard_get(clip));
+
+               if (contents == NULL)
+                       return;
+
+               gtk_text_buffer_delete_selection(buffer, FALSE, TRUE);
+               gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, mark_start);
+               
+               start = gtk_text_iter_get_offset(&start_iter);
+
+               gtk_text_buffer_insert(buffer, &start_iter, contents, strlen(contents));
+               
+               if (!wrap) {
+                       end = start + strlen(contents);
+                       gtk_text_buffer_get_iter_at_offset(buffer, &start_iter, start);
+                       gtk_text_buffer_get_iter_at_offset(buffer, &end_iter, end);
+                       gtk_text_buffer_apply_tag_by_name(buffer, "no_wrap", &start_iter, &end_iter);
+               } else if (wrap && clip == GDK_SELECTION_PRIMARY) {
+                       mark_start = gtk_text_buffer_get_insert(buffer);
+                       gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, mark_start);
+                       gtk_text_iter_backward_char(&start_iter);
+                       compose_beautify_paragraph(compose, &start_iter, TRUE);
+               }
+               
+       } else if (GTK_IS_EDITABLE(entry))
                gtk_editable_paste_clipboard (GTK_EDITABLE(entry));
-       else if (GTK_IS_TEXT_VIEW(entry))
-               gtk_text_buffer_paste_clipboard(
-                       gtk_text_view_get_buffer(GTK_TEXT_VIEW(entry)),
-                       gtk_clipboard_get(GDK_NONE),
-                       NULL, TRUE);
+       
 }
 
 static void entry_allsel(GtkWidget *entry)
@@ -6615,7 +6951,6 @@ static void entry_allsel(GtkWidget *entry)
        }
 }
 
-
 static void compose_cut_cb(Compose *compose)
 {
        if (compose->focused_editable &&
@@ -6632,13 +6967,20 @@ static void compose_copy_cb(Compose *compose)
 
 static void compose_paste_cb(Compose *compose)
 {
+       gint prev_autowrap;
+       GtkTextBuffer *buffer;
+       BLOCK_WRAP();
        if (compose->focused_editable &&
            GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
-               entry_paste_clipboard(compose->focused_editable);
+               entry_paste_clipboard(compose, compose->focused_editable, 
+                               prefs_common.linewrap_pastes,
+                               GDK_SELECTION_CLIPBOARD);
+       UNBLOCK_WRAP();
 }
 
 static void compose_paste_as_quote_cb(Compose *compose)
 {
+       gint wrap_quote = prefs_common.linewrap_quote;
        if (compose->focused_editable &&
            GTK_WIDGET_HAS_FOCUS(compose->focused_editable)) {
                /* let text_insert() (called directly or at a later time
@@ -6651,10 +6993,38 @@ static void compose_paste_as_quote_cb(Compose *compose)
                g_object_set_data(G_OBJECT(compose->focused_editable),
                                    "paste_as_quotation",
                                    GINT_TO_POINTER(paste_as_quotation + 1));
-               entry_paste_clipboard(compose->focused_editable);
+               prefs_common.linewrap_quote = prefs_common.linewrap_pastes;
+               entry_paste_clipboard(compose, compose->focused_editable, 
+                               prefs_common.linewrap_pastes,
+                               GDK_SELECTION_CLIPBOARD);
+               prefs_common.linewrap_quote = wrap_quote;
        }
 }
 
+static void compose_paste_no_wrap_cb(Compose *compose)
+{
+       gint prev_autowrap;
+       GtkTextBuffer *buffer;
+       BLOCK_WRAP();
+       if (compose->focused_editable &&
+           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+               entry_paste_clipboard(compose, compose->focused_editable, FALSE,
+                       GDK_SELECTION_CLIPBOARD);
+       UNBLOCK_WRAP();
+}
+
+static void compose_paste_wrap_cb(Compose *compose)
+{
+       gint prev_autowrap;
+       GtkTextBuffer *buffer;
+       BLOCK_WRAP();
+       if (compose->focused_editable &&
+           GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
+               entry_paste_clipboard(compose, compose->focused_editable, TRUE,
+                       GDK_SELECTION_CLIPBOARD);
+       UNBLOCK_WRAP();
+}
+
 static void compose_allsel_cb(Compose *compose)
 {
        if (compose->focused_editable &&
@@ -6770,7 +7140,6 @@ static void textview_move_next_line (GtkTextView *text)
        buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text));
        mark = gtk_text_buffer_get_insert(buffer);
        gtk_text_buffer_get_iter_at_mark(buffer, &ins, mark);
-#warning FIXME_GTK2 /* should regist current line offset */
        offset = gtk_text_iter_get_line_offset(&ins);
        if (gtk_text_iter_forward_line(&ins)) {
                gtk_text_iter_set_line_offset(&ins, offset);
@@ -6790,7 +7159,6 @@ static void textview_move_previous_line (GtkTextView *text)
        buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text));
        mark = gtk_text_buffer_get_insert(buffer);
        gtk_text_buffer_get_iter_at_mark(buffer, &ins, mark);
-#warning FIXME_GTK2 /* should regist current line offset */
        offset = gtk_text_iter_get_line_offset(&ins);
        if (gtk_text_iter_backward_line(&ins)) {
                gtk_text_iter_set_line_offset(&ins, offset);
@@ -6948,34 +7316,38 @@ static void compose_advanced_action_cb(Compose *compose,
        }
 }
 
-static gchar *cliptext = NULL;
-
-static void compose_grab_focus_before_cb(GtkWidget *widget, Compose *compose)
-{
-       gchar *str = NULL;
-       GtkClipboard *clip = gtk_clipboard_get(gdk_atom_intern("PRIMARY", FALSE));
-       if (cliptext) {
-               g_free(cliptext);
-               cliptext = NULL;
-       }
-
-       if (gtk_clipboard_wait_is_text_available(clip))
-               cliptext = gtk_clipboard_wait_for_text(clip);
-}
-
 static void compose_grab_focus_cb(GtkWidget *widget, Compose *compose)
 {
        gchar *str = NULL;
-       GtkClipboard *clip = gtk_clipboard_get(gdk_atom_intern("PRIMARY", FALSE));
        
        if (GTK_IS_EDITABLE(widget)) {
                str = gtk_editable_get_chars(GTK_EDITABLE(widget), 0, -1);
                gtk_editable_set_position(GTK_EDITABLE(widget), 
                        strlen(str));
                g_free(str);
+               if (widget->parent && widget->parent->parent
+                && widget->parent->parent->parent) {
+                       if (GTK_IS_SCROLLED_WINDOW(widget->parent->parent->parent)) {
+                               gint y = widget->allocation.y;
+                               gint height = widget->allocation.height;
+                               GtkAdjustment *shown = gtk_scrolled_window_get_vadjustment
+                                       (GTK_SCROLLED_WINDOW(widget->parent->parent->parent));
+
+                               if (y < (int)shown->value) {
+                                       gtk_adjustment_set_value(GTK_ADJUSTMENT(shown), y - 1);
+                               }
+                               if (y + height > (int)shown->value + (int)shown->page_size) {
+                                       if (y - height - 1 < (int)shown->upper - (int)shown->page_size) {
+                                               gtk_adjustment_set_value(GTK_ADJUSTMENT(shown), 
+                                                       y + height - (int)shown->page_size - 1);
+                                       } else {
+                                               gtk_adjustment_set_value(GTK_ADJUSTMENT(shown), 
+                                                       (int)shown->upper - (int)shown->page_size - 1);
+                                       }
+                               }
+                       }
+               }
        }
-       if (cliptext)
-               gtk_clipboard_set_text(clip, cliptext, -1);
 
        if (GTK_IS_EDITABLE(widget) || GTK_IS_TEXT_VIEW(widget))
                compose->focused_editable = widget;
@@ -6989,13 +7361,23 @@ static void compose_changed_cb(GtkTextBuffer *textbuf, Compose *compose)
        }
 }
 
+static void compose_wrap_cb(gpointer data, guint action, GtkWidget *widget)
+{
+       Compose *compose = (Compose *)data;
+
+       if (action == 1)
+               compose_wrap_all_full(compose, TRUE);
+       else
+               compose_beautify_paragraph(compose, NULL, TRUE);
+}
+
 static void compose_toggle_autowrap_cb(gpointer data, guint action,
                                       GtkWidget *widget)
 {
        Compose *compose = (Compose *)data;
        compose->autowrap = GTK_CHECK_MENU_ITEM(widget)->active;
        if (compose->autowrap)
-               compose_wrap_line_all_full(compose, TRUE);
+               compose_wrap_all_full(compose, TRUE);
 }
 
 static void compose_toggle_sign_cb(gpointer data, guint action,
@@ -7020,11 +7402,11 @@ static void compose_toggle_encrypt_cb(gpointer data, guint action,
                compose->use_encryption = FALSE;
 }
 
-static void activate_privacy_system(Compose *compose, PrefsAccount *account) 
+static void activate_privacy_system(Compose *compose, PrefsAccount *account, gboolean warn
 {
        g_free(compose->privacy_system);
        compose->privacy_system = g_strdup(account->default_privacy_system);
-       compose_update_privacy_system_menu_item(compose);
+       compose_update_privacy_system_menu_item(compose, warn);
 }
 
 static void compose_toggle_ruler_cb(gpointer data, guint action,
@@ -7053,15 +7435,27 @@ static void compose_attach_drag_received_cb (GtkWidget          *widget,
 {
        Compose *compose = (Compose *)user_data;
        GList *list, *tmp;
+       
+       if (gdk_atom_name(data->type) && !strcmp(gdk_atom_name(data->type), "text/uri-list")) {
+               list = uri_list_extract_filenames((const gchar *)data->data);
+               for (tmp = list; tmp != NULL; tmp = tmp->next)
+                       compose_attach_append
+                               (compose, (const gchar *)tmp->data,
+                                (const gchar *)tmp->data, NULL);
+               if (list) compose_changed_cb(NULL, compose);
+               list_free_strings(list);
+               g_list_free(list);
+       }
+}
 
-       list = uri_list_extract_filenames((const gchar *)data->data);
-       for (tmp = list; tmp != NULL; tmp = tmp->next)
-               compose_attach_append
-                       (compose, (const gchar *)tmp->data,
-                        (const gchar *)tmp->data, NULL);
-       if (list) compose_changed_cb(NULL, compose);
-       list_free_strings(list);
-       g_list_free(list);
+static gboolean compose_drag_drop(GtkWidget *widget,
+                                 GdkDragContext *drag_context,
+                                 gint x, gint y,
+                                 guint time, gpointer user_data)
+{
+       /* not handling this signal makes compose_insert_drag_received_cb
+        * called twice */
+       return TRUE;                                     
 }
 
 static void compose_insert_drag_received_cb (GtkWidget         *widget,
@@ -7076,76 +7470,58 @@ static void compose_insert_drag_received_cb (GtkWidget          *widget,
        Compose *compose = (Compose *)user_data;
        GList *list, *tmp;
 
-       list = uri_list_extract_filenames((const gchar *)data->data);
-       for (tmp = list; tmp != NULL; tmp = tmp->next)
-               compose_insert_file(compose, (const gchar *)tmp->data);
-       list_free_strings(list);
-       g_list_free(list);
-}
-
-#if 0 /* NEW COMPOSE GUI */
-static void to_activated(GtkWidget *widget, Compose *compose)
-{
-       if (GTK_WIDGET_VISIBLE(compose->newsgroups_entry))
-               gtk_widget_grab_focus(compose->newsgroups_entry);
-       else
-               gtk_widget_grab_focus(compose->subject_entry);
-}
-
-static void newsgroups_activated(GtkWidget *widget, Compose *compose)
-{
-       gtk_widget_grab_focus(compose->subject_entry);
-}
-
-static void subject_activated(GtkWidget *widget, Compose *compose)
-{
-       if (GTK_WIDGET_VISIBLE(compose->cc_entry))
-               gtk_widget_grab_focus(compose->cc_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
-               gtk_widget_grab_focus(compose->bcc_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
-               gtk_widget_grab_focus(compose->reply_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
-               gtk_widget_grab_focus(compose->followup_entry);
-       else
-               gtk_widget_grab_focus(compose->text);
+       /* strangely, testing data->type == gdk_atom_intern("text/uri-list", TRUE)
+        * does not work */
+       if (gdk_atom_name(data->type) && !strcmp(gdk_atom_name(data->type), "text/uri-list")) {
+               list = uri_list_extract_filenames((const gchar *)data->data);
+               for (tmp = list; tmp != NULL; tmp = tmp->next) {
+                               compose_insert_file(compose, (const gchar *)tmp->data);
+               }
+               list_free_strings(list);
+               g_list_free(list);
+               gtk_drag_finish(drag_context, TRUE, FALSE, time);
+               return;
+       } else {
+               gchar *tmpfile = get_tmp_file();
+               str_write_to_file((const gchar *)data->data, tmpfile);
+               compose_insert_file(compose, tmpfile);
+               g_unlink(tmpfile);
+               g_free(tmpfile);
+               gtk_drag_finish(drag_context, TRUE, FALSE, time);
+               return;
+       }
+       gtk_drag_finish(drag_context, TRUE, FALSE, time);
 }
 
-static void cc_activated(GtkWidget *widget, Compose *compose)
+static void compose_header_drag_received_cb (GtkWidget         *widget,
+                                            GdkDragContext     *drag_context,
+                                            gint                x,
+                                            gint                y,
+                                            GtkSelectionData   *data,
+                                            guint               info,
+                                            guint               time,
+                                            gpointer            user_data)
 {
-       if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
-               gtk_widget_grab_focus(compose->bcc_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
-               gtk_widget_grab_focus(compose->reply_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
-               gtk_widget_grab_focus(compose->followup_entry);
-       else
-               gtk_widget_grab_focus(compose->text);
-}
+       GtkEditable *entry = (GtkEditable *)user_data;
+       gchar *email = (gchar *)data->data;
 
-static void bcc_activated(GtkWidget *widget, Compose *compose)
-{
-       if (GTK_WIDGET_VISIBLE(compose->reply_entry))
-               gtk_widget_grab_focus(compose->reply_entry);
-       else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
-               gtk_widget_grab_focus(compose->followup_entry);
-       else
-               gtk_widget_grab_focus(compose->text);
-}
+       /* strangely, testing data->type == gdk_atom_intern("text/plain", TRUE)
+        * does not work */
 
-static void replyto_activated(GtkWidget *widget, Compose *compose)
-{
-       if (GTK_WIDGET_VISIBLE(compose->followup_entry))
-               gtk_widget_grab_focus(compose->followup_entry);
-       else
-               gtk_widget_grab_focus(compose->text);
-}
+       if (!strncmp(email, "mailto:", strlen("mailto:"))) {
+               gchar *decoded=g_new(gchar, strlen(email));
+               int start = 0;
 
-static void followupto_activated(GtkWidget *widget, Compose *compose)
-{
-       gtk_widget_grab_focus(compose->text);
+               email += strlen("mailto:");
+               decode_uri(decoded, email); /* will fit */
+               gtk_editable_delete_text(entry, 0, -1);
+               gtk_editable_insert_text(entry, decoded, strlen(decoded), &start);
+               gtk_drag_finish(drag_context, TRUE, FALSE, time);
+               g_free(decoded);
+               return;
+       }
+       gtk_drag_finish(drag_context, TRUE, FALSE, time);
 }
-#endif
 
 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
                                             GtkWidget *widget)
@@ -7233,18 +7609,14 @@ static void compose_show_first_last_header(Compose *compose, gboolean show_first
        gtk_adjustment_set_value(vadj, (show_first ? vadj->lower : vadj->upper));
 }
 
-static void text_activated(GtkWidget *widget, Compose *compose)
-{
-       compose_send_control_enter(compose);
-}
-
 static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                          const gchar *text, gint len, Compose *compose)
 {
        gint paste_as_quotation = GPOINTER_TO_INT(g_object_get_data
                                (G_OBJECT(compose->text), "paste_as_quotation"));
+       GtkTextMark *mark;
 
-       g_return_if_fail(text);
+       g_return_if_fail(text != NULL);
 
        g_signal_handlers_block_by_func(G_OBJECT(buffer),
                                        G_CALLBACK(text_inserted),
@@ -7261,16 +7633,25 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                        qmark = prefs_common.quotemark;
                else
                        qmark = "> ";
+
+               mark = gtk_text_buffer_create_mark(buffer, NULL, iter, FALSE);
                gtk_text_buffer_place_cursor(buffer, iter);
+
                compose_quote_fmt(compose, NULL, "%Q", qmark, new_text);
                g_free(new_text);
                g_object_set_data(G_OBJECT(compose->text), "paste_as_quotation",
                                  GINT_TO_POINTER(paste_as_quotation - 1));
+                                 
+               gtk_text_buffer_get_iter_at_mark(buffer, iter, mark);
        } else
                gtk_text_buffer_insert(buffer, iter, text, len);
 
-       if (compose->autowrap)
-               compose_wrap_line_all_full(compose, TRUE);
+       mark = gtk_text_buffer_create_mark(buffer, NULL, iter, FALSE);
+       
+       compose_beautify_paragraph(compose, iter, FALSE);
+
+       gtk_text_buffer_get_iter_at_mark(buffer, iter, mark);
+       gtk_text_buffer_delete_mark(buffer, mark);
 
        g_signal_handlers_unblock_by_func(G_OBJECT(buffer),
                                          G_CALLBACK(text_inserted),
@@ -7282,7 +7663,6 @@ static void text_inserted(GtkTextBuffer *buffer, GtkTextIter *iter,
                compose->draft_timeout_tag = gtk_timeout_add
                        (500, (GtkFunction) compose_defer_auto_save_draft, compose);
 }
-
 static gint compose_defer_auto_save_draft(Compose *compose)
 {
        compose->draft_timeout_tag = -1;
@@ -7290,45 +7670,6 @@ static gint compose_defer_auto_save_draft(Compose *compose)
        return FALSE;
 }
 
-static gboolean compose_send_control_enter(Compose *compose)
-{
-       GdkEvent *ev;
-       GdkEventKey *kev;
-       GtkItemFactory *ifactory;
-       GtkAccelKey *accel;
-       GtkWidget *send_menu;
-       GSList *list;
-       GdkModifierType ignored_mods =
-               (GDK_LOCK_MASK | GDK_MOD2_MASK | GDK_MOD3_MASK |
-                GDK_MOD4_MASK | GDK_MOD5_MASK);
-
-       ev = gtk_get_current_event();
-       if (ev->type != GDK_KEY_PRESS) return FALSE;
-
-       kev = (GdkEventKey *)ev;
-       if (!(kev->keyval == GDK_Return && (kev->state & GDK_CONTROL_MASK)))
-               return FALSE;
-
-       if (compose->exteditor_tag != -1)
-               return FALSE;
-
-       ifactory = gtk_item_factory_from_widget(compose->menubar);
-       send_menu = gtk_item_factory_get_widget(ifactory, "/Message/Send");
-       list = gtk_accel_groups_from_object(G_OBJECT(send_menu));
-       if (!list)
-               return FALSE;
-
-       accel = (GtkAccelKey *)list->data;
-       if (accel && accel->accel_key == kev->keyval &&
-           (accel->accel_mods & ~ignored_mods) ==
-           (kev->state & ~ignored_mods)) {
-               compose_send_cb(compose, 0, NULL);
-               return TRUE;
-       }
-
-       return FALSE;
-}
-
 #if USE_ASPELL
 static void compose_check_all(Compose *compose)
 {
@@ -7412,7 +7753,7 @@ static void compose_close(Compose *compose)
        gtkut_widget_get_uposition(compose->window, &x, &y);
        prefs_common.compose_x = x;
        prefs_common.compose_y = y;
-       gtk_widget_destroy(compose->window);
+       compose_destroy(compose);
 }
 
 /**
@@ -7431,7 +7772,44 @@ static void compose_add_field_list( Compose *compose, GList *listAddress ) {
        }
 }
 
+void compose_reply_from_messageview(MessageView *msgview, GSList *msginfo_list, 
+                                   guint action)
+{
+       gchar *body;
+       GSList *new_msglist = NULL;
+       MsgInfo *tmp_msginfo = NULL;
+       
+       g_return_if_fail(msgview != NULL);
+
+       g_return_if_fail(msginfo_list != NULL);
+
+       if (g_slist_length(msginfo_list) == 1) {
+               MimeInfo *mimeinfo = messageview_get_selected_mime_part(msgview);
+               MsgInfo *orig_msginfo = (MsgInfo *)msginfo_list->data;
+               
+               if (mimeinfo != NULL && mimeinfo->type == MIMETYPE_MESSAGE && 
+                   !g_ascii_strcasecmp(mimeinfo->subtype, "rfc822")) {
+                       
+                       tmp_msginfo = procmsg_msginfo_new_from_mimeinfo(
+                                               orig_msginfo, mimeinfo);
+                       if (tmp_msginfo != NULL) {
+                               new_msglist = g_slist_append(NULL, tmp_msginfo);
+                       } 
+               }
+       }
+
+       body = messageview_get_selection(msgview);
+
+       if (new_msglist) {
+               compose_reply_mode((ComposeMode)action, new_msglist, body);
+               procmsg_msginfo_free(tmp_msginfo);
+               g_slist_free(new_msglist);
+       } else
+               compose_reply_mode((ComposeMode)action, msginfo_list, body);
+
+       g_free(body);
+}
+
 /*
  * End of Source.
  */
-