Improve smart wrapping - wrap lines without spaces.
[claws.git] / src / compose.c
index 0537ee27a549feb777b9357983e389ff01a8e1c2..fe12cde6d663b91160d38ca7e66381fa23636c07 100644 (file)
@@ -221,6 +221,9 @@ static gint calc_cursor_xpos        (GtkSText       *text,
                                 gint            extra,
                                 gint            char_width);
 
+static void compose_create_header_entry        (Compose *compose);
+static void compose_add_header_entry   (Compose *compose, gchar *header, gchar *text);
+
 /* callback functions */
 
 static gboolean compose_edit_size_alloc (GtkEditable   *widget,
@@ -396,6 +399,12 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                                  gboolean ignore_replyto,
                                  gboolean followup_and_reply_to);
 
+void compose_headerentry_changed_cb    (GtkWidget *entry,
+                                        compose_headerentry *headerentry);
+void compose_headerentry_key_press_event_cb    (GtkWidget *entry,
+                                                GdkEventKey *event,
+                                                compose_headerentry *headerentry);
+
 Compose * compose_generic_new (PrefsAccount    *account,
                               const gchar      *to,
                               FolderItem       *item);
@@ -439,6 +448,7 @@ static GtkItemFactoryEntry compose_entries[] =
                                        compose_send_later_cb,  0, NULL},
        {N_("/_Message/Save to _draft folder"),
                                        "<alt>D", compose_draft_cb, 0, NULL},
+#if 0 /* NEW COMPOSE GUI */
        {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/_To"),           NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
        {N_("/_Message/_Cc"),           NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
@@ -448,6 +458,7 @@ static GtkItemFactoryEntry compose_entries[] =
        {N_("/_Message/_Followup to"),  NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
        {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/_Attach"),       NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
+#endif
 #if USE_GPGME
        {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
        {N_("/_Message/Si_gn"),         NULL, compose_toggle_sign_cb   , 0, "<ToggleItem>"},
@@ -486,7 +497,21 @@ Compose * compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
 Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem *item)
 {
        Compose *compose;
-
+       GList *cur_ac;
+       GList *account_list;
+       PrefsAccount *ac_prefs;
+
+       if (item && item->prefs->enable_default_account) {
+               /* get a PrefsAccount *pointer on the wished account */
+               account_list=account_get_list();
+               for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
+                       ac_prefs = (PrefsAccount *)cur_ac->data;
+                       if (ac_prefs->account_id == item->prefs->default_account) {
+                               account = ac_prefs;
+                               break;
+                       }
+               }
+       }
        if (!account) account = cur_account;
        g_return_val_if_fail(account != NULL, NULL);
 
@@ -506,10 +531,10 @@ Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem
                        if(item && item->prefs->enable_default_to) {
                                compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
                        } else {
-                               gtk_widget_grab_focus(compose->to_entry);
+                               gtk_widget_grab_focus(compose->header_last->entry);
                        }
                }
-               if(item && item->prefs->request_return_receipt) {
+               if (item && item->ret_rcpt) {
                        GtkItemFactory *ifactory;
                
                        ifactory = gtk_item_factory_from_widget(compose->menubar);
@@ -520,7 +545,7 @@ Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem
                        compose_entry_append(compose, to, COMPOSE_NEWSGROUPS);
                        gtk_widget_grab_focus(compose->subject_entry);
                } else
-                       gtk_widget_grab_focus(compose->newsgroups_entry);
+                       gtk_widget_grab_focus(compose->header_last->entry);
        }
 
        if (prefs_common.auto_exteditor)
@@ -624,15 +649,15 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        compose = compose_create(account, COMPOSE_REPLY);
        compose->replyinfo = msginfo;
 
-
+#if 0 /* NEW COMPOSE GUI */
        if (followup_and_reply_to) {
                gtk_widget_show(compose->to_hbox);
                gtk_widget_show(compose->to_entry);
                gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
                compose->use_to = TRUE;
        }
-
-       if(msginfo->folder && msginfo->folder->prefs->request_return_receipt) {
+#endif
+       if (msginfo->folder && msginfo->folder->ret_rcpt) {
                GtkItemFactory *ifactory;
        
                ifactory = gtk_item_factory_from_widget(compose->menubar);
@@ -650,7 +675,7 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
                FILE *fp;
                gchar *quote_str;
 
-               if ((fp = procmime_get_text_part(msginfo)) == NULL)
+               if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
                        g_warning(_("Can't get text part\n"));
                else {
                        gchar * qmark;
@@ -683,6 +708,10 @@ static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
        gtk_editable_set_position(GTK_EDITABLE(text), 0);
        gtk_stext_set_point(text, 0);
 
+       if (quote && prefs_common.linewrap_quote) {
+               compose_wrap_line_all(compose);
+       }
+
        gtk_stext_thaw(text);
        gtk_widget_grab_focus(compose->text);
 
@@ -913,8 +942,8 @@ if (msginfo->var && *msginfo->var) { \
        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
 }
 
-Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
-                         gboolean as_attach)
+Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
+                        gboolean as_attach)
 {
        Compose *compose;
        /*      PrefsAccount *account; */
@@ -933,7 +962,7 @@ Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
                account = account_find_from_address(to);
        }
 
-        if(!account&& prefs_common.forward_account_autosel) {
+        if(!account && prefs_common.forward_account_autosel) {
                        gchar cc[BUFFSIZE];
                if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
                        extract_address(cc);
@@ -979,8 +1008,7 @@ Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
        } else {
                FILE *fp;
                gchar *quote_str;
-
-               if ((fp = procmime_get_text_part(msginfo)) == NULL)
+               if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
                        g_warning(_("Can't get text part\n"));
                else {
                        gchar * qmark;
@@ -1011,10 +1039,12 @@ Compose * compose_forward(PrefsAccount * account, MsgInfo *msginfo,
        gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
        gtk_stext_thaw(text);
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP)
                gtk_widget_grab_focus(compose->to_entry);
        else
                gtk_widget_grab_focus(compose->newsgroups_entry);
+#endif
 
        if (prefs_common.auto_exteditor)
                compose_exec_ext_editor(compose);
@@ -1069,10 +1099,12 @@ Compose * compose_forward_multiple(PrefsAccount * account,
        gtk_stext_set_point(GTK_STEXT(compose->text), 0);
 
        gtk_stext_thaw(text);
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP)
                gtk_widget_grab_focus(compose->to_entry);
        else
                gtk_widget_grab_focus(compose->newsgroups_entry);
+#endif
 
        return compose;
 }
@@ -1109,7 +1141,7 @@ void compose_reedit(MsgInfo *msginfo)
        text = GTK_STEXT(compose->text);
        gtk_stext_freeze(text);
 
-       if ((fp = procmime_get_text_part(msginfo)) == NULL)
+       if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
                g_warning(_("Can't get text part\n"));
        else {
                while (fgets(buf, sizeof(buf), fp) != NULL)
@@ -1135,9 +1167,11 @@ void compose_entry_append(Compose *compose, const gchar *address,
 {
        GtkEntry *entry;
        const gchar *text;
+       gchar *header;
 
        if (!address || *address == '\0') return;
 
+#if 0 /* NEW COMPOSE GUI */
        switch (type) {
        case COMPOSE_CC:
                entry = GTK_ENTRY(compose->cc_entry);
@@ -1158,26 +1192,56 @@ void compose_entry_append(Compose *compose, const gchar *address,
        if (*text != '\0')
                gtk_entry_append_text(entry, ", ");
        gtk_entry_append_text(entry, address);
+#endif
+
+       switch (type) {
+       case COMPOSE_CC:
+               header = N_("Cc:");
+               break;
+       case COMPOSE_BCC:
+               header = N_("Bcc:");
+               break;
+       case COMPOSE_REPLYTO:
+               header = N_("Reply-To:");
+               break;
+       case COMPOSE_NEWSGROUPS:
+               header = N_("Newsgroups:");
+               break;
+       case COMPOSE_FOLLOWUPTO:
+               header = N_( "Followup-To:");
+               break;
+       case COMPOSE_TO:
+       default:
+               header = N_("To:");
+               break;
+       }
+       header = prefs_common.trans_hdr ? gettext(header) : header;
+
+       compose_add_header_entry(compose, header, (gchar *)address);
 }
 
 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
 {
-       static HeaderEntry hentry[] = {{"Reply-To:",    NULL, TRUE},
-                                      {"Cc:",          NULL, FALSE},
-                                      {"References:",  NULL, FALSE},
-                                      {"Bcc:",         NULL, FALSE},
-                                      {"Newsgroups:",  NULL, FALSE},
-                                      {"Followup-To:", NULL, FALSE},
-                                      {NULL,           NULL, FALSE}};
+       static HeaderEntry hentry[] = {{"Reply-To:",       NULL, TRUE},
+                                      {"Cc:",             NULL, FALSE},
+                                      {"References:",     NULL, FALSE},
+                                      {"Bcc:",            NULL, FALSE},
+                                      {"Newsgroups:",     NULL, FALSE},
+                                      {"Followup-To:",    NULL, FALSE},
+                                      {"X-Mailing-List:", NULL, FALSE},
+                                      {"X-BeenThere:",    NULL, FALSE},
+                                      {NULL,              NULL, FALSE}};
 
        enum
        {
-               H_REPLY_TO      = 0,
-               H_CC            = 1,
-               H_REFERENCES    = 2,
-               H_BCC           = 3,
-               H_NEWSGROUPS    = 4,
-               H_FOLLOWUP_TO   = 5
+               H_REPLY_TO       = 0,
+               H_CC             = 1,
+               H_REFERENCES     = 2,
+               H_BCC            = 3,
+               H_NEWSGROUPS     = 4,
+               H_FOLLOWUP_TO    = 5,
+               H_X_MAILING_LIST = 6,
+               H_X_BEENTHERE    = 7
        };
 
        FILE *fp;
@@ -1198,6 +1262,26 @@ static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
                compose->cc = hentry[H_CC].body;
                hentry[H_CC].body = NULL;
        }
+       if (hentry[H_X_MAILING_LIST].body != NULL) {
+               /* this is good enough to parse debian-devel */
+               char * buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
+               g_return_val_if_fail(buf != NULL, -1 );
+               if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
+                       compose->mailinglist = g_strdup(buf);
+               g_free(buf);
+               g_free(hentry[H_X_MAILING_LIST].body);
+               hentry[H_X_MAILING_LIST].body = NULL ;
+       }
+       if (hentry[H_X_BEENTHERE].body != NULL) {
+               /* this is good enough to parse the sylpheed-claws lists */
+               char * buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
+               g_return_val_if_fail(buf != NULL, -1 );
+               if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
+                       compose->mailinglist = g_strdup(buf);
+               g_free(buf);
+               g_free(hentry[H_X_BEENTHERE].body);
+               hentry[H_X_BEENTHERE].body = NULL ;
+       }
        if (hentry[H_REFERENCES].body != NULL) {
                if (compose->mode == COMPOSE_REEDIT)
                        compose->references = hentry[H_REFERENCES].body;
@@ -1575,15 +1659,19 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
        g_return_if_fail(msginfo != NULL);
 
        if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
-               gtk_entry_set_text(GTK_ENTRY(compose->to_entry),
-                                  ( (compose->replyto && !ignore_replyto) 
+               compose_entry_append(compose,
+                                   ((compose->mailinglist && !ignore_replyto)
+                                    ? compose->mailinglist
+                                    : (compose->replyto && !ignore_replyto)
                                     ? compose->replyto
-                                    : msginfo->from ? msginfo->from : ""));
+                                    : msginfo->from ? msginfo->from : ""),
+                                    COMPOSE_TO);
        if (compose->account->protocol == A_NNTP)
-               gtk_entry_set_text(GTK_ENTRY(compose->newsgroups_entry),
-                                  compose->followup_to ? compose->followup_to
-                                  : compose->newsgroups ? compose->newsgroups
-                                  : "");
+               compose_entry_append(compose,
+                                    compose->followup_to ? compose->followup_to
+                                    : compose->newsgroups ? compose->newsgroups
+                                    : "",
+                                    COMPOSE_NEWSGROUPS);
 
        if (msginfo->subject && *msginfo->subject) {
                gchar *buf, *buf2, *p;
@@ -1646,16 +1734,23 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
                gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
 }
 
+#define SET_ADDRESS(type, str) \
+{ \
+       if (str && *str) \
+               compose_entry_append(compose, str, type); \
+}
+
 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
 {
        g_return_if_fail(msginfo != NULL);
 
-       SET_ENTRY(to_entry, msginfo->to);
        SET_ENTRY(subject_entry, msginfo->subject);
-       SET_ENTRY(cc_entry, compose->cc);
-       SET_ENTRY(bcc_entry, compose->bcc);
-       SET_ENTRY(reply_entry, compose->replyto);
+       SET_ADDRESS(COMPOSE_TO, msginfo->to);
+       SET_ADDRESS(COMPOSE_CC, compose->cc);
+       SET_ADDRESS(COMPOSE_BCC, compose->bcc);
+       SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
 
+#if 0 /* NEW COMPOSE GUI */
        if (compose->bcc) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1675,9 +1770,11 @@ static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
        }
+#endif
 }
 
 #undef SET_ENTRY
+#undef SET_ADDRESS
 
 static void compose_exec_sig(Compose *compose, gchar *sigfile)
 {
@@ -1817,7 +1914,7 @@ static void compose_attach_append_with_type(Compose *compose,
                alertpanel_notice(_("File %s is empty\n"), file);
                return;
        }
-
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_attach) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1828,7 +1925,7 @@ static void compose_attach_append_with_type(Compose *compose,
                gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                               TRUE);
        }
-
+#endif
        ainfo = g_new0(AttachInfo, 1);
        ainfo->file = g_strdup(file);
 
@@ -1867,7 +1964,7 @@ static void compose_attach_append(Compose *compose, const gchar *file,
                alertpanel_notice(_("File %s is empty\n"), file);
                return;
        }
-
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_attach) {
                GtkItemFactory *ifactory;
                GtkWidget *menuitem;
@@ -1878,7 +1975,7 @@ static void compose_attach_append(Compose *compose, const gchar *file,
                gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                               TRUE);
        }
-
+#endif
        ainfo = g_new0(AttachInfo, 1);
        ainfo->file = g_strdup(file);
 
@@ -1904,7 +2001,7 @@ static void compose_wrap_line(Compose *compose)
 {
        GtkSText *text = GTK_STEXT(compose->text);
        gint ch_len, last_ch_len;
-       gchar cbuf[MB_CUR_MAX], last_ch;
+       gchar cbuf[MB_LEN_MAX], last_ch;
        guint text_len;
        guint line_end;
        guint quoted;
@@ -2069,20 +2166,149 @@ compose_end:
 #undef GET_STEXT
 }
 
+/* return str length if text at start_pos matches str else return zero */
+static guint gtkstext_str_strcmp(GtkSText *text, guint start_pos,
+                                guint text_len, gchar *str) {
+       guint is_str, i, str_len;
+       gchar str_ch;
+
+       is_str = 0;
+       if (str) {
+               str_len = strlen(str);
+               is_str = 1;
+               for (i = 0; (i < str_len) && (start_pos + i < text_len); i++) {
+                       str_ch = GTK_STEXT_INDEX(text, start_pos + i);
+                       if (*(str + i) != str_ch) {
+                               break;
+                       }
+               }
+               if (i == 0 || i < str_len)
+                       is_str = 0;
+       }
+
+       return is_str ? str_len : 0;
+}
+
+/* return indent length */
+static guint get_indent_length(GtkSText *text, guint start_pos,
+                              guint text_len) {
+       gint indent_len = 0;
+       gint i, ch_len;
+       gchar cbuf[MB_CUR_MAX];
+
+       for (i = start_pos; i < text_len; i++) {
+               if (text->use_wchar)
+                       ch_len = wctomb
+                               (cbuf, (wchar_t)GTK_STEXT_INDEX(text, i));
+               else {
+                       cbuf[0] = GTK_STEXT_INDEX(text, i);
+                       ch_len = 1;
+               }
+               if (ch_len > 1)
+                       break;
+               /* allow space, tab, > or | */
+               if (cbuf[0] != ' ' && cbuf[0] != '\t' &&
+                   cbuf[0] != '>' && cbuf[0] != '|')
+                       break;
+               indent_len++;
+       }
+
+       return indent_len;
+}
+
+/* insert quotation string when line was wrapped, we know these
+   are single byte characters */
+static guint insert_quote(GtkSText *text, guint quote_len, guint indent_len,
+                         guint prev_line_pos, guint text_len,
+                         gchar *quote_fmt) {
+       guint i, ins_len;
+       gchar ch;
+
+       if (indent_len) {
+               for (i = 0; i < indent_len; i++) {
+                       ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
+                       gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
+               }
+               ins_len = indent_len;
+       }
+       else {
+               gtk_stext_insert(text, NULL, NULL, NULL, quote_fmt, quote_len);
+               ins_len = quote_len;
+       }
+
+       return ins_len;
+}
+
+/* compare gtkstext string at pos1 with string at pos2 for equality
+   (max. len chars) - we treat characters as single byte */
+static gint gtkstext_strncmp(GtkSText *text, guint pos1, guint pos2, guint len,
+                            guint tlen)
+{
+       guint i = 0;
+       gchar ch1, ch2;
+
+       for (; (i < len) && (pos1 + i < tlen) && (pos2 + i < tlen); i++) {
+               ch1 = GTK_STEXT_INDEX(text, pos1 + i);
+               ch2 = GTK_STEXT_INDEX(text, pos2 + i);
+               if (ch1 != ch2)
+                       break;
+       }
+
+       return i;
+}
+
+/* return true if text at pos is URL */
+static guint is_url_string(GtkSText *text, guint start_pos, guint text_len)
+{
+       guint len;
+
+       len = gtkstext_str_strcmp(text, start_pos, text_len, "ftp://");
+       if (len == 6)
+               return 1;
+       len = gtkstext_str_strcmp(text, start_pos, text_len, "http://");
+       if (len == 7)
+               return 1;
+       len = gtkstext_str_strcmp(text, start_pos, text_len, "https://");
+       if (len == 8)
+               return 1;
+
+       return 0;
+}
+
 static void compose_wrap_line_all(Compose *compose)
 {
        GtkSText *text = GTK_STEXT(compose->text);
        guint text_len;
-       guint line_pos = 0, cur_pos = 0;
+       guint line_pos = 0, cur_pos = 0, prev_line_pos = 0;
        gint line_len = 0, cur_len = 0;
        gint ch_len;
-       gchar cbuf[MB_CUR_MAX];
+       gint is_new_line = 1, do_delete = 0;
+       guint quote_len = 0, indent_len = 0;
+       guint linewrap_quote = prefs_common.linewrap_quote;
+       guint linewrap_len = prefs_common.linewrap_len;
+       gchar *quote_fmt = prefs_common.quotemark;
+       gchar cbuf[MB_LEN_MAX];
 
        gtk_stext_freeze(text);
 
+       /* make text buffer contiguous */
+       gtk_stext_compact_buffer(text);
+
        text_len = gtk_stext_get_length(text);
 
        for (; cur_pos < text_len; cur_pos++) {
+               if (linewrap_quote && is_new_line) {
+                       quote_len = gtkstext_str_strcmp(text, cur_pos,
+                                                       text_len, quote_fmt);
+                       is_new_line = 0;
+                       if (quote_len) {
+                               indent_len = get_indent_length(text, cur_pos,
+                                                              text_len);
+                       }
+                       else
+                               indent_len = 0;
+                       prev_line_pos = cur_pos;
+               }
                if (text->use_wchar)
                        ch_len = wctomb
                                (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
@@ -2091,9 +2317,103 @@ static void compose_wrap_line_all(Compose *compose)
                        ch_len = 1;
                }
 
+               /* fix line length for tabs */
+               if (ch_len == 1 && *cbuf == '\t') {
+                       guint tab_width = text->default_tab_width;
+                       guint tab_offset = line_len % tab_width;
+
+                       if (tab_offset) {
+                               line_len += tab_width - tab_offset - 1;
+                               cur_len = line_len;
+                       }
+               }
+
                if (ch_len == 1 && *cbuf == '\n') {
+                       gint clen;
+                       guint ilen;
+                       gchar cb[MB_CUR_MAX];
+
+                       /* if it's just quotation + newline skip it */
+                       if (indent_len && (cur_pos + 1 < text_len)) {
+                               ilen =  gtkstext_strncmp(text,
+                                                        cur_pos + 1,
+                                                        prev_line_pos,
+                                                        indent_len,
+                                                        text_len);
+                               if (cur_pos + ilen < text_len) {
+                                       if (text->use_wchar)
+                                               clen = wctomb
+                                                       (cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos + ilen + 1));
+                                       else {
+                                               cb[0] = GTK_STEXT_INDEX(text,
+                                                           cur_pos + ilen + 1);
+                                               clen = 1;
+                                       }
+                                       if ((clen == 1) && (cb[0] == '\n'))
+                                               do_delete = 0;
+                               }
+                       }
+
+                       /* should we delete to perform smart wrapping */
+                       if (quote_len && line_len < linewrap_len && do_delete) {
+                               /* get rid of newline */
+                               gtk_stext_set_point(text, cur_pos);
+                               gtk_stext_forward_delete(text, 1);
+
+                               /* if text starts with quote_fmt or with
+                                  indent string, delete them */
+                               if (indent_len) {
+                                       ilen =  gtkstext_strncmp(text, cur_pos,
+                                                                prev_line_pos,
+                                                                indent_len,
+                                                                text_len);
+                                       if (ilen) {
+                                               gtk_stext_forward_delete(text,
+                                                                        ilen);
+                                               text_len -= ilen;
+                                       }
+                               }
+                               else if (quote_len) {
+                                       if (gtkstext_str_strcmp(text, cur_pos,
+                                                               text_len,
+                                                               quote_fmt)) {
+                                               gtk_stext_forward_delete(text,
+                                                                quote_len);
+                                               text_len-=quote_len;
+                                       }
+                               }
+
+                               if (text->use_wchar)
+                                       clen = wctomb
+                                               (cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
+                               else {
+                                       cb[0] = GTK_STEXT_INDEX(text, cur_pos);
+                                       clen = 1;
+                               }
+                               /* insert space if it's alphanumeric */
+                               if ((cur_pos != line_pos) &&
+                                   ((clen > 1) || isalnum(cb[0]))) {
+                                       gtk_stext_insert(text, NULL, NULL,
+                                                        NULL, " ", 1);
+                                       gtk_stext_compact_buffer(text);
+                                       text_len++;
+                               }
+
+                               /* and start over with current line */
+                               cur_pos = prev_line_pos - 1;
+                               line_pos = cur_pos;
+                               line_len = cur_len = 0;
+                               quote_len = 0;
+                               do_delete = 0;
+                               is_new_line = 1;
+                               continue;
+                       }
+
                        line_pos = cur_pos + 1;
                        line_len = cur_len = 0;
+                       quote_len = 0;
+                       do_delete = 0;
+                       is_new_line = 1;
                        continue;
                }
 
@@ -2107,10 +2427,17 @@ static void compose_wrap_line_all(Compose *compose)
                        line_len = cur_len + ch_len;
                }
 
-               if (cur_len + ch_len > prefs_common.linewrap_len &&
-                   line_len > 0) {
+               if (cur_len + ch_len > linewrap_len) {
                        gint tlen;
 
+                       if (line_len == 0) {
+                               /* don't wrap URLs */
+                               if (is_url_string(text, line_pos, text_len))
+                                       continue;
+                               line_len = cur_pos - line_pos;
+                               line_pos = cur_pos;
+                       }
+
                        if (text->use_wchar)
                                tlen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
                        else {
@@ -2129,11 +2456,35 @@ static void compose_wrap_line_all(Compose *compose)
 
                        gtk_stext_set_point(text, line_pos);
                        gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
+                       gtk_stext_compact_buffer(text);
                        text_len++;
                        cur_pos++;
                        line_pos++;
                        cur_len = cur_len - line_len + ch_len;
                        line_len = 0;
+                       if (linewrap_quote && quote_len) {
+                               /* only if line is not already quoted */
+                               if (!gtkstext_str_strcmp(text, line_pos,
+                                                        text_len, quote_fmt)) {
+                                       guint i_len;
+
+                                       i_len = insert_quote(text, quote_len,
+                                                            indent_len,
+                                                            prev_line_pos,
+                                                            text_len,
+                                                            quote_fmt);
+
+                                       gtk_stext_compact_buffer(text);
+                                       text_len += i_len;
+                                       /* for loop above will increase it */
+                                       cur_pos = line_pos - 1;
+                                       cur_len = 0;
+                                       line_len = 0;
+                                       /* start over with current line */
+                                       is_new_line = 1;
+                                       do_delete = 1;
+                               }
+                       }
                        continue;
                }
 
@@ -2189,10 +2540,31 @@ compose_current_mail_account(void)
        return ac;
 }
 
+gboolean compose_check_for_valid_recipient(Compose *compose) {
+       gchar *recipient_headers[] = {"To:", "Newsgroups:", "Cc:", "Bcc:", NULL};
+       gboolean recipient_found = FALSE;
+       GSList *list;
+       gchar **strptr;
+
+       for(list = compose->header_list; list; list = list->next) {
+               gchar *header;
+               gchar *entry;
+               header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((compose_headerentry *)list->data)->combo)->entry));
+               entry = gtk_entry_get_text(GTK_ENTRY(((compose_headerentry *)list->data)->entry));
+               if(strlen(entry)) {
+                       for(strptr = recipient_headers; *strptr != NULL; strptr++) {
+                               if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
+                                       recipient_found = TRUE;
+                               }
+                       }
+               }
+       }
+       return recipient_found;
+}
+
 gint compose_send(Compose *compose)
 {
        gchar tmp[MAXPATHLEN + 1];
-       gchar *to, *newsgroups;
        gint ok = 0;
        static gboolean lock = FALSE;
 
@@ -2203,9 +2575,7 @@ gint compose_send(Compose *compose)
 
        lock = TRUE;
 
-       to = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       newsgroups = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*to == '\0' && *newsgroups == '\0') {
+       if(!compose_check_for_valid_recipient(compose)) {
                alertpanel_error(_("Recipient is not specified."));
                lock = FALSE;
                return 1;
@@ -2233,7 +2603,7 @@ gint compose_send(Compose *compose)
        if (compose->to_list) {
                PrefsAccount *ac;
 
-               /*
+#if 0 /* NEW COMPOSE GUI */
                if (compose->account->protocol != A_NNTP)
                        ac = compose->account;
                else if (compose->orig_account->protocol != A_NNTP)
@@ -2248,7 +2618,7 @@ gint compose_send(Compose *compose)
                                return -1;
                        }
                }
-               */
+#endif
                ac = compose->account;
 
                ok = send_message(tmp, ac, compose->to_list);
@@ -2311,6 +2681,10 @@ gint compose_send(Compose *compose)
        return ok;
 }
 
+static gboolean compose_use_attach(Compose *compose) {
+    return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
+}
+
 static gint compose_write_to_file(Compose *compose, const gchar *file,
                                  gboolean is_draft)
 {
@@ -2337,19 +2711,25 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
        len = strlen(chars);
        if (is_ascii_str(chars)) {
                buf = g_strdup(chars);
-               out_codeset = "US-ASCII";
+               out_codeset = CS_US_ASCII;
                encoding = ENC_7BIT;
        } else {
                const gchar *src_codeset;
 
                out_codeset = conv_get_outgoing_charset_str();
-               if (!strcasecmp(out_codeset, "US-ASCII"))
-                       out_codeset = "ISO-8859-1";
+               if (!strcasecmp(out_codeset, CS_US_ASCII))
+                       out_codeset = CS_ISO_8859_1;
                encoding = procmime_get_encoding_for_charset(out_codeset);
-               debug_print("charset = %s, encoding = %s\n",
-                           out_codeset, procmime_get_encoding_str(encoding));
 
                src_codeset = conv_get_current_charset_str();
+               /* if current encoding is US-ASCII, set it the same as
+                  outgoing one to prevent code conversion failure */
+               if (!strcasecmp(src_codeset, CS_US_ASCII))
+                       src_codeset = out_codeset;
+
+               debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
+                           src_codeset, out_codeset, procmime_get_encoding_str(encoding));
+
                buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
                if (!buf) {
                        g_free(chars);
@@ -2371,7 +2751,7 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
                return -1;
        }
 
-       if (compose->use_attach) {
+       if (compose_use_attach(compose)) {
 #if USE_GPGME
             /* This prolog message is ignored by mime software and
              * because it would make our signing/encryption task
@@ -2409,7 +2789,7 @@ static gint compose_write_to_file(Compose *compose, const gchar *file,
        }
        g_free(buf);
 
-       if (compose->use_attach)
+       if (compose_use_attach(compose))
                compose_write_attach(compose, fp);
 
        if (fclose(fp) == EOF) {
@@ -2733,6 +3113,57 @@ static void compose_write_attach(Compose *compose, FILE *fp)
        (compose->account->add_customhdr && \
         custom_header_find(compose->account->customhdr_list, header) != NULL)
 
+static gint compose_write_headers_from_headerlist(Compose *compose, 
+                                                 FILE *fp, 
+                                                 gchar *header,
+                                                 GSList *(*list_append_func) (GSList *list, const gchar *str),
+                                                 GSList **dest_list)
+{
+       gchar buf[BUFFSIZE];
+       gchar *str, *header_w_colon, *trans_hdr;
+       gboolean first_address;
+       GSList *list;
+       compose_headerentry *headerentry;
+
+       if (IS_IN_CUSTOM_HEADER(header)) {
+               return 0;
+       }
+
+       debug_print(_("Writing %s-header\n"), header);
+
+       header_w_colon = g_strconcat(header, ":", NULL);
+       trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
+
+       first_address = TRUE;
+       for(list = compose->header_list; list; list = list->next) {
+               headerentry = ((compose_headerentry *)list->data);
+               if(!strcmp(trans_hdr, gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)))) {
+                       str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
+                       Xstrdup_a(str, str, return -1);
+                       g_strstrip(str);
+                       if(list_append_func)
+                               *dest_list = list_append_func(*dest_list, str);
+                       compose_convert_header
+                               (buf, sizeof(buf), str,
+                               strlen(header) + 2);
+                       if(first_address) {
+                               fprintf(fp, "%s: ", header);
+                               first_address = FALSE;
+                       } else {
+                               fprintf(fp, ", ");
+                       }
+                       fprintf(fp, "%s", buf);
+               }
+       }
+       if(!first_address) {
+               fprintf(fp, "\n");
+       }
+
+       g_free(header_w_colon);
+
+       return(0);
+}
+
 static gint compose_write_headers(Compose *compose, FILE *fp,
                                  const gchar *charset, EncodingType encoding,
                                  gboolean is_draft)
@@ -2769,6 +3200,8 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
        compose->to_list = NULL;
 
        /* To */
+       compose_write_headers_from_headerlist(compose, fp, "To", address_list_append, &compose->to_list);
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_to) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
                if (*str != '\0') {
@@ -2786,12 +3219,14 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        slist_free_strings(compose->newsgroup_list);
        g_slist_free(compose->newsgroup_list);
        compose->newsgroup_list = NULL;
 
        /* Newsgroups */
+       compose_write_headers_from_headerlist(compose, fp, "Newsgroups", newsgroup_list_append, &compose->newsgroup_list);
+#if 0 /* NEW COMPOSE GUI */
        str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
        if (*str != '\0') {
                Xstrdup_a(str, str, return -1);
@@ -2808,11 +3243,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
-       if (!is_draft && !compose->to_list && !compose->newsgroup_list)
-               return -1;
-
+#endif
        /* Cc */
+       compose_write_headers_from_headerlist(compose, fp, "Cc", address_list_append, &compose->to_list);
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_cc) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
                if (*str != '\0') {
@@ -2830,8 +3264,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        /* Bcc */
+       compose_write_headers_from_headerlist(compose, fp, "Bcc", address_list_append, &compose->to_list);
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_bcc) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
                if (*str != '\0') {
@@ -2846,6 +3282,9 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
+#endif
+       if (!is_draft && !compose->to_list && !compose->newsgroup_list)
+               return -1;
 
        /* Subject */
        str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
@@ -2875,6 +3314,8 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                fprintf(fp, "References: %s\n", compose->references);
 
        /* Followup-To */
+       compose_write_headers_from_headerlist(compose, fp, "Followup-To", NULL, NULL);
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
                if (*str != '\0') {
@@ -2888,8 +3329,10 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        /* Reply-To */
+       compose_write_headers_from_headerlist(compose, fp, "Reply-To", NULL, NULL);
+#if 0 /* NEW COMPOSE GUI */
        if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
                if (*str != '\0') {
@@ -2902,7 +3345,7 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                        }
                }
        }
-
+#endif
        /* Organization */
        if (compose->account->organization &&
            !IS_IN_CUSTOM_HEADER("Organization")) {
@@ -2914,16 +3357,14 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
 
        /* Program version and system info */
        /* uname(&utsbuf); */
-       str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       if (*str != '\0' && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
+       if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
                fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
                        HOST_ALIAS);
                        /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
        }
-       str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*str != '\0' && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
+       if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
                fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
                        prog_version,
                        gtk_major_version, gtk_minor_version, gtk_micro_version,
@@ -2939,28 +3380,27 @@ static gint compose_write_headers(Compose *compose, FILE *fp,
                     cur = cur->next) {
                        CustomHeader *chdr = (CustomHeader *)cur->data;
 
-                       if (strcasecmp(chdr->name, "Date")         != 0 &&
-                           strcasecmp(chdr->name, "From")         != 0 &&
-                           strcasecmp(chdr->name, "To")           != 0 &&
-                           strcasecmp(chdr->name, "Sender")       != 0 &&
-                           strcasecmp(chdr->name, "Message-Id")   != 0 &&
-                           strcasecmp(chdr->name, "In-Reply-To")  != 0 &&
-                           strcasecmp(chdr->name, "References")   != 0 &&
-                           strcasecmp(chdr->name, "Mime-Version") != 0 &&
-                           strcasecmp(chdr->name, "Content-Type") != 0 &&
-                           strcasecmp(chdr->name, "Content-Transfer-Encoding")
-                           != 0)
+                       if (strcasecmp(chdr->name, "Date")                      != 0 &&
+                           strcasecmp(chdr->name, "From")                      != 0 &&
+                           strcasecmp(chdr->name, "To")                        != 0 &&
+                           strcasecmp(chdr->name, "Sender")                    != 0 &&
+                           strcasecmp(chdr->name, "Message-Id")                != 0 &&
+                           strcasecmp(chdr->name, "In-Reply-To")               != 0 &&
+                           strcasecmp(chdr->name, "References")                != 0 &&
+                           strcasecmp(chdr->name, "Mime-Version")              != 0 &&
+                           strcasecmp(chdr->name, "Content-Type")              != 0 &&
+                           strcasecmp(chdr->name, "Content-Transfer-Encoding") != 0)
                                compose_convert_header
                                        (buf, sizeof(buf),
                                         chdr->value ? chdr->value : "",
                                         strlen(chdr->name) + 2);
-                               fprintf(fp, "%s: %s\n", chdr->name, buf);
+                       fprintf(fp, "%s: %s\n", chdr->name, buf);
                }
        }
 
        /* MIME */
        fprintf(fp, "Mime-Version: 1.0\n");
-       if (compose->use_attach) {
+       if (compose_use_attach(compose)) {
                get_rfc822_date(buf, sizeof(buf));
                subst_char(buf, ' ', '_');
                subst_char(buf, ',', '_');
@@ -3044,6 +3484,7 @@ static void compose_generate_msgid(Compose *compose, gchar *buf, gint len)
        g_free(addr);
 }
 
+
 static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
                                    GtkWidget **entry, gint *count,
                                    const gchar *label_str,
@@ -3061,10 +3502,12 @@ static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
        gtk_table_attach(GTK_TABLE(table), *hbox, 0, 1, *count, (*count) + 1,
                         GTK_FILL, 0, 2, 0);
        *entry = gtk_entry_new();
-       gtk_table_attach_defaults
-               (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1);
+       gtk_table_attach
+               (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1, GTK_FILL | GTK_EXPAND, GTK_SHRINK, 0, 0);
+#if 0 /* NEW COMPOSE GUI */
        if (GTK_TABLE(table)->nrows > (*count) + 1)
                gtk_table_set_row_spacing(GTK_TABLE(table), *count, 4);
+#endif
 
        if (is_addr_entry)
                address_completion_register_entry(GTK_ENTRY(*entry));
@@ -3072,6 +3515,69 @@ static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
        (*count)++;
 }
 
+static void compose_create_header_entry(Compose *compose) {
+       gchar *headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
+
+       GtkWidget *combo;
+       GtkWidget *entry;
+       GList *combo_list = NULL;
+       gchar **string, *header;
+       compose_headerentry *headerentry = g_new0(compose_headerentry, 1);
+
+       /* Combo box */
+       combo = gtk_combo_new();
+       string = headers; 
+       while(*string != NULL) {
+           combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
+           string++;
+       }
+       gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
+       g_list_free(combo_list);
+       gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), FALSE);
+       gtk_widget_show(combo);
+       gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
+       if(compose->header_last) {      
+               header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
+       } else {
+               switch(compose->account->protocol) {
+                       case A_NNTP:
+                               header = _("Newsgroups:");
+                               break;
+                       default:
+                               header = _("To:");
+                               break;
+               }                                                                   
+       }
+       gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
+
+       /* Entry field */
+       entry = gtk_entry_new(); 
+       gtk_widget_show(entry);
+       gtk_table_attach(GTK_TABLE(compose->header_table), entry, 1, 2, compose->header_nextrow, compose->header_nextrow+1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
+
+        gtk_signal_connect(GTK_OBJECT(entry), "key-press-event", GTK_SIGNAL_FUNC(compose_headerentry_key_press_event_cb), headerentry);
+       gtk_signal_connect(GTK_OBJECT(entry), "changed", GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
+
+       address_completion_register_entry(GTK_ENTRY(entry));
+
+        headerentry->compose = compose;
+        headerentry->combo = combo;
+        headerentry->entry = entry;
+        headerentry->headernum = compose->header_nextrow;
+
+        compose->header_nextrow++;
+       compose->header_last = headerentry;
+}
+
+static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) {
+       compose_headerentry *last_header;
+       
+       last_header = compose->header_last;
+       
+       gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
+       gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
+}
+
 static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 {
        Compose   *compose;
@@ -3080,16 +3586,23 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        GtkWidget *menubar;
        GtkWidget *handlebox;
 
+       GtkWidget *notebook;
+
        GtkWidget *vbox2;
 
        GtkWidget *table_vbox;
        GtkWidget *label;
        GtkWidget *from_optmenu_hbox;
+#if 0 /* NEW COMPOSE GUI */
        GtkWidget *to_entry;
        GtkWidget *to_hbox;
        GtkWidget *newsgroups_entry;
        GtkWidget *newsgroups_hbox;
+#endif
+       GtkWidget *header_scrolledwin;
+       GtkWidget *header_table;
        GtkWidget *subject_entry;
+#if 0 /* NEW COMPOSE GUI */
        GtkWidget *cc_entry;
        GtkWidget *cc_hbox;
        GtkWidget *bcc_entry;
@@ -3098,7 +3611,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        GtkWidget *reply_hbox;
        GtkWidget *followup_entry;
        GtkWidget *followup_hbox;
-
+#endif
        GtkWidget *paned;
 
        GtkWidget *attach_scrwin;
@@ -3128,6 +3641,10 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        gint count = 0;
        gint i;
 
+#if USE_PSPELL
+        GtkPspell * gtkpspell = NULL;
+#endif
+
        g_return_val_if_fail(account != NULL, NULL);
 
        debug_print(_("Creating compose window...\n"));
@@ -3173,31 +3690,57 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        gtk_container_set_border_width(GTK_CONTAINER(table_vbox),
                                       BORDER_WIDTH * 2);
 
-       table = gtk_table_new(8, 2, FALSE);
-       gtk_box_pack_start(GTK_BOX(table_vbox), table, FALSE, TRUE, 0);
+       /* Notebook */
+       notebook = gtk_notebook_new();
+       gtk_widget_set_usize(notebook, -1, 180);
+       gtk_widget_show(notebook);
+
+       /* header labels and entries */
+       header_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
+       gtk_widget_show(header_scrolledwin);
+       gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(header_scrolledwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), header_scrolledwin, gtk_label_new(_("Header")));
+
+       header_table = gtk_table_new(2, 2, FALSE);
+       gtk_widget_show(header_table);
+       gtk_container_set_border_width(GTK_CONTAINER(header_table), 2);
+       gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table);
+       count = 0;
 
        /* option menu for selecting accounts */
        hbox = gtk_hbox_new(FALSE, 0);
        label = gtk_label_new(prefs_common.trans_hdr ? _("From:") : "From:");
        gtk_box_pack_end(GTK_BOX(hbox), label, FALSE, FALSE, 0);
-       gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, count, count + 1,
+       gtk_table_attach(GTK_TABLE(header_table), hbox, 0, 1, count, count + 1,
                         GTK_FILL, 0, 2, 0);
        from_optmenu_hbox = compose_account_option_menu_create(compose);
-       gtk_table_attach_defaults(GTK_TABLE(table), from_optmenu_hbox,
-                                 1, 2, count, count + 1);
+       gtk_table_attach(GTK_TABLE(header_table), from_optmenu_hbox,
+                                 1, 2, count, count + 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
+#if 0 /* NEW COMPOSE GUI */
        gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
+#endif
        count++;
 
-       /* header labels and entries */
+       /* Subject */
+       compose_add_entry_field(header_table, &hbox, &subject_entry, &count,
+                               "Subject:", FALSE);
+
+       compose->header_table = header_table;
+       compose->header_list = NULL;
+       compose->header_nextrow = count;
+
+       compose_create_header_entry(compose);
+
+#if 0 /* NEW COMPOSE GUI */
        compose_add_entry_field(table, &to_hbox, &to_entry, &count,
                                "To:", TRUE); 
        gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
        compose_add_entry_field(table, &newsgroups_hbox, &newsgroups_entry,
                                &count, "Newsgroups:", FALSE);
        gtk_table_set_row_spacing(GTK_TABLE(table), 1, 4);
-       compose_add_entry_field(table, &hbox, &subject_entry, &count,
-                               "Subject:", FALSE);
+
        gtk_table_set_row_spacing(GTK_TABLE(table), 2, 4);
+
        compose_add_entry_field(table, &cc_hbox, &cc_entry, &count,
                                "Cc:", TRUE);
        gtk_table_set_row_spacing(GTK_TABLE(table), 3, 4);
@@ -3242,9 +3785,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
        gtk_signal_connect(GTK_OBJECT(followup_entry), "grab_focus",
                           GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
+#endif
 
        /* attachment list */
        attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
+       gtk_notebook_append_page(GTK_NOTEBOOK(notebook), attach_scrwin, gtk_label_new(_("Attachments")));
        gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(attach_scrwin),
                                       GTK_POLICY_AUTOMATIC,
                                       GTK_POLICY_ALWAYS);
@@ -3278,14 +3823,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                           GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
                           compose);
 
-       /* pane between attach clist and text */
-       paned = gtk_vpaned_new();
-       gtk_paned_add1(GTK_PANED(paned), attach_scrwin);
-       gtk_widget_ref(paned);
-       gtk_widget_show_all(paned);
 
        edit_vbox = gtk_vbox_new(FALSE, 0);
+#if 0 /* NEW COMPOSE GUI */
        gtk_box_pack_start(GTK_BOX(vbox2), edit_vbox, TRUE, TRUE, 0);
+#endif
 
        /* ruler */
        ruler_hbox = gtk_hbox_new(FALSE, 0);
@@ -3310,6 +3852,11 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                            (GTK_SCROLLED_WINDOW(scrolledwin)));
        GTK_STEXT(text)->default_tab_width = 8;
        gtk_stext_set_editable(GTK_STEXT(text), TRUE);
+
+       if (prefs_common.block_cursor) {
+               GTK_STEXT(text)->cursor_type = STEXT_CURSOR_BLOCK;
+       }
+       
        if (prefs_common.smart_wrapping) {      
                gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
                gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
@@ -3339,9 +3886,28 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        gtk_signal_connect(GTK_OBJECT(text), "drag_data_received",
                           GTK_SIGNAL_FUNC(compose_insert_drag_received_cb),
                           compose);
-
+#if USE_PSPELL
+        if (prefs_common.enable_pspell) {
+               gtkpspell = gtkpspell_new_with_config(gtkpspellconfig,
+                                                     prefs_common.pspell_path,
+                                                     prefs_common.dictionary,
+                                                     PSPELL_FASTMODE,
+                                                     conv_get_current_charset_str());
+               if (gtkpspell == NULL)
+                       prefs_common.enable_pspell = FALSE;
+               else
+                       gtkpspell_attach(gtkpspell, GTK_STEXT(text));
+        }
+#endif
        gtk_widget_show_all(vbox);
 
+       /* pane between attach clist and text */
+       paned = gtk_vpaned_new();
+       gtk_container_add(GTK_CONTAINER(vbox2), paned);
+       gtk_paned_add1(GTK_PANED(paned), notebook);
+       gtk_paned_add2(GTK_PANED(paned), edit_vbox);
+       gtk_widget_show_all(paned);
+
        style = gtk_widget_get_style(text);
 
        /* workaround for the slow down of GtkText when using Pixmap theme */
@@ -3395,7 +3961,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
        menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
 
-       /*
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol == A_NNTP) {
                gtk_widget_hide(to_hbox);
                gtk_widget_hide(to_entry);
@@ -3410,7 +3976,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
                menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
        }
-       */
+#endif
 
        switch (prefs_common.toolbar_style) {
        case TOOLBAR_NONE:
@@ -3443,11 +4009,14 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        compose->table_vbox       = table_vbox;
        compose->table            = table;
+#if 0 /* NEW COMPOSE GUI */
        compose->to_hbox          = to_hbox;
        compose->to_entry         = to_entry;
        compose->newsgroups_hbox  = newsgroups_hbox;
        compose->newsgroups_entry = newsgroups_entry;
+#endif
        compose->subject_entry    = subject_entry;
+#if 0 /* NEW COMPOSE GUI */
        compose->cc_hbox          = cc_hbox;
        compose->cc_entry         = cc_entry;
        compose->bcc_hbox         = bcc_hbox;
@@ -3456,7 +4025,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        compose->reply_entry      = reply_entry;
        compose->followup_hbox    = followup_hbox;
        compose->followup_entry   = followup_entry;
-
+#endif
        compose->paned = paned;
 
        compose->attach_scrwin = attach_scrwin;
@@ -3476,6 +4045,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
        compose->mode = mode;
 
        compose->replyto     = NULL;
+       compose->mailinglist = NULL;
        compose->cc          = NULL;
        compose->bcc         = NULL;
        compose->followup_to = NULL;
@@ -3503,11 +4073,17 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        compose_set_title(compose);
 
+#if 0 /* NEW COMPOSE GUI */
        compose->use_bcc        = FALSE;
        compose->use_replyto    = FALSE;
        compose->use_followupto = FALSE;
+#endif
+
+#if USE_PSPELL
+        compose->gtkpspell      = gtkpspell;
+#endif
 
-       /*
+#if 0 /* NEW COMPOSE GUI */
        if (account->protocol != A_NNTP) {
                menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
                gtk_check_menu_item_set_active
@@ -3518,16 +4094,20 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
                gtk_widget_set_sensitive(menuitem, FALSE);
        }
-       */
+#endif
        if (account->set_autocc && account->auto_cc && mode != COMPOSE_REEDIT) {
+               compose_entry_append(compose, account->auto_cc, COMPOSE_CC);
+#if 0 /* NEW COMPOSE GUI */
                compose->use_cc = TRUE;
                gtk_entry_set_text(GTK_ENTRY(cc_entry), account->auto_cc);
                menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
+#endif
        }
-
        if (account->set_autobcc) {
+               compose_entry_append(compose, account->auto_bcc, COMPOSE_BCC);
+#if 0 /* NEW COMPOSE GUI */
                compose->use_bcc = TRUE;
                menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
                gtk_check_menu_item_set_active
@@ -3535,18 +4115,20 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                if (account->auto_bcc && mode != COMPOSE_REEDIT)
                        gtk_entry_set_text(GTK_ENTRY(bcc_entry),
                                           account->auto_bcc);
+#endif
        }
-       if (account->set_autoreplyto) {
+       if (account->set_autoreplyto && account->auto_replyto && mode != COMPOSE_REEDIT) {
+               compose_entry_append(compose, account->auto_replyto, COMPOSE_REPLYTO);
+#if 0 /* NEW COMPOSE GUI */
                compose->use_replyto = TRUE;
                menuitem = gtk_item_factory_get_item(ifactory,
                                                     "/Message/Reply to");
                gtk_check_menu_item_set_active
                        (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
-               if (account->auto_replyto && mode != COMPOSE_REEDIT)
-                       gtk_entry_set_text(GTK_ENTRY(reply_entry),
-                                          account->auto_replyto);
+               gtk_entry_set_text(GTK_ENTRY(reply_entry),
+                                  account->auto_replyto);
+#endif
        }
-
        menuitem = gtk_item_factory_get_item(ifactory, "/Tool/Show ruler");
        gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
                                       prefs_common.show_ruler);
@@ -3564,12 +4146,13 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
 
        compose_list = g_list_append(compose_list, compose);
 
-       /*
+#if 0 /* NEW COMPOSE GUI */
        compose->use_to         = FALSE;
        compose->use_cc         = FALSE;
-       */
-       compose->use_attach     = FALSE;
+       compose->use_attach     = TRUE;
+#endif
 
+#if 0 /* NEW COMPOSE GUI */
        if (!compose->use_bcc) {
                gtk_widget_hide(bcc_hbox);
                gtk_widget_hide(bcc_entry);
@@ -3585,7 +4168,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
                gtk_widget_hide(followup_entry);
                gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
        }
-
+#endif
        if (!prefs_common.show_ruler)
                gtk_widget_hide(ruler_hbox);
 
@@ -3784,6 +4367,8 @@ static void compose_destroy(Compose *compose)
        g_slist_free(compose->to_list);
        slist_free_strings(compose->newsgroup_list);
        g_slist_free(compose->newsgroup_list);
+       slist_free_strings(compose->header_list);
+       g_slist_free(compose->header_list);
 
        procmsg_msginfo_free(compose->targetinfo);
 
@@ -4341,7 +4926,8 @@ static void compose_set_ext_editor_sensitive(Compose *compose,
                           sensitive);
        menu_set_sensitive(ifactory, "/File/Insert file", sensitive);
        menu_set_sensitive(ifactory, "/File/Insert signature", sensitive);
-       menu_set_sensitive(ifactory, "/Edit/Wrap long lines", sensitive);
+       menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", sensitive);
+       menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", sensitive);
        menu_set_sensitive(ifactory, "/Edit/Edit with external editor",
                           sensitive);
 
@@ -4449,9 +5035,10 @@ static void toolbar_address_cb(GtkWidget *widget, gpointer data)
 
 static void select_account(Compose * compose, PrefsAccount * ac)
 {
-               compose->account = ac;
-               compose_set_title(compose);
+       compose->account = ac;
+       compose_set_title(compose);
 
+#if 0 /* NEW COMPOSE GUI */
                if (ac->protocol == A_NNTP) {
                        GtkItemFactory *ifactory;
                        GtkWidget *menuitem;
@@ -4459,7 +5046,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        ifactory = gtk_item_factory_from_widget(compose->menubar);
                        menu_set_sensitive(ifactory,
                                           "/Message/Followup to", TRUE);
-
                        gtk_widget_show(compose->newsgroups_hbox);
                        gtk_widget_show(compose->newsgroups_entry);
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
@@ -4471,6 +5057,7 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
                        gtk_check_menu_item_set_active
                                (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
+
                        menu_set_sensitive(ifactory,
                                           "/Message/To", TRUE);
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
@@ -4481,7 +5068,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        gtk_widget_hide(compose->to_entry);
                        gtk_widget_hide(compose->cc_hbox);
                        gtk_widget_hide(compose->cc_entry);
-
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
                                                  0, 0);
                        gtk_table_set_row_spacing(GTK_TABLE(compose->table),
@@ -4494,7 +5080,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        ifactory = gtk_item_factory_from_widget(compose->menubar);
                        menu_set_sensitive(ifactory,
                                           "/Message/Followup to", FALSE);
-
                        gtk_entry_set_text(GTK_ENTRY(compose->newsgroups_entry), "");
                        gtk_widget_hide(compose->newsgroups_hbox);
                        gtk_widget_hide(compose->newsgroups_entry);
@@ -4512,7 +5097,6 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                        menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
                        gtk_check_menu_item_set_active
                                (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
-
                        gtk_widget_show(compose->to_hbox);
                        gtk_widget_show(compose->to_entry);
                        gtk_widget_show(compose->cc_hbox);
@@ -4524,6 +5108,7 @@ static void select_account(Compose * compose, PrefsAccount * ac)
                                                  3, 4);
                }
                gtk_widget_queue_resize(compose->table_vbox);
+#endif
 }
 
 static void account_activated(GtkMenuItem *menuitem, gpointer data)
@@ -4602,11 +5187,10 @@ static void compose_send_later_cb(gpointer data, guint action,
 {
        Compose *compose = (Compose *)data;
        gchar tmp[22];
-       gchar *to, *newsgroups;
+       gboolean recipient_found;
+       GSList *list;
 
-       to = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
-       newsgroups = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
-       if (*to == '\0' && *newsgroups == '\0') {
+       if(!compose_check_for_valid_recipient(compose)) {
                alertpanel_error(_("Recipient is not specified."));
                return;
        }
@@ -4744,7 +5328,12 @@ static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
                        return;
                }
        }
-
+#if USE_PSPELL
+        if (compose->gtkpspell) {
+               gtkpspell_detach(compose->gtkpspell);
+               compose->gtkpspell = gtkpspell_delete(compose->gtkpspell);
+        }
+#endif
        gtk_widget_destroy(compose->window);
 }
 
@@ -4830,6 +5419,7 @@ static void compose_key_press_cb(GtkWidget *widget, GdkEventKey *event,
 }
 #endif
 
+#if 0 /* NEW COMPOSE GUI */
 static void compose_toggle_to_cb(gpointer data, guint action,
                                 GtkWidget *widget)
 {
@@ -4969,6 +5559,7 @@ static void compose_toggle_attach_cb(gpointer data, guint action,
                compose->use_attach = FALSE;
        }
 }
+#endif
 
 #if USE_GPGME
 static void compose_toggle_sign_cb(gpointer data, guint action,
@@ -5048,6 +5639,7 @@ static void compose_insert_drag_received_cb (GtkWidget            *widget,
        g_list_free(list);
 }
 
+#if 0 /* NEW COMPOSE GUI */
 static void to_activated(GtkWidget *widget, Compose *compose)
 {
        if (GTK_WIDGET_VISIBLE(compose->newsgroups_entry))
@@ -5109,6 +5701,7 @@ static void followupto_activated(GtkWidget *widget, Compose *compose)
 {
        gtk_widget_grab_focus(compose->text);
 }
+#endif
 
 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
                                             GtkWidget *widget)
@@ -5215,3 +5808,24 @@ static void template_select_cb(gpointer data, guint action,
 {
        template_select(&template_apply_cb, data);
 }
+
+void compose_headerentry_key_press_event_cb(GtkWidget *entry, GdkEventKey *event, compose_headerentry *headerentry) {
+       if((g_slist_length(headerentry->compose->header_list) > 0) &&
+           ((headerentry->headernum + 1) != headerentry->compose->header_nextrow) &&
+           !(event->state & GDK_MODIFIER_MASK) &&
+           (event->keyval == GDK_BackSpace) &&
+           (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)) {
+               gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->combo);
+               gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->entry);
+               headerentry->compose->header_list = g_slist_remove(headerentry->compose->header_list, headerentry);
+               g_free(headerentry);
+       }
+}
+
+void compose_headerentry_changed_cb(GtkWidget *entry, compose_headerentry *headerentry) {
+       if(strlen(gtk_entry_get_text(GTK_ENTRY(entry))) != 0) {
+               headerentry->compose->header_list = g_slist_append(headerentry->compose->header_list, headerentry);
+               compose_create_header_entry(headerentry->compose);
+               gtk_signal_disconnect_by_func(GTK_OBJECT(entry), GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
+       }
+}