40cf24d622a150b8bcadcb64876c0060158286ba
[claws.git] / src / compose.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <gdk/gdkkeysyms.h>
28 #include <gtk/gtkmain.h>
29 #include <gtk/gtkmenu.h>
30 #include <gtk/gtkmenuitem.h>
31 #include <gtk/gtkitemfactory.h>
32 #include <gtk/gtkcheckmenuitem.h>
33 #include <gtk/gtkoptionmenu.h>
34 #include <gtk/gtkwidget.h>
35 #include <gtk/gtkclist.h>
36 #include <gtk/gtkctree.h>
37 #include <gtk/gtkvpaned.h>
38 #include <gtk/gtkentry.h>
39 #include <gtk/gtkeditable.h>
40 #include <gtk/gtkwindow.h>
41 #include <gtk/gtksignal.h>
42 #include <gtk/gtkvbox.h>
43 #include <gtk/gtkcontainer.h>
44 #include <gtk/gtkhandlebox.h>
45 #include <gtk/gtktoolbar.h>
46 #include <gtk/gtktable.h>
47 #include <gtk/gtkhbox.h>
48 #include <gtk/gtklabel.h>
49 #include <gtk/gtkscrolledwindow.h>
50 #include <gtk/gtkthemes.h>
51 #include <gtk/gtkdnd.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <ctype.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
58 #include <unistd.h>
59 #include <time.h>
60 /* #include <sys/utsname.h> */
61 #include <stdlib.h>
62 #include <sys/wait.h>
63 #include <signal.h>
64 #include <errno.h>
65
66 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
67 #  include <wchar.h>
68 #  include <wctype.h>
69 #endif
70
71 #include "intl.h"
72 #include "main.h"
73 #include "mainwindow.h"
74 #include "compose.h"
75 #include "gtkstext.h"
76 #include "addressbook.h"
77 #include "folderview.h"
78 #include "procmsg.h"
79 #include "menu.h"
80 #include "stock_pixmap.h"
81 #include "send.h"
82 #include "imap.h"
83 #include "news.h"
84 #include "customheader.h"
85 #include "prefs_common.h"
86 #include "prefs_account.h"
87 #include "prefs_actions.h"
88 #include "account.h"
89 #include "filesel.h"
90 #include "procheader.h"
91 #include "procmime.h"
92 #include "statusbar.h"
93 #include "about.h"
94 #include "base64.h"
95 #include "quoted-printable.h"
96 #include "codeconv.h"
97 #include "utils.h"
98 #include "gtkutils.h"
99 #include "socket.h"
100 #include "alertpanel.h"
101 #include "manage_window.h"
102 #include "gtkshruler.h"
103 #include "folder.h"
104 #include "addr_compl.h"
105 #include "quote_fmt.h"
106 #include "template.h"
107 #include "undo.h"
108 #include "foldersel.h"
109 #include "toolbar.h"
110
111 #if USE_GPGME
112 #  include "rfc2015.h"
113 #endif
114
115 typedef enum
116 {
117         COL_MIMETYPE = 0,
118         COL_SIZE     = 1,
119         COL_NAME     = 2
120 } AttachColumnPos;
121
122 #define N_ATTACH_COLS           3
123
124 typedef enum
125 {
126         COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
127         COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
128         COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
129         COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
130         COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
131         COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
132         COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
133         COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
134         COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
135         COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
136         COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
137         COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
138         COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
139         COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
140         COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END
141 } ComposeCallGtkSTextAction;
142
143 typedef enum
144 {
145         PRIORITY_HIGHEST = 1,
146         PRIORITY_HIGH,
147         PRIORITY_NORMAL,
148         PRIORITY_LOW,
149         PRIORITY_LOWEST
150 } PriorityLevel;
151
152 #define B64_LINE_SIZE           57
153 #define B64_BUFFSIZE            77
154
155 #define MAX_REFERENCES_LEN      999
156
157 static GdkColor quote_color = {0, 0, 0, 0xbfff};
158
159 static GList *compose_list = NULL;
160
161 Compose *compose_generic_new                    (PrefsAccount   *account,
162                                                  const gchar    *to,
163                                                  FolderItem     *item,
164                                                  GPtrArray      *attach_files);
165
166 static Compose *compose_create                  (PrefsAccount   *account,
167                                                  ComposeMode     mode);
168
169 static GtkWidget *compose_account_option_menu_create
170                                                 (Compose        *compose);
171 static void compose_set_template_menu           (Compose        *compose);
172 static void compose_template_apply              (Compose        *compose,
173                                                  Template       *tmpl,
174                                                  gboolean        replace);
175 static void compose_destroy                     (Compose        *compose);
176
177 static void compose_entries_set                 (Compose        *compose,
178                                                  const gchar    *mailto);
179 static gint compose_parse_header                (Compose        *compose,
180                                                  MsgInfo        *msginfo);
181 static gchar *compose_parse_references          (const gchar    *ref,
182                                                  const gchar    *msgid);
183
184 static gchar *compose_quote_fmt                 (Compose        *compose,
185                                                  MsgInfo        *msginfo,
186                                                  const gchar    *fmt,
187                                                  const gchar    *qmark,
188                                                  const gchar    *body);
189
190 static void compose_reply_set_entry             (Compose        *compose,
191                                                  MsgInfo        *msginfo,
192                                                  gboolean        to_all,
193                                                  gboolean        to_ml,
194                                                  gboolean        to_sender,
195                                                  gboolean
196                                                  followup_and_reply_to);
197 static void compose_reedit_set_entry            (Compose        *compose,
198                                                  MsgInfo        *msginfo);
199 static void compose_insert_sig                  (Compose        *compose);
200 static void compose_insert_file                 (Compose        *compose,
201                                                  const gchar    *file);
202 static void compose_attach_append               (Compose        *compose,
203                                                  const gchar    *file,
204                                                  const gchar    *type,
205                                                  const gchar    *content_type);
206 static void compose_attach_parts                (Compose        *compose,
207                                                  MsgInfo        *msginfo);
208 static void compose_wrap_line                   (Compose        *compose);
209 static void compose_wrap_line_all               (Compose        *compose);
210 static void compose_wrap_line_all_full          (Compose        *compose,
211                                                  gboolean        autowrap);
212 static void compose_set_title                   (Compose        *compose);
213 static void compose_select_account              (Compose        *compose,
214                                                  PrefsAccount   *account);
215
216 static PrefsAccount *compose_current_mail_account(void);
217 /* static gint compose_send                     (Compose        *compose); */
218 static gboolean compose_check_for_valid_recipient
219                                                 (Compose        *compose);
220 static gboolean compose_check_entries           (Compose        *compose,
221                                                  gboolean       check_subject);
222 static gint compose_write_to_file               (Compose        *compose,
223                                                  const gchar    *file,
224                                                  gboolean        is_draft);
225 static gint compose_write_body_to_file          (Compose        *compose,
226                                                  const gchar    *file);
227 static gint compose_remove_reedit_target        (Compose        *compose);
228 void compose_remove_draft                       (Compose        *compose);
229 static gint compose_queue                       (Compose        *compose,
230                                                  gint           *msgnum,
231                                                  FolderItem     **item);
232 static gint compose_queue_sub                   (Compose        *compose,
233                                                  gint           *msgnum,
234                                                  FolderItem     **item,
235                                                  gboolean       check_subject);
236 static void compose_write_attach                (Compose        *compose,
237                                                  FILE           *fp);
238 static gint compose_write_headers               (Compose        *compose,
239                                                  FILE           *fp,
240                                                  const gchar    *charset,
241                                                  EncodingType    encoding,
242                                                  gboolean        is_draft);
243
244 static void compose_convert_header              (gchar          *dest,
245                                                  gint            len,
246                                                  gchar          *src,
247                                                  gint            header_len);
248 static void compose_generate_msgid              (Compose        *compose,
249                                                  gchar          *buf,
250                                                  gint            len);
251
252 static void compose_attach_info_free            (AttachInfo     *ainfo);
253 static void compose_attach_remove_selected      (Compose        *compose);
254
255 static void compose_attach_property             (Compose        *compose);
256 static void compose_attach_property_create      (gboolean       *cancelled);
257 static void attach_property_ok                  (GtkWidget      *widget,
258                                                  gboolean       *cancelled);
259 static void attach_property_cancel              (GtkWidget      *widget,
260                                                  gboolean       *cancelled);
261 static gint attach_property_delete_event        (GtkWidget      *widget,
262                                                  GdkEventAny    *event,
263                                                  gboolean       *cancelled);
264 static void attach_property_key_pressed         (GtkWidget      *widget,
265                                                  GdkEventKey    *event,
266                                                  gboolean       *cancelled);
267
268 static void compose_exec_ext_editor             (Compose           *compose);
269 static gint compose_exec_ext_editor_real        (const gchar       *file);
270 static gboolean compose_ext_editor_kill         (Compose           *compose);
271 static void compose_input_cb                    (gpointer           data,
272                                                  gint               source,
273                                                  GdkInputCondition  condition);
274 static void compose_set_ext_editor_sensitive    (Compose           *compose,
275                                                  gboolean           sensitive);
276
277 static void compose_undo_state_changed          (UndoMain       *undostruct,
278                                                  gint            undo_state,
279                                                  gint            redo_state,
280                                                  gpointer        data);
281
282 static gint calc_cursor_xpos    (GtkSText       *text,
283                                  gint            extra,
284                                  gint            char_width);
285
286 static void compose_create_header_entry (Compose *compose);
287 static void compose_add_header_entry    (Compose *compose, gchar *header, gchar *text);
288 static void compose_update_priority_menu_item(Compose * compose);
289
290 /* callback functions */
291
292 static gboolean compose_edit_size_alloc (GtkEditable    *widget,
293                                          GtkAllocation  *allocation,
294                                          GtkSHRuler     *shruler);
295 static void account_activated           (GtkMenuItem    *menuitem,
296                                          gpointer        data);
297 static void attach_selected             (GtkCList       *clist,
298                                          gint            row,
299                                          gint            column,
300                                          GdkEvent       *event,
301                                          gpointer        data);
302 static void attach_button_pressed       (GtkWidget      *widget,
303                                          GdkEventButton *event,
304                                          gpointer        data);
305 static void attach_key_pressed          (GtkWidget      *widget,
306                                          GdkEventKey    *event,
307                                          gpointer        data);
308
309 static void compose_send_cb             (gpointer        data,
310                                          guint           action,
311                                          GtkWidget      *widget);
312 static void compose_send_later_cb       (gpointer        data,
313                                          guint           action,
314                                          GtkWidget      *widget);
315
316 static void compose_draft_cb            (gpointer        data,
317                                          guint           action,
318                                          GtkWidget      *widget);
319
320 static void compose_attach_cb           (gpointer        data,
321                                          guint           action,
322                                          GtkWidget      *widget);
323 static void compose_insert_file_cb      (gpointer        data,
324                                          guint           action,
325                                          GtkWidget      *widget);
326
327 static void compose_close_cb            (gpointer        data,
328                                          guint           action,
329                                          GtkWidget      *widget);
330
331 static void compose_address_cb          (gpointer        data,
332                                          guint           action,
333                                          GtkWidget      *widget);
334 static void compose_template_activate_cb(GtkWidget      *widget,
335                                          gpointer        data);
336
337 static void compose_ext_editor_cb       (gpointer        data,
338                                          guint           action,
339                                          GtkWidget      *widget);
340
341 static gint compose_delete_cb           (GtkWidget      *widget,
342                                          GdkEventAny    *event,
343                                          gpointer        data);
344 static void compose_destroy_cb          (GtkWidget      *widget,
345                                          Compose        *compose);
346
347 static void compose_undo_cb             (Compose        *compose);
348 static void compose_redo_cb             (Compose        *compose);
349 static void compose_cut_cb              (Compose        *compose);
350 static void compose_copy_cb             (Compose        *compose);
351 static void compose_paste_cb            (Compose        *compose);
352 static void compose_paste_as_quote_cb   (Compose        *compose);
353 static void compose_allsel_cb           (Compose        *compose);
354
355 static void compose_gtk_stext_action_cb (Compose                   *compose,
356                                          ComposeCallGtkSTextAction  action);
357
358 static void compose_grab_focus_cb       (GtkWidget      *widget,
359                                          Compose        *compose);
360
361 static void compose_changed_cb          (GtkEditable    *editable,
362                                          Compose        *compose);
363 static void compose_button_press_cb     (GtkWidget      *widget,
364                                          GdkEventButton *event,
365                                          Compose        *compose);
366 #if 0
367 static void compose_key_press_cb        (GtkWidget      *widget,
368                                          GdkEventKey    *event,
369                                          Compose        *compose);
370 #endif
371
372 #if 0
373 static void compose_toggle_to_cb        (gpointer        data,
374                                          guint           action,
375                                          GtkWidget      *widget);
376 static void compose_toggle_cc_cb        (gpointer        data,
377                                          guint           action,
378                                          GtkWidget      *widget);
379 static void compose_toggle_bcc_cb       (gpointer        data,
380                                          guint           action,
381                                          GtkWidget      *widget);
382 static void compose_toggle_replyto_cb   (gpointer        data,
383                                          guint           action,
384                                          GtkWidget      *widget);
385 static void compose_toggle_followupto_cb(gpointer        data,
386                                          guint           action,
387                                          GtkWidget      *widget);
388 static void compose_toggle_attach_cb    (gpointer        data,
389                                          guint           action,
390                                          GtkWidget      *widget);
391 #endif
392 static void compose_toggle_ruler_cb     (gpointer        data,
393                                          guint           action,
394                                          GtkWidget      *widget);
395 #if USE_GPGME
396 static void compose_toggle_sign_cb      (gpointer        data,
397                                          guint           action,
398                                          GtkWidget      *widget);
399 static void compose_toggle_encrypt_cb   (gpointer        data,
400                                          guint           action,
401                                          GtkWidget      *widget);
402 static void compose_set_gnupg_mode_cb   (gpointer        data,
403                                          guint           action,
404                                          GtkWidget      *widget);
405 static void compose_update_gnupg_mode_menu_item(Compose * compose);
406 static void activate_gnupg_mode         (Compose *compose, 
407                                          PrefsAccount *account);
408 #endif
409 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
410                                              GtkWidget *widget);
411 static void compose_set_priority_cb     (gpointer        data,
412                                          guint           action,
413                                          GtkWidget      *widget);
414
415 static void compose_attach_drag_received_cb (GtkWidget          *widget,
416                                              GdkDragContext     *drag_context,
417                                              gint                x,
418                                              gint                y,
419                                              GtkSelectionData   *data,
420                                              guint               info,
421                                              guint               time,
422                                              gpointer            user_data);
423 static void compose_insert_drag_received_cb (GtkWidget          *widget,
424                                              GdkDragContext     *drag_context,
425                                              gint                x,
426                                              gint                y,
427                                              GtkSelectionData   *data,
428                                              guint               info,
429                                              guint               time,
430                                              gpointer            user_data);
431
432 #if 0
433 static void to_activated                (GtkWidget      *widget,
434                                          Compose        *compose);
435 static void newsgroups_activated        (GtkWidget      *widget,
436                                          Compose        *compose);
437 static void cc_activated                (GtkWidget      *widget,
438                                          Compose        *compose);
439 static void bcc_activated               (GtkWidget      *widget,
440                                          Compose        *compose);
441 static void replyto_activated           (GtkWidget      *widget,
442                                          Compose        *compose);
443 static void followupto_activated        (GtkWidget      *widget,
444                                          Compose        *compose);
445 static void subject_activated           (GtkWidget      *widget,
446                                          Compose        *compose);
447 #endif
448
449 static void text_activated              (GtkWidget      *widget,
450                                          Compose        *compose);
451 static void text_inserted               (GtkWidget      *widget,
452                                          const gchar    *text,
453                                          gint            length,
454                                          gint           *position,
455                                          Compose        *compose);
456 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
457                                   gboolean to_all, gboolean to_ml,
458                                   gboolean ignore_replyto,
459                                   gboolean followup_and_reply_to,
460                                   const gchar *body);
461
462 void compose_headerentry_changed_cb        (GtkWidget          *entry,
463                                             ComposeHeaderEntry *headerentry);
464 void compose_headerentry_key_press_event_cb(GtkWidget          *entry,
465                                             GdkEventKey        *event,
466                                             ComposeHeaderEntry *headerentry);
467
468 static void compose_show_first_last_header (Compose *compose, gboolean show_first);
469
470 #if USE_ASPELL
471 static void compose_check_all              (Compose *compose);
472 static void compose_highlight_all          (Compose *compose);
473 static void compose_check_backwards        (Compose *compose);
474 static void compose_check_forwards_go      (Compose *compose);
475 #endif
476
477 static gboolean compose_send_control_enter      (Compose        *compose);
478
479 static GtkItemFactoryEntry compose_popup_entries[] =
480 {
481         {N_("/_Add..."),        NULL, compose_attach_cb, 0, NULL},
482         {N_("/_Remove"),        NULL, compose_attach_remove_selected, 0, NULL},
483         {N_("/---"),            NULL, NULL, 0, "<Separator>"},
484         {N_("/_Properties..."), NULL, compose_attach_property, 0, NULL}
485 };
486
487 static GtkItemFactoryEntry compose_entries[] =
488 {
489         {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
490         {N_("/_File/_Attach file"),             "<control>M", compose_attach_cb,      0, NULL},
491         {N_("/_File/_Insert file"),             "<control>I", compose_insert_file_cb, 0, NULL},
492         {N_("/_File/Insert si_gnature"),        "<control>G", compose_insert_sig,     0, NULL},
493         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
494         {N_("/_File/_Close"),                   "<control>W", compose_close_cb, 0, NULL},
495
496         {N_("/_Edit"),                  NULL, NULL, 0, "<Branch>"},
497         {N_("/_Edit/_Undo"),            "<control>Z", compose_undo_cb, 0, NULL},
498         {N_("/_Edit/_Redo"),            "<control>Y", compose_redo_cb, 0, NULL},
499         {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
500         {N_("/_Edit/Cu_t"),             "<control>X", compose_cut_cb,    0, NULL},
501         {N_("/_Edit/_Copy"),            "<control>C", compose_copy_cb,   0, NULL},
502         {N_("/_Edit/_Paste"),           "<control>V", compose_paste_cb,  0, NULL},
503         {N_("/_Edit/Paste as _quotation"),
504                                         NULL, compose_paste_as_quote_cb, 0, NULL},
505         {N_("/_Edit/Select _all"),      "<control>A", compose_allsel_cb, 0, NULL},
506         {N_("/_Edit/A_dvanced"),        NULL, NULL, 0, "<Branch>"},
507         {N_("/_Edit/A_dvanced/Move a character backward"),
508                                         "<control>B",
509                                         compose_gtk_stext_action_cb,
510                                         COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
511                                         NULL},
512         {N_("/_Edit/A_dvanced/Move a character forward"),
513                                         "<control>F",
514                                         compose_gtk_stext_action_cb,
515                                         COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
516                                         NULL},
517         {N_("/_Edit/A_dvanced/Move a word backward"),
518                                         NULL, /* "<alt>B" */
519                                         compose_gtk_stext_action_cb,
520                                         COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
521                                         NULL},
522         {N_("/_Edit/A_dvanced/Move a word forward"),
523                                         NULL, /* "<alt>F" */
524                                         compose_gtk_stext_action_cb,
525                                         COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
526                                         NULL},
527         {N_("/_Edit/A_dvanced/Move to beginning of line"),
528                                         NULL, /* "<control>A" */
529                                         compose_gtk_stext_action_cb,
530                                         COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
531                                         NULL},
532         {N_("/_Edit/A_dvanced/Move to end of line"),
533                                         "<control>E",
534                                         compose_gtk_stext_action_cb,
535                                         COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
536                                         NULL},
537         {N_("/_Edit/A_dvanced/Move to previous line"),
538                                         "<control>P",
539                                         compose_gtk_stext_action_cb,
540                                         COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
541                                         NULL},
542         {N_("/_Edit/A_dvanced/Move to next line"),
543                                         "<control>N",
544                                         compose_gtk_stext_action_cb,
545                                         COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
546                                         NULL},
547         {N_("/_Edit/A_dvanced/Delete a character backward"),
548                                         "<control>H",
549                                         compose_gtk_stext_action_cb,
550                                         COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
551                                         NULL},
552         {N_("/_Edit/A_dvanced/Delete a character forward"),
553                                         "<control>D",
554                                         compose_gtk_stext_action_cb,
555                                         COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
556                                         NULL},
557         {N_("/_Edit/A_dvanced/Delete a word backward"),
558                                         NULL, /* "<control>W" */
559                                         compose_gtk_stext_action_cb,
560                                         COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
561                                         NULL},
562         {N_("/_Edit/A_dvanced/Delete a word forward"),
563                                         NULL, /* "<alt>D", */
564                                         compose_gtk_stext_action_cb,
565                                         COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
566                                         NULL},
567         {N_("/_Edit/A_dvanced/Delete line"),
568                                         "<control>U",
569                                         compose_gtk_stext_action_cb,
570                                         COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
571                                         NULL},
572         {N_("/_Edit/A_dvanced/Delete entire line"),
573                                         NULL,
574                                         compose_gtk_stext_action_cb,
575                                         COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
576                                         NULL},
577         {N_("/_Edit/A_dvanced/Delete to end of line"),
578                                         "<control>K",
579                                         compose_gtk_stext_action_cb,
580                                         COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END,
581                                         NULL},
582         {N_("/_Edit/---"),              NULL, NULL, 0, "<Separator>"},
583         {N_("/_Edit/_Wrap current paragraph"),
584                                         "<control>L", compose_wrap_line, 0, NULL},
585         {N_("/_Edit/Wrap all long _lines"),
586                                         "<control><alt>L", compose_wrap_line_all, 0, NULL},
587         {N_("/_Edit/Edit with e_xternal editor"),
588                                         "<shift><control>X", compose_ext_editor_cb, 0, NULL},
589 #if USE_ASPELL
590         {N_("/_Spelling"),              NULL, NULL, 0, "<Branch>"},
591         {N_("/_Spelling/_Check all or check selection"),
592                                         NULL, compose_check_all, 0, NULL},
593         {N_("/_Spelling/_Highlight all misspelled words"),
594                                         NULL, compose_highlight_all, 0, NULL},
595         {N_("/_Spelling/Check _backwards misspelled word"),
596                                         NULL, compose_check_backwards , 0, NULL},
597         {N_("/_Spelling/_Forward to next misspelled word"),
598                                         NULL, compose_check_forwards_go, 0, NULL},
599         {N_("/_Spelling/---"),          NULL, NULL, 0, "<Separator>"},
600         {N_("/_Spelling/_Spelling Configuration"),
601                                         NULL, NULL, 0, "<Branch>"},
602 #endif
603 #if 0 /* NEW COMPOSE GUI */
604         {N_("/_View"),                  NULL, NULL, 0, "<Branch>"},
605         {N_("/_View/_To"),              NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
606         {N_("/_View/_Cc"),              NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
607         {N_("/_View/_Bcc"),             NULL, compose_toggle_bcc_cb    , 0, "<ToggleItem>"},
608         {N_("/_View/_Reply to"),        NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
609         {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
610         {N_("/_View/_Followup to"),     NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
611         {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
612         {N_("/_View/R_uler"),           NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
613         {N_("/_View/---"),              NULL, NULL, 0, "<Separator>"},
614         {N_("/_View/_Attachment"),      NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
615 #endif
616         {N_("/_Message"),               NULL, NULL, 0, "<Branch>"},
617         {N_("/_Message/_Send"),         "<control>Return",
618                                         compose_send_cb, 0, NULL},
619         {N_("/_Message/Send _later"),   "<shift><control>S",
620                                         compose_send_later_cb,  0, NULL},
621         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
622         {N_("/_Message/Save to _draft folder"),
623                                         "<shift><control>D", compose_draft_cb, 0, NULL},
624         {N_("/_Message/Save and _keep editing"),
625                                         "<control>S", compose_draft_cb, 1, NULL},
626 #if 0 /* NEW COMPOSE GUI */
627         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
628         {N_("/_Message/_To"),           NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
629         {N_("/_Message/_Cc"),           NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
630         {N_("/_Message/_Bcc"),          NULL, compose_toggle_bcc_cb    , 0, "<ToggleItem>"},
631         {N_("/_Message/_Reply to"),     NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
632         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
633         {N_("/_Message/_Followup to"),  NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
634         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
635         {N_("/_Message/_Attach"),       NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
636 #endif
637 #if USE_GPGME
638         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
639         {N_("/_Message/Si_gn"),         NULL, compose_toggle_sign_cb   , 0, "<ToggleItem>"},
640         {N_("/_Message/_Encrypt"),      NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
641         {N_("/_Message/Mode/MIME"),             NULL, compose_set_gnupg_mode_cb,   GNUPG_MODE_DETACH, "<RadioItem>"},   
642         {N_("/_Message/Mode/Inline"),   NULL, compose_set_gnupg_mode_cb,   GNUPG_MODE_INLINE, "/Message/Mode/MIME"},    
643 #endif /* USE_GPGME */
644         {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
645         {N_("/_Message/_Priority"),     NULL,           NULL,   0, "<Branch>"},
646         {N_("/_Message/Priority/_Highest"), NULL, compose_set_priority_cb, PRIORITY_HIGHEST, "<RadioItem>"},
647         {N_("/_Message/Priority/Hi_gh"),    NULL, compose_set_priority_cb, PRIORITY_HIGH, "/Message/Priority/Highest"},
648         {N_("/_Message/Priority/_Normal"),  NULL, compose_set_priority_cb, PRIORITY_NORMAL, "/Message/Priority/Highest"},
649         {N_("/_Message/Priority/Lo_w"),    NULL, compose_set_priority_cb, PRIORITY_LOW, "/Message/Priority/Highest"},
650         {N_("/_Message/Priority/_Lowest"),  NULL, compose_set_priority_cb, PRIORITY_LOWEST, "/Message/Priority/Highest"},
651         {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
652         {N_("/_Message/_Request Return Receipt"),       NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
653         {N_("/_Tools"),                 NULL, NULL, 0, "<Branch>"},
654         {N_("/_Tools/Show _ruler"),     NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
655         {N_("/_Tools/_Address book"),   "<shift><control>A", compose_address_cb , 0, NULL},
656         {N_("/_Tools/_Template"),       NULL, NULL, 0, "<Branch>"},
657         {N_("/_Tools/Actio_ns"),        NULL, NULL, 0, "<Branch>"},
658         {N_("/_Help"),                  NULL, NULL, 0, "<Branch>"},
659         {N_("/_Help/_About"),           NULL, about_show, 0, NULL}
660 };
661
662 static GtkTargetEntry compose_mime_types[] =
663 {
664         {"text/uri-list", 0, 0}
665 };
666
667 Compose *compose_new(PrefsAccount *account, const gchar *mailto,
668                      GPtrArray *attach_files)
669 {
670         return compose_generic_new(account, mailto, NULL, attach_files);
671 }
672
673 Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
674 {
675         return compose_generic_new(account, NULL, item, NULL);
676 }
677
678 Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item,
679                              GPtrArray *attach_files)
680 {
681         Compose *compose;
682         GtkSText *text;
683         GtkItemFactory *ifactory;
684         gboolean grab_focus_on_last = TRUE;
685
686         if (item && item->prefs && item->prefs->enable_default_account)
687                 account = account_find_from_id(item->prefs->default_account);
688
689         if (!account) account = cur_account;
690         g_return_val_if_fail(account != NULL, NULL);
691
692         compose = compose_create(account, COMPOSE_NEW);
693         ifactory = gtk_item_factory_from_widget(compose->menubar);
694
695         compose->replyinfo = NULL;
696         compose->fwdinfo   = NULL;
697
698         text = GTK_STEXT(compose->text);
699         gtk_stext_freeze(text);
700
701         if (prefs_common.auto_sig)
702                 compose_insert_sig(compose);
703         gtk_editable_set_position(GTK_EDITABLE(text), 0);
704         gtk_stext_set_point(text, 0);
705
706         gtk_stext_thaw(text);
707
708         if (account->protocol != A_NNTP) {
709                 if (mailto && *mailto != '\0') {
710                         compose_entries_set(compose, mailto);
711
712                 } else if (item && item->prefs->enable_default_to) {
713                         compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
714                         compose_entry_select(compose, item->prefs->default_to);
715                         grab_focus_on_last = FALSE;
716                 }
717                 if (item && item->ret_rcpt) {
718                         menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
719                 }
720         } else {
721                 if (mailto) {
722                         compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
723                 }
724                 /*
725                  * CLAWS: just don't allow return receipt request, even if the user
726                  * may want to send an email. simple but foolproof.
727                  */
728                 menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE); 
729         }
730
731         if (attach_files) {
732                 gint i;
733                 gchar *file;
734
735                 for (i = 0; i < attach_files->len; i++) {
736                         file = g_ptr_array_index(attach_files, i);
737                         compose_attach_append(compose, file, file, NULL);
738                 }
739         }
740
741         compose_show_first_last_header(compose, TRUE);
742
743         /* Set save folder */
744         if (item && item->prefs && item->prefs->save_copy_to_folder) {
745                 gchar *folderidentifier;
746
747                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), prefs_common.savemsg);
748                 folderidentifier = folder_item_get_identifier(item);
749                 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
750                 g_free(folderidentifier);
751         }
752         
753         /* Grab focus on last header only if no default_to was set */
754         if (grab_focus_on_last)
755                 gtk_widget_grab_focus(compose->header_last->entry);
756
757         if (prefs_common.auto_exteditor)
758                 compose_exec_ext_editor(compose);
759
760         return compose;
761 }
762
763 /*
764 Compose *compose_new_followup_and_replyto(PrefsAccount *account,
765                                            const gchar *followupto, gchar * to)
766 {
767         Compose *compose;
768
769         if (!account) account = cur_account;
770         g_return_val_if_fail(account != NULL, NULL);
771         g_return_val_if_fail(account->protocol != A_NNTP, NULL);
772
773         compose = compose_create(account, COMPOSE_NEW);
774
775         if (prefs_common.auto_sig)
776                 compose_insert_sig(compose);
777         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
778         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
779
780         compose_entry_append(compose, to, COMPOSE_TO);
781         compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
782         gtk_widget_grab_focus(compose->subject_entry);
783
784         return compose;
785 }
786 */
787
788 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
789                    gboolean to_ml, gboolean ignore_replyto, 
790                    const gchar *body)
791 {
792         compose_generic_reply(msginfo, quote, to_all, to_ml, 
793                               ignore_replyto, FALSE, body);
794 }
795
796 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
797                                    gboolean to_all,
798                                    gboolean ignore_replyto,
799                                    const gchar *body)
800 {
801         compose_generic_reply(msginfo, quote, to_all, FALSE, 
802                               ignore_replyto, TRUE, body);
803 }
804
805 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
806                                   gboolean to_all, gboolean to_ml,
807                                   gboolean ignore_replyto,
808                                   gboolean followup_and_reply_to,
809                                   const gchar *body)
810 {
811         Compose *compose;
812         PrefsAccount *account = NULL;
813         PrefsAccount *reply_account;
814         GtkSText *text;
815
816         g_return_if_fail(msginfo != NULL);
817         g_return_if_fail(msginfo->folder != NULL);
818
819         account = account_get_reply_account(msginfo, prefs_common.reply_account_autosel);
820         
821         g_return_if_fail(account != NULL);
822
823         if (ignore_replyto && account->protocol == A_NNTP &&
824             !followup_and_reply_to) {
825                 reply_account =
826                         account_find_from_address(account->address);
827                 if (!reply_account)
828                         reply_account = compose_current_mail_account();
829                 if (!reply_account)
830                         return;
831         } else
832                 reply_account = account;
833
834         compose = compose_create(account, COMPOSE_REPLY);
835
836         compose->replyinfo = procmsg_msginfo_get_full_info(msginfo);
837         if (!compose->replyinfo)
838                 compose->replyinfo = procmsg_msginfo_copy(msginfo);
839
840         if (msginfo->folder && msginfo->folder->ret_rcpt) {
841                 GtkItemFactory *ifactory;
842         
843                 ifactory = gtk_item_factory_from_widget(compose->menubar);
844                 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
845         }
846
847         /* Set save folder */
848         if (msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
849                 gchar *folderidentifier;
850
851                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
852                 folderidentifier = folder_item_get_identifier(msginfo->folder);
853                 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
854                 g_free(folderidentifier);
855         }
856
857         if (compose_parse_header(compose, msginfo) < 0) return;
858         compose_reply_set_entry(compose, msginfo, to_all, to_ml, 
859                                 ignore_replyto, followup_and_reply_to);
860         compose_show_first_last_header(compose, TRUE);
861
862         text = GTK_STEXT(compose->text);
863         gtk_stext_freeze(text);
864
865         if (quote) {
866                 gchar *qmark;
867                 gchar *quote_str;
868
869                 if (prefs_common.quotemark && *prefs_common.quotemark)
870                         qmark = prefs_common.quotemark;
871                 else
872                         qmark = "> ";
873
874                 quote_str = compose_quote_fmt(compose, compose->replyinfo,
875                                               prefs_common.quotefmt,
876                                               qmark, body);
877         }
878
879         if (prefs_common.auto_sig)
880                 compose_insert_sig(compose);
881
882         if (quote && prefs_common.linewrap_quote)
883                 compose_wrap_line_all(compose);
884
885         gtk_editable_set_position(GTK_EDITABLE(text), 0);
886         gtk_stext_set_point(text, 0);
887
888         gtk_stext_thaw(text);
889         gtk_widget_grab_focus(compose->text);
890
891         if (prefs_common.auto_exteditor)
892                 compose_exec_ext_editor(compose);
893 }
894
895 #define INSERT_FW_HEADER(var, hdr) \
896 if (msginfo->var && *msginfo->var) { \
897         gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
898         gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
899         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
900 }
901
902 Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
903                          gboolean as_attach, const gchar *body)
904 {
905         Compose *compose;
906         GtkSText *text;
907
908         g_return_val_if_fail(msginfo != NULL, NULL);
909         g_return_val_if_fail(msginfo->folder != NULL, NULL);
910
911         if (msginfo->folder->prefs->enable_default_account)
912                 account = account_find_from_id(msginfo->folder->prefs->default_account);
913         if (!account) 
914                 account = msginfo->folder->folder->account;
915         if (!account && msginfo->to && prefs_common.forward_account_autosel) {
916                 gchar *to;
917                 Xstrdup_a(to, msginfo->to, return NULL);
918                 extract_address(to);
919                 account = account_find_from_address(to);
920         }
921
922         if (!account && prefs_common.forward_account_autosel) {
923                 gchar cc[BUFFSIZE];
924                 if (!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
925                         extract_address(cc);
926                         account = account_find_from_address(cc);
927                 }
928         }
929
930         if (account == NULL) {
931                 account = cur_account;
932                 /*
933                 account = msginfo->folder->folder->account;
934                 if (!account) account = cur_account;
935                 */
936         }
937         g_return_val_if_fail(account != NULL, NULL);
938
939         compose = compose_create(account, COMPOSE_FORWARD);
940
941         compose->fwdinfo = procmsg_msginfo_get_full_info(msginfo);
942         if (!compose->fwdinfo)
943                 compose->fwdinfo = procmsg_msginfo_copy(msginfo);
944
945         if (msginfo->subject && *msginfo->subject) {
946                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
947                 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
948                                       msginfo->subject);
949         }
950
951         text = GTK_STEXT(compose->text);
952         gtk_stext_freeze(text);
953
954
955                 if (as_attach) {
956                         gchar *msgfile;
957
958                         msgfile = procmsg_get_message_file_path(msginfo);
959                         if (!is_file_exist(msgfile))
960                                 g_warning("%s: file not exist\n", msgfile);
961                         else
962                                 compose_attach_append(compose, msgfile, msgfile,
963                                                       "message/rfc822");
964
965                         g_free(msgfile);
966                 } else {
967                         gchar *qmark;
968                         gchar *quote_str;
969                         MsgInfo *full_msginfo;
970
971                         full_msginfo = procmsg_msginfo_get_full_info(msginfo);
972                         if (!full_msginfo)
973                                 full_msginfo = procmsg_msginfo_copy(msginfo);
974
975                         if (prefs_common.fw_quotemark &&
976                             *prefs_common.fw_quotemark)
977                                 qmark = prefs_common.fw_quotemark;
978                         else
979                                 qmark = "> ";
980
981                         quote_str = compose_quote_fmt(compose, full_msginfo,
982                                                       prefs_common.fw_quotefmt,
983                                                       qmark, body);
984                         compose_attach_parts(compose, msginfo);
985
986                         procmsg_msginfo_free(full_msginfo);
987                 }
988
989         if (prefs_common.auto_sig)
990                 compose_insert_sig(compose);
991
992         if (prefs_common.linewrap_quote)
993                 compose_wrap_line_all(compose);
994
995         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
996         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
997
998         gtk_stext_thaw(text);
999 #if 0 /* NEW COMPOSE GUI */
1000         if (account->protocol != A_NNTP)
1001                 gtk_widget_grab_focus(compose->to_entry);
1002         else
1003                 gtk_widget_grab_focus(compose->newsgroups_entry);
1004 #endif
1005         gtk_widget_grab_focus(compose->header_last->entry);
1006
1007         if (prefs_common.auto_exteditor)
1008                 compose_exec_ext_editor(compose);
1009         
1010         /*save folder*/
1011         if (msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
1012                 gchar *folderidentifier;
1013
1014                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1015                 folderidentifier = folder_item_get_identifier(msginfo->folder);
1016                 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
1017                 g_free(folderidentifier);
1018         }
1019
1020         return compose;
1021 }
1022
1023 #undef INSERT_FW_HEADER
1024
1025 Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
1026 {
1027         Compose *compose;
1028         GtkSText *text;
1029         GSList *msginfo;
1030         gchar *msgfile;
1031
1032         g_return_val_if_fail(msginfo_list != NULL, NULL);
1033         
1034         for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1035                 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1036                         return NULL;
1037         }
1038
1039         if (account == NULL) {
1040                 account = cur_account;
1041                 /*
1042                 account = msginfo->folder->folder->account;
1043                 if (!account) account = cur_account;
1044                 */
1045         }
1046         g_return_val_if_fail(account != NULL, NULL);
1047
1048         for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1049                 MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
1050                 MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
1051         }
1052
1053         compose = compose_create(account, COMPOSE_FORWARD);
1054
1055         text = GTK_STEXT(compose->text);
1056         gtk_stext_freeze(text);
1057
1058         for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1059                 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1060                 if (!is_file_exist(msgfile))
1061                         g_warning("%s: file not exist\n", msgfile);
1062                 else
1063                         compose_attach_append(compose, msgfile, msgfile,
1064                                 "message/rfc822");
1065                 g_free(msgfile);
1066         }
1067
1068         if (prefs_common.auto_sig)
1069                 compose_insert_sig(compose);
1070
1071         if (prefs_common.linewrap_quote)
1072                 compose_wrap_line_all(compose);
1073
1074         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1075         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1076
1077         gtk_stext_thaw(text);
1078         gtk_widget_grab_focus(compose->header_last->entry);
1079         
1080 #if 0 /* NEW COMPOSE GUI */
1081         if (account->protocol != A_NNTP)
1082                 gtk_widget_grab_focus(compose->to_entry);
1083         else
1084                 gtk_widget_grab_focus(compose->newsgroups_entry);
1085 #endif
1086
1087         return compose;
1088 }
1089
1090 void compose_reedit(MsgInfo *msginfo)
1091 {
1092         Compose *compose;
1093         PrefsAccount *account = NULL;
1094         GtkSText *text;
1095         FILE *fp;
1096         gchar buf[BUFFSIZE];
1097
1098         g_return_if_fail(msginfo != NULL);
1099         g_return_if_fail(msginfo->folder != NULL);
1100
1101         if (msginfo->folder->stype == F_QUEUE || msginfo->folder->stype == F_DRAFT) {
1102                 gchar queueheader_buf[BUFFSIZE];
1103                 gint id;
1104
1105                 /* Select Account from queue headers */
1106                 if (!get_header_from_msginfo(msginfo, queueheader_buf, 
1107                                              sizeof(queueheader_buf), "X-Sylpheed-Account-Id:")) {
1108                         id = atoi(&queueheader_buf[22]);
1109                         account = account_find_from_id(id);
1110                 }
1111                 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf, 
1112                                              sizeof(queueheader_buf), "NAID:")) {
1113                         id = atoi(&queueheader_buf[5]);
1114                         account = account_find_from_id(id);
1115                 }
1116                 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf, 
1117                                                     sizeof(queueheader_buf), "MAID:")) {
1118                         id = atoi(&queueheader_buf[5]);
1119                         account = account_find_from_id(id);
1120                 }
1121                 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf, 
1122                                                                 sizeof(queueheader_buf), "S:")) {
1123                         account = account_find_from_address(queueheader_buf);
1124                 }
1125         } else 
1126                 account = msginfo->folder->folder->account;
1127
1128         if (!account && prefs_common.reedit_account_autosel) {
1129                 gchar from[BUFFSIZE];
1130                 if (!get_header_from_msginfo(msginfo, from, sizeof(from), "FROM:")){
1131                         extract_address(from);
1132                         account = account_find_from_address(from);
1133                 }
1134         }
1135         if (!account) account = cur_account;
1136         g_return_if_fail(account != NULL);
1137
1138         compose = compose_create(account, COMPOSE_REEDIT);
1139         compose->targetinfo = procmsg_msginfo_copy(msginfo);
1140
1141         if (msginfo->folder->stype == F_QUEUE
1142         ||  msginfo->folder->stype == F_DRAFT) {
1143                 gchar queueheader_buf[BUFFSIZE];
1144
1145                 /* Set message save folder */
1146                 if (!get_header_from_msginfo(msginfo, queueheader_buf, sizeof(queueheader_buf), "SCF:")) {
1147                         gint startpos = 0;
1148
1149                         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1150                         gtk_editable_delete_text(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
1151                         gtk_editable_insert_text(GTK_EDITABLE(compose->savemsg_entry), &queueheader_buf[4], strlen(&queueheader_buf[4]), &startpos);
1152                 }
1153         }
1154         
1155         if (compose_parse_header(compose, msginfo) < 0) return;
1156         compose_reedit_set_entry(compose, msginfo);
1157
1158         text = GTK_STEXT(compose->text);
1159         gtk_stext_freeze(text);
1160
1161         if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1162                 g_warning("Can't get text part\n");
1163         else {
1164                 while (fgets(buf, sizeof(buf), fp) != NULL) {
1165                         strcrchomp(buf);
1166                         gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1167                 }
1168                 fclose(fp);
1169         }
1170         compose_attach_parts(compose, msginfo);
1171
1172         gtk_stext_thaw(text);
1173         gtk_widget_grab_focus(compose->text);
1174
1175         if (prefs_common.auto_exteditor)
1176                 compose_exec_ext_editor(compose);
1177 }
1178
1179 Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
1180 {
1181         Compose *compose;
1182         gchar *filename;
1183         GtkItemFactory *ifactory;
1184
1185         g_return_val_if_fail(msginfo != NULL, NULL);
1186
1187         if (!account)
1188                 account = cur_account;
1189         g_return_val_if_fail(account != NULL, NULL);
1190
1191         compose = compose_create(account, COMPOSE_REDIRECT);
1192         ifactory = gtk_item_factory_from_widget(compose->menubar);
1193
1194         compose->replyinfo = NULL;
1195         compose->fwdinfo = NULL;
1196
1197         compose_show_first_last_header(compose, TRUE);
1198
1199         gtk_widget_grab_focus(compose->header_last->entry);
1200
1201         filename = procmsg_get_message_file(msginfo);
1202         if (filename == NULL)
1203                 return NULL;
1204
1205         compose->redirect_filename = filename;
1206         
1207         compose_attach_parts(compose, msginfo);
1208
1209         if (msginfo->subject)
1210                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry),
1211                                    msginfo->subject);
1212         gtk_editable_set_editable(GTK_EDITABLE(compose->subject_entry), FALSE);
1213
1214         gtk_stext_freeze(GTK_STEXT(compose->text));
1215         compose_quote_fmt(compose, msginfo, "%M", NULL, NULL);
1216         gtk_editable_set_editable(GTK_EDITABLE(compose->text), FALSE);
1217         gtk_stext_thaw(GTK_STEXT(compose->text));
1218
1219         ifactory = gtk_item_factory_from_widget(compose->popupmenu);
1220         menu_set_sensitive(ifactory, "/Add...", FALSE);
1221         menu_set_sensitive(ifactory, "/Remove", FALSE);
1222         menu_set_sensitive(ifactory, "/Property...", FALSE);
1223
1224         ifactory = gtk_item_factory_from_widget(compose->menubar);
1225         menu_set_sensitive(ifactory, "/File/Insert file", FALSE);
1226         menu_set_sensitive(ifactory, "/File/Attach file", FALSE);
1227         menu_set_sensitive(ifactory, "/File/Insert signature", FALSE);
1228         menu_set_sensitive(ifactory, "/Edit", FALSE);
1229         menu_set_sensitive(ifactory, "/Message/Save to draft folder", FALSE);
1230         menu_set_sensitive(ifactory, "/Message/Save and keep editing", FALSE);
1231 #if USE_GPGME
1232         menu_set_sensitive(ifactory, "/Message/Sign", FALSE);
1233         menu_set_sensitive(ifactory, "/Message/Encrypt", FALSE);
1234         menu_set_sensitive(ifactory, "/Message/Mode/MIME", FALSE);
1235         menu_set_sensitive(ifactory, "/Message/Mode/Inline", FALSE);
1236 #endif
1237         menu_set_sensitive(ifactory, "/Message/Priority", FALSE);
1238         menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
1239         menu_set_sensitive(ifactory, "/Tools/Show ruler", FALSE);
1240         menu_set_sensitive(ifactory, "/Tools/Actions", FALSE);
1241         
1242         gtk_widget_set_sensitive(compose->toolbar->draft_btn, FALSE);
1243         gtk_widget_set_sensitive(compose->toolbar->insert_btn, FALSE);
1244         gtk_widget_set_sensitive(compose->toolbar->attach_btn, FALSE);
1245         gtk_widget_set_sensitive(compose->toolbar->sig_btn, FALSE);
1246         gtk_widget_set_sensitive(compose->toolbar->exteditor_btn, FALSE);
1247         gtk_widget_set_sensitive(compose->toolbar->linewrap_btn, FALSE);
1248
1249         return compose;
1250 }
1251
1252 GList *compose_get_compose_list(void)
1253 {
1254         return compose_list;
1255 }
1256
1257 void compose_entry_append(Compose *compose, const gchar *address,
1258                           ComposeEntryType type)
1259 {
1260         gchar *header;
1261
1262         if (!address || *address == '\0') return;
1263
1264 #if 0 /* NEW COMPOSE GUI */
1265         switch (type) {
1266         case COMPOSE_CC:
1267                 entry = GTK_ENTRY(compose->cc_entry);
1268                 break;
1269         case COMPOSE_BCC:
1270                 entry = GTK_ENTRY(compose->bcc_entry);
1271                 break;
1272         case COMPOSE_NEWSGROUPS:
1273                 entry = GTK_ENTRY(compose->newsgroups_entry);
1274                 break;
1275         case COMPOSE_TO:
1276         default:
1277                 entry = GTK_ENTRY(compose->to_entry);
1278                 break;
1279         }
1280
1281         text = gtk_entry_get_text(entry);
1282         if (*text != '\0')
1283                 gtk_entry_append_text(entry, ", ");
1284         gtk_entry_append_text(entry, address);
1285 #endif
1286
1287         switch (type) {
1288         case COMPOSE_CC:
1289                 header = N_("Cc:");
1290                 break;
1291         case COMPOSE_BCC:
1292                 header = N_("Bcc:");
1293                 break;
1294         case COMPOSE_REPLYTO:
1295                 header = N_("Reply-To:");
1296                 break;
1297         case COMPOSE_NEWSGROUPS:
1298                 header = N_("Newsgroups:");
1299                 break;
1300         case COMPOSE_FOLLOWUPTO:
1301                 header = N_( "Followup-To:");
1302                 break;
1303         case COMPOSE_TO:
1304         default:
1305                 header = N_("To:");
1306                 break;
1307         }
1308         header = prefs_common.trans_hdr ? gettext(header) : header;
1309
1310         compose_add_header_entry(compose, header, (gchar *)address);
1311 }
1312
1313 void compose_entry_select (Compose *compose, const gchar *mailto)
1314 {
1315         GSList *header_list;
1316                 
1317         for (header_list = compose->header_list; header_list != NULL; header_list = header_list->next) {
1318                 GtkEntry * entry = GTK_ENTRY(((ComposeHeaderEntry *)header_list->data)->entry);
1319
1320                 if (gtk_entry_get_text(entry) && !g_strcasecmp(gtk_entry_get_text(entry), mailto)) {
1321                         gtk_entry_select_region(entry, 0, -1);
1322                         gtk_widget_grab_focus(GTK_WIDGET(entry));
1323                 }
1324         }
1325 }
1326
1327 void compose_toolbar_cb(gint action, gpointer data)
1328 {
1329         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1330         Compose *compose = (Compose*)toolbar_item->parent;
1331         
1332         g_return_if_fail(compose != NULL);
1333
1334         switch(action) {
1335         case A_SEND:
1336                 compose_send_cb(compose, 0, NULL);
1337                 break;
1338         case A_SENDL:
1339                 compose_send_later_cb(compose, 0, NULL);
1340                 break;
1341         case A_DRAFT:
1342                 compose_draft_cb(compose, 0, NULL);
1343                 break;
1344         case A_INSERT:
1345                 compose_insert_file_cb(compose, 0, NULL);
1346                 break;
1347         case A_ATTACH:
1348                 compose_attach_cb(compose, 0, NULL);
1349                 break;
1350         case A_SIG:
1351                 compose_insert_sig(compose);
1352                 break;
1353         case A_EXTEDITOR:
1354                 compose_ext_editor_cb(compose, 0, NULL);
1355                 break;
1356         case A_LINEWRAP:
1357                 compose_wrap_line(compose);
1358                 break;
1359         case A_ADDRBOOK:
1360                 compose_address_cb(compose, 0, NULL);
1361                 break;
1362         default:
1363                 break;
1364         }
1365 }
1366
1367 static void compose_entries_set(Compose *compose, const gchar *mailto)
1368 {
1369         gchar *to = NULL;
1370         gchar *cc = NULL;
1371         gchar *bcc = NULL;
1372         gchar *subject = NULL;
1373         gchar *body = NULL;
1374
1375         scan_mailto_url(mailto, &to, &cc, &bcc, &subject, &body);
1376
1377         if (to)
1378                 compose_entry_append(compose, to, COMPOSE_TO);
1379         if (cc)
1380                 compose_entry_append(compose, cc, COMPOSE_CC);
1381         if (bcc)
1382                 compose_entry_append(compose, bcc, COMPOSE_BCC);
1383         if (subject)
1384                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
1385         if (body) {
1386                 gtk_stext_insert(GTK_STEXT(compose->text),
1387                                 NULL, NULL, NULL, body, -1);
1388                 gtk_stext_insert(GTK_STEXT(compose->text),
1389                                 NULL, NULL, NULL, "\n", 1);
1390         }
1391
1392         g_free(to);
1393         g_free(cc);
1394         g_free(bcc);
1395         g_free(subject);
1396         g_free(body);
1397 }
1398
1399 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1400 {
1401         static HeaderEntry hentry[] = {{"Reply-To:",    NULL, TRUE},
1402                                        {"Cc:",          NULL, FALSE},
1403                                        {"References:",  NULL, FALSE},
1404                                        {"Bcc:",         NULL, FALSE},
1405                                        {"Newsgroups:",  NULL, FALSE},
1406                                        {"Followup-To:", NULL, FALSE},
1407                                        {"List-Post:",   NULL, FALSE},
1408                                        {"X-Priority:",  NULL, FALSE},
1409                                        {NULL,           NULL, FALSE}};
1410
1411         enum
1412         {
1413                 H_REPLY_TO      = 0,
1414                 H_CC            = 1,
1415                 H_REFERENCES    = 2,
1416                 H_BCC           = 3,
1417                 H_NEWSGROUPS    = 4,
1418                 H_FOLLOWUP_TO   = 5,
1419                 H_LIST_POST     = 6,
1420                 H_X_PRIORITY    = 7
1421         };
1422
1423         FILE *fp;
1424
1425         g_return_val_if_fail(msginfo != NULL, -1);
1426
1427         if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1428         procheader_get_header_fields(fp, hentry);
1429         fclose(fp);
1430
1431         if (hentry[H_REPLY_TO].body != NULL) {
1432                 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1433                 compose->replyto = hentry[H_REPLY_TO].body;
1434                 hentry[H_REPLY_TO].body = NULL;
1435         }
1436         if (hentry[H_CC].body != NULL) {
1437                 conv_unmime_header_overwrite(hentry[H_CC].body);
1438                 compose->cc = hentry[H_CC].body;
1439                 hentry[H_CC].body = NULL;
1440         }
1441         if (hentry[H_REFERENCES].body != NULL) {
1442                 if (compose->mode == COMPOSE_REEDIT)
1443                         compose->references = hentry[H_REFERENCES].body;
1444                 else {
1445                         compose->references = compose_parse_references
1446                                 (hentry[H_REFERENCES].body, msginfo->msgid);
1447                         g_free(hentry[H_REFERENCES].body);
1448                 }
1449                 hentry[H_REFERENCES].body = NULL;
1450         }
1451         if (hentry[H_BCC].body != NULL) {
1452                 if (compose->mode == COMPOSE_REEDIT) {
1453                         conv_unmime_header_overwrite(hentry[H_BCC].body);
1454                         compose->bcc = hentry[H_BCC].body;
1455                 } else
1456                         g_free(hentry[H_BCC].body);
1457                 hentry[H_BCC].body = NULL;
1458         }
1459         if (hentry[H_NEWSGROUPS].body != NULL) {
1460                 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1461                 hentry[H_NEWSGROUPS].body = NULL;
1462         }
1463         if (hentry[H_FOLLOWUP_TO].body != NULL) {
1464                 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1465                 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1466                 hentry[H_FOLLOWUP_TO].body = NULL;
1467         }
1468         if (hentry[H_LIST_POST].body != NULL) {
1469                 gchar *to = NULL;
1470
1471                 extract_address(hentry[H_LIST_POST].body);
1472                 if (hentry[H_LIST_POST].body[0] != '\0') {
1473                         scan_mailto_url(hentry[H_LIST_POST].body,
1474                                         &to, NULL, NULL, NULL, NULL);
1475                         if (to) {
1476                                 g_free(compose->ml_post);
1477                                 compose->ml_post = to;
1478                         }
1479                 }
1480                 g_free(hentry[H_LIST_POST].body);
1481                 hentry[H_LIST_POST].body = NULL;
1482         }
1483
1484         /* CLAWS - X-Priority */
1485         if (compose->mode == COMPOSE_REEDIT)
1486                 if (hentry[H_X_PRIORITY].body != NULL) {
1487                         gint priority;
1488                         
1489                         priority = atoi(hentry[H_X_PRIORITY].body);
1490                         g_free(hentry[H_X_PRIORITY].body);
1491                         
1492                         hentry[H_X_PRIORITY].body = NULL;
1493                         
1494                         if (priority < PRIORITY_HIGHEST || 
1495                             priority > PRIORITY_LOWEST)
1496                                 priority = PRIORITY_NORMAL;
1497                         
1498                         compose->priority =  priority;
1499                 }
1500  
1501         if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1502                 compose->inreplyto = g_strdup(msginfo->inreplyto);
1503         else if (compose->mode != COMPOSE_REEDIT &&
1504                  msginfo->msgid && *msginfo->msgid) {
1505                 compose->inreplyto = g_strdup(msginfo->msgid);
1506
1507                 if (!compose->references) {
1508                         if (msginfo->inreplyto && *msginfo->inreplyto)
1509                                 compose->references =
1510                                         g_strdup_printf("<%s>\n\t<%s>",
1511                                                         msginfo->inreplyto,
1512                                                         msginfo->msgid);
1513                         else
1514                                 compose->references =
1515                                         g_strconcat("<", msginfo->msgid, ">",
1516                                                     NULL);
1517                 }
1518         }
1519
1520         return 0;
1521 }
1522
1523 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1524 {
1525         GSList *ref_id_list, *cur;
1526         GString *new_ref;
1527         gchar *new_ref_str;
1528
1529         ref_id_list = references_list_append(NULL, ref);
1530         if (!ref_id_list) return NULL;
1531         if (msgid && *msgid)
1532                 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1533
1534         for (;;) {
1535                 gint len = 0;
1536
1537                 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1538                         /* "<" + Message-ID + ">" + CR+LF+TAB */
1539                         len += strlen((gchar *)cur->data) + 5;
1540
1541                 if (len > MAX_REFERENCES_LEN) {
1542                         /* remove second message-ID */
1543                         if (ref_id_list && ref_id_list->next &&
1544                             ref_id_list->next->next) {
1545                                 g_free(ref_id_list->next->data);
1546                                 ref_id_list = g_slist_remove
1547                                         (ref_id_list, ref_id_list->next->data);
1548                         } else {
1549                                 slist_free_strings(ref_id_list);
1550                                 g_slist_free(ref_id_list);
1551                                 return NULL;
1552                         }
1553                 } else
1554                         break;
1555         }
1556
1557         new_ref = g_string_new("");
1558         for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1559                 if (new_ref->len > 0)
1560                         g_string_append(new_ref, "\n\t");
1561                 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1562         }
1563
1564         slist_free_strings(ref_id_list);
1565         g_slist_free(ref_id_list);
1566
1567         new_ref_str = new_ref->str;
1568         g_string_free(new_ref, FALSE);
1569
1570         return new_ref_str;
1571 }
1572
1573 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
1574                                 const gchar *fmt, const gchar *qmark,
1575                                 const gchar *body)
1576 {
1577         GtkSText *text = GTK_STEXT(compose->text);
1578         static MsgInfo dummyinfo;
1579         gchar *quote_str = NULL;
1580         gchar *buf;
1581         gchar *p, *lastp;
1582         gint len;
1583
1584         if (!msginfo)
1585                 msginfo = &dummyinfo;
1586
1587         if (qmark != NULL) {
1588                 quote_fmt_init(msginfo, NULL, NULL);
1589                 quote_fmt_scan_string(qmark);
1590                 quote_fmt_parse();
1591
1592                 buf = quote_fmt_get_buffer();
1593                 if (buf == NULL)
1594                         alertpanel_error(_("Quote mark format error."));
1595                 else
1596                         Xstrdup_a(quote_str, buf, return NULL)
1597         }
1598
1599         if (fmt && *fmt != '\0') {
1600                 quote_fmt_init(msginfo, quote_str, body);
1601                 quote_fmt_scan_string(fmt);
1602                 quote_fmt_parse();
1603
1604                 buf = quote_fmt_get_buffer();
1605                 if (buf == NULL) {
1606                         alertpanel_error(_("Message reply/forward format error."));
1607                         return NULL;
1608                 }
1609         } else
1610                 buf = "";
1611
1612         gtk_stext_freeze(text);
1613
1614         for (p = buf; *p != '\0'; ) {
1615                 lastp = strchr(p, '\n');
1616                 len = lastp ? lastp - p + 1 : -1;
1617                 gtk_stext_insert(text, NULL, NULL, NULL, p, len);
1618                 if (lastp)
1619                         p = lastp + 1;
1620                 else
1621                         break;
1622         }
1623
1624         gtk_stext_thaw(text);
1625
1626         return buf;
1627 }
1628
1629 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1630                                     gboolean to_all, gboolean to_ml,
1631                                     gboolean ignore_replyto,
1632                                     gboolean followup_and_reply_to)
1633 {
1634         GSList *cc_list = NULL;
1635         GSList *cur;
1636         gchar *from = NULL;
1637         gchar *replyto = NULL;
1638         GHashTable *to_table;
1639
1640         g_return_if_fail(compose->account != NULL);
1641         g_return_if_fail(msginfo != NULL);
1642
1643         if (compose->account->protocol != A_NNTP || followup_and_reply_to) {
1644                 if (!compose->replyto && to_ml && compose->ml_post
1645                     && !(msginfo->folder && msginfo->folder->prefs->enable_default_reply_to))
1646                         compose_entry_append(compose,
1647                                            compose->ml_post,
1648                                            COMPOSE_TO);
1649                 else if (!(to_all || ignore_replyto)
1650                          && msginfo->folder
1651                          && msginfo->folder->prefs->enable_default_reply_to) {
1652                         compose_entry_append(compose,
1653                             msginfo->folder->prefs->default_reply_to,
1654                             COMPOSE_TO);
1655                 } else
1656                         compose_entry_append(compose,
1657                                  (compose->replyto && !ignore_replyto)
1658                                  ? compose->replyto
1659                                  : msginfo->from ? msginfo->from : "",
1660                                  COMPOSE_TO);
1661         } else {
1662                 if (ignore_replyto)
1663                         compose_entry_append
1664                                 (compose, msginfo->from ? msginfo->from : "",
1665                                  COMPOSE_TO);
1666                 else {
1667                         if (compose->followup_to && !strncmp(compose->followup_to, "poster", 6)) {
1668                                 compose_entry_append
1669                                         (compose,
1670                                         ((compose->replyto && !ignore_replyto)
1671                                         ? compose->replyto
1672                                         : msginfo->from ? msginfo->from : ""),
1673                                         COMPOSE_TO);                            
1674                         } else {
1675                                 compose_entry_append
1676                                         (compose,
1677                                          compose->followup_to ? compose->followup_to
1678                                          : compose->newsgroups ? compose->newsgroups
1679                                          : "",
1680                                          COMPOSE_NEWSGROUPS);
1681                         }
1682                 }
1683         }
1684
1685         if (msginfo->subject && *msginfo->subject) {
1686                 gchar *buf, *buf2, *p;
1687
1688                 buf = g_strdup(msginfo->subject);
1689                 while (!strncasecmp(buf, "Re:", 3)) {
1690                         p = buf + 3;
1691                         while (isspace(*p)) p++;
1692                         memmove(buf, p, strlen(p) + 1);
1693                 }
1694
1695                 buf2 = g_strdup_printf("Re: %s", buf);
1696                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1697                 g_free(buf2);
1698                 g_free(buf);
1699         } else
1700                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1701
1702         if (to_ml && compose->ml_post) return;
1703         if (!to_all || compose->account->protocol == A_NNTP) return;
1704
1705         if (compose->replyto) {
1706                 Xstrdup_a(replyto, compose->replyto, return);
1707                 extract_address(replyto);
1708         }
1709         if (msginfo->from) {
1710                 Xstrdup_a(from, msginfo->from, return);
1711                 extract_address(from);
1712         }
1713
1714         if (replyto && from)
1715                 cc_list = address_list_append(cc_list, from);
1716         cc_list = address_list_append(cc_list, msginfo->to);
1717         cc_list = address_list_append(cc_list, compose->cc);
1718
1719         to_table = g_hash_table_new(g_str_hash, g_str_equal);
1720         if (replyto)
1721                 g_hash_table_insert(to_table, replyto, GINT_TO_POINTER(1));
1722         if (compose->account)
1723                 g_hash_table_insert(to_table, compose->account->address,
1724                                     GINT_TO_POINTER(1));
1725
1726         /* remove address on To: and that of current account */
1727         for (cur = cc_list; cur != NULL; ) {
1728                 GSList *next = cur->next;
1729
1730                 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1731                         cc_list = g_slist_remove(cc_list, cur->data);
1732                 else
1733                         g_hash_table_insert(to_table, cur->data, cur);
1734
1735                 cur = next;
1736         }
1737         g_hash_table_destroy(to_table);
1738
1739         if (cc_list) {
1740                 for (cur = cc_list; cur != NULL; cur = cur->next)
1741                         compose_entry_append(compose, (gchar *)cur->data,
1742                                              COMPOSE_CC);
1743                 slist_free_strings(cc_list);
1744                 g_slist_free(cc_list);
1745         }
1746 }
1747
1748 #define SET_ENTRY(entry, str) \
1749 { \
1750         if (str && *str) \
1751                 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1752 }
1753
1754 #define SET_ADDRESS(type, str) \
1755 { \
1756         if (str && *str) \
1757                 compose_entry_append(compose, str, type); \
1758 }
1759
1760 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1761 {
1762         g_return_if_fail(msginfo != NULL);
1763
1764         SET_ENTRY(subject_entry, msginfo->subject);
1765         SET_ADDRESS(COMPOSE_TO, msginfo->to);
1766         SET_ADDRESS(COMPOSE_CC, compose->cc);
1767         SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1768         SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1769
1770         compose_update_priority_menu_item(compose);
1771 #if USE_GPGME   
1772         compose_update_gnupg_mode_menu_item(compose);
1773 #endif
1774         compose_show_first_last_header(compose, TRUE);
1775
1776 }
1777
1778 #undef SET_ENTRY
1779 #undef SET_ADDRESS
1780
1781 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1782 {
1783         FILE  *sigprg;
1784         gchar  *buf;
1785         size_t buf_len = 128;
1786  
1787         if (strlen(sigfile) < 2)
1788           return;
1789  
1790         sigprg = popen(sigfile+1, "r");
1791         if (sigprg) {
1792
1793                 buf = g_malloc(buf_len);
1794
1795                 if (!buf) {
1796                         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1797                         "Unable to insert signature (malloc failed)\n", -1);
1798
1799                         pclose(sigprg);
1800                         return;
1801                 }
1802
1803                 while (!feof(sigprg)) {
1804                         bzero(buf, buf_len);
1805                         fread(buf, buf_len-1, 1, sigprg);
1806                         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1807                 }
1808
1809                 g_free(buf);
1810                 pclose(sigprg);
1811         }
1812         else
1813         {
1814                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1815                 "Can't exec file: ", -1);
1816                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1817                 sigfile+1, -1);
1818         }
1819 }
1820
1821 static void compose_insert_sig(Compose *compose)
1822 {
1823         gchar *sigfile;
1824
1825         if (compose->account && compose->account->sig_path)
1826                 sigfile = g_strdup(compose->account->sig_path);
1827         else
1828                 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1829                                       DEFAULT_SIGNATURE, NULL);
1830
1831         if (!is_file_or_fifo_exist(sigfile) && sigfile[0] != '|') {
1832                 g_free(sigfile);
1833                 return;
1834         }
1835
1836         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1837         if (prefs_common.sig_sep) {
1838                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1839                                 prefs_common.sig_sep, -1);
1840                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1841                                 "\n", 1);
1842         }
1843
1844         if (sigfile[0] == '|')
1845                 compose_exec_sig(compose, sigfile);
1846         else
1847                 compose_insert_file(compose, sigfile);
1848         g_free(sigfile);
1849 }
1850
1851 static void compose_insert_file(Compose *compose, const gchar *file)
1852 {
1853         GtkSText *text = GTK_STEXT(compose->text);
1854         gchar buf[BUFFSIZE];
1855         gint len;
1856         FILE *fp;
1857
1858         g_return_if_fail(file != NULL);
1859
1860         if ((fp = fopen(file, "rb")) == NULL) {
1861                 FILE_OP_ERROR(file, "fopen");
1862                 return;
1863         }
1864
1865         gtk_stext_freeze(text);
1866
1867         while (fgets(buf, sizeof(buf), fp) != NULL) {
1868                 /* strip <CR> if DOS/Windows file,
1869                    replace <CR> with <LF> if Macintosh file. */
1870                 strcrchomp(buf);
1871                 len = strlen(buf);
1872                 if (len > 0 && buf[len - 1] != '\n') {
1873                         while (--len >= 0)
1874                                 if (buf[len] == '\r') buf[len] = '\n';
1875                 }
1876                 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1877         }
1878
1879         gtk_stext_thaw(text);
1880
1881         fclose(fp);
1882 }
1883
1884 static void compose_attach_append(Compose *compose, const gchar *file,
1885                                   const gchar *filename,
1886                                   const gchar *content_type)
1887 {
1888         AttachInfo *ainfo;
1889         gchar *text[N_ATTACH_COLS];
1890         FILE *fp;
1891         off_t size;
1892         gint row;
1893
1894         if (!is_file_exist(file)) {
1895                 g_warning("File %s doesn't exist\n", file);
1896                 return;
1897         }
1898         if ((size = get_file_size(file)) < 0) {
1899                 g_warning("Can't get file size of %s\n", file);
1900                 return;
1901         }
1902         if (size == 0) {
1903                 alertpanel_notice(_("File %s is empty."), file);
1904                 return;
1905         }
1906         if ((fp = fopen(file, "rb")) == NULL) {
1907                 alertpanel_error(_("Can't read %s."), file);
1908                 return;
1909         }
1910         fclose(fp);
1911
1912 #if 0 /* NEW COMPOSE GUI */
1913         if (!compose->use_attach) {
1914                 GtkItemFactory *ifactory;
1915                 GtkWidget *menuitem;
1916
1917                 ifactory = gtk_item_factory_from_widget(compose->menubar);
1918                 menuitem = gtk_item_factory_get_item(ifactory,
1919                                                      "/View/Attachment");
1920                 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1921                                                TRUE);
1922         }
1923 #endif
1924         ainfo = g_new0(AttachInfo, 1);
1925         ainfo->file = g_strdup(file);
1926
1927         if (content_type) {
1928                 ainfo->content_type = g_strdup(content_type);
1929                 if (!strcasecmp(content_type, "message/rfc822")) {
1930                         if (procmime_get_encoding_for_file(file) == ENC_7BIT)
1931                                 ainfo->encoding = ENC_7BIT;
1932                         else
1933                                 ainfo->encoding = ENC_8BIT;
1934                         ainfo->name = g_strdup_printf
1935                                 (_("Message: %s"),
1936                                  g_basename(filename ? filename : file));
1937                 } else {
1938                         if (!g_strncasecmp(content_type, "text", 4))
1939                                 ainfo->encoding =
1940                                         procmime_get_encoding_for_file(file);
1941                         else
1942                                 ainfo->encoding = ENC_BASE64;
1943                         ainfo->name = g_strdup
1944                                 (g_basename(filename ? filename : file));
1945                 }
1946         } else {
1947                 ainfo->content_type = procmime_get_mime_type(file);
1948                 if (!ainfo->content_type) {
1949                         ainfo->content_type =
1950                                 g_strdup("application/octet-stream");
1951                         ainfo->encoding = ENC_BASE64;
1952                 } else if (!g_strncasecmp(ainfo->content_type, "text", 4))
1953                         ainfo->encoding = procmime_get_encoding_for_file(file);
1954                 else
1955                         ainfo->encoding = ENC_BASE64;
1956                 ainfo->name = g_strdup(g_basename(filename ? filename : file)); 
1957         }
1958         ainfo->size = size;
1959
1960         text[COL_MIMETYPE] = ainfo->content_type;
1961         text[COL_SIZE] = to_human_readable(size);
1962         text[COL_NAME] = ainfo->name;
1963
1964         row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1965         gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1966 }
1967
1968 #define IS_FIRST_PART_TEXT(info) \
1969         ((info->mime_type == MIME_TEXT || info->mime_type == MIME_TEXT_HTML || \
1970           info->mime_type == MIME_TEXT_ENRICHED) || \
1971          (info->mime_type == MIME_MULTIPART && info->content_type && \
1972           !strcasecmp(info->content_type, "multipart/alternative") && \
1973           (info->children && \
1974            (info->children->mime_type == MIME_TEXT || \
1975             info->children->mime_type == MIME_TEXT_HTML || \
1976             info->children->mime_type == MIME_TEXT_ENRICHED))))
1977
1978 static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
1979 {
1980         MimeInfo *mimeinfo;
1981         MimeInfo *child;
1982         gchar *infile;
1983         gchar *outfile;
1984
1985         mimeinfo = procmime_scan_message(msginfo);
1986         if (!mimeinfo) return;
1987
1988         /* skip first text (presumably message body) */
1989         child = mimeinfo->children;
1990         if (!child || IS_FIRST_PART_TEXT(mimeinfo)) {
1991                 procmime_mimeinfo_free_all(mimeinfo);
1992                 return;
1993         }
1994
1995         if (IS_FIRST_PART_TEXT(child))
1996                 child = child->next;
1997
1998         infile = procmsg_get_message_file_path(msginfo);
1999
2000         while (child != NULL) {
2001                 if (child->children || child->mime_type == MIME_MULTIPART) {
2002                         child = procmime_mimeinfo_next(child);
2003                         continue;
2004                 }
2005                 if(child->parent && child->parent->parent
2006                 && !strcasecmp(child->parent->parent->content_type, "multipart/signed")
2007                 && child->mime_type == MIME_TEXT) {
2008                         /* this is the main text part of a signed message */
2009                         child = procmime_mimeinfo_next(child);
2010                         continue;
2011                 }
2012                 outfile = procmime_get_tmp_file_name(child);
2013                 if (procmime_get_part(outfile, infile, child) < 0)
2014                         g_warning("Can't get the part of multipart message.");
2015                 else if (compose->mode != COMPOSE_REEDIT || strcmp(child->content_type, "application/pgp-signature"))
2016                         compose_attach_append
2017                                 (compose, outfile,
2018                                  child->filename ? child->filename : child->name,
2019                                  child->content_type);
2020
2021                 child = child->next;
2022         }
2023
2024         g_free(infile);
2025         procmime_mimeinfo_free_all(mimeinfo);
2026 }
2027
2028 #undef IS_FIRST_PART_TEXT
2029
2030 #define GET_CHAR(pos, buf, len)                                              \
2031 {                                                                            \
2032         if (text->use_wchar)                                                 \
2033                 len = wctomb(buf, (wchar_t)GTK_STEXT_INDEX(text, (pos)));    \
2034         else {                                                               \
2035                 buf[0] = GTK_STEXT_INDEX(text, (pos));                       \
2036                 len = 1;                                                     \
2037         }                                                                    \
2038 }
2039
2040 #define INDENT_CHARS    ">|#"
2041 #define SPACE_CHARS     " \t"
2042
2043 static void compose_wrap_line(Compose *compose)
2044 {
2045         GtkSText *text = GTK_STEXT(compose->text);
2046         gint ch_len, last_ch_len;
2047         gchar cbuf[MB_LEN_MAX], last_ch;
2048         guint text_len;
2049         guint line_end;
2050         guint quoted;
2051         gint p_start, p_end;
2052         gint line_pos, cur_pos;
2053         gint line_len, cur_len;
2054
2055         gtk_stext_freeze(text);
2056
2057         text_len = gtk_stext_get_length(text);
2058
2059         /* check to see if the point is on the paragraph mark (empty line). */
2060         cur_pos = gtk_stext_get_point(text);
2061         GET_CHAR(cur_pos, cbuf, ch_len);
2062         if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
2063                 if (cur_pos == 0)
2064                         goto compose_end; /* on the paragraph mark */
2065                 GET_CHAR(cur_pos - 1, cbuf, ch_len);
2066                 if (ch_len == 1 && *cbuf == '\n')
2067                         goto compose_end; /* on the paragraph mark */
2068         }
2069
2070         /* find paragraph start. */
2071         line_end = quoted = 0;
2072         for (p_start = cur_pos; p_start >= 0; --p_start) {
2073                 GET_CHAR(p_start, cbuf, ch_len);
2074                 if (ch_len == 1 && *cbuf == '\n') {
2075                         if (quoted)
2076                                 goto compose_end; /* quoted part */
2077                         if (line_end) {
2078                                 p_start += 2;
2079                                 break;
2080                         }
2081                         line_end = 1;
2082                 } else {
2083                         if (ch_len == 1 
2084                             && strchr(prefs_common.quote_chars, *cbuf))
2085                                 quoted = 1;
2086                         else if (ch_len != 1 || !isspace(*cbuf))
2087                                 quoted = 0;
2088
2089                         line_end = 0;
2090                 }
2091         }
2092         if (p_start < 0)
2093                 p_start = 0;
2094
2095         /* find paragraph end. */
2096         line_end = 0;
2097         for (p_end = cur_pos; p_end < text_len; p_end++) {
2098                 GET_CHAR(p_end, cbuf, ch_len);
2099                 if (ch_len == 1 && *cbuf == '\n') {
2100                         if (line_end) {
2101                                 p_end -= 1;
2102                                 break;
2103                         }
2104                         line_end = 1;
2105                 } else {
2106                         if (line_end && ch_len == 1 &&
2107                             strchr(prefs_common.quote_chars, *cbuf))
2108                                 goto compose_end; /* quoted part */
2109
2110                         line_end = 0;
2111                 }
2112         }
2113         if (p_end >= text_len)
2114                 p_end = text_len;
2115
2116         if (p_start >= p_end)
2117                 goto compose_end;
2118
2119         line_len = cur_len = 0;
2120         last_ch_len = 0;
2121         last_ch = '\0';
2122         line_pos = p_start;
2123         for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2124                 guint space = 0;
2125
2126                 GET_CHAR(cur_pos, cbuf, ch_len);
2127
2128                 if (ch_len < 0) {
2129                         cbuf[0] = '\0';
2130                         ch_len = 1;
2131                 }
2132
2133                 if (ch_len == 1 && isspace(*cbuf))
2134                         space = 1;
2135
2136                 if (ch_len == 1 && *cbuf == '\n') {
2137                         guint replace = 0;
2138                         if (last_ch_len == 1 && !isspace(last_ch)) {
2139                                 if (cur_pos + 1 < p_end) {
2140                                         GET_CHAR(cur_pos + 1, cbuf, ch_len);
2141                                         if (ch_len == 1 && !isspace(*cbuf))
2142                                                 replace = 1;
2143                                 }
2144                         }
2145                         gtk_stext_set_point(text, cur_pos + 1);
2146                         gtk_stext_backward_delete(text, 1);
2147                         if (replace) {
2148                                 gtk_stext_set_point(text, cur_pos);
2149                                 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2150                                 space = 1;
2151                         }
2152                         else {
2153                                 p_end--;
2154                                 cur_pos--;
2155                                 continue;
2156                         }
2157                 }
2158
2159                 last_ch_len = ch_len;
2160                 last_ch = *cbuf;
2161
2162                 if (space) {
2163                         line_pos = cur_pos + 1;
2164                         line_len = cur_len + ch_len;
2165                 }
2166
2167                 if (cur_len + ch_len > prefs_common.linewrap_len &&
2168                     line_len > 0) {
2169                         gint tlen = ch_len;
2170
2171                         GET_CHAR(line_pos - 1, cbuf, ch_len);
2172                         if (ch_len == 1 && isspace(*cbuf)) {
2173                                 gtk_stext_set_point(text, line_pos);
2174                                 gtk_stext_backward_delete(text, 1);
2175                                 p_end--;
2176                                 cur_pos--;
2177                                 line_pos--;
2178                                 cur_len--;
2179                                 line_len--;
2180                         }
2181                         ch_len = tlen;
2182
2183                         gtk_stext_set_point(text, line_pos);
2184                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2185                         p_end++;
2186                         cur_pos++;
2187                         line_pos++;
2188                         cur_len = cur_len - line_len + ch_len;
2189                         line_len = 0;
2190                         continue;
2191                 }
2192
2193                 if (ch_len > 1) {
2194                         line_pos = cur_pos + 1;
2195                         line_len = cur_len + ch_len;
2196                 }
2197                 cur_len += ch_len;
2198         }
2199
2200 compose_end:
2201         gtk_stext_thaw(text);
2202 }
2203
2204 #undef WRAP_DEBUG
2205 #ifdef WRAP_DEBUG
2206 /* Darko: used when I debug wrapping */
2207 void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
2208 {
2209         gint i, clen;
2210         gchar cbuf[MB_LEN_MAX];
2211
2212         printf("%d [", pos);
2213         for (i = pos; i < tlen; i++) {
2214                 GET_CHAR(i, cbuf, clen);
2215                 if (clen < 0) break;
2216                 if (breakoncr && clen == 1 && cbuf[0] == '\n')
2217                         break;
2218                 fwrite(cbuf, clen, 1, stdout);
2219         }
2220         printf("]\n");
2221 }
2222 #endif
2223
2224 typedef enum {
2225         WAIT_FOR_SPACE,
2226         WAIT_FOR_INDENT_CHAR,
2227         WAIT_FOR_INDENT_CHAR_OR_SPACE
2228 } IndentState;
2229
2230 /* return indent length, we allow:
2231    > followed by spaces/tabs
2232    | followed by spaces/tabs
2233    uppercase characters immediately followed by >,
2234    and the repeating sequences of the above */
2235 /* return indent length */
2236 static guint get_indent_length(GtkSText *text, guint start_pos, guint text_len)
2237 {
2238         guint i_len = 0;
2239         guint i, ch_len, alnum_cnt = 0;
2240         IndentState state = WAIT_FOR_INDENT_CHAR;
2241         gchar cbuf[MB_LEN_MAX];
2242         gboolean is_space;
2243         gboolean is_indent;
2244
2245         for (i = start_pos; i < text_len; i++) {
2246                 GET_CHAR(i, cbuf, ch_len);
2247                 if (ch_len > 1)
2248                         break;
2249
2250                 if (cbuf[0] == '\n')
2251                         break;
2252
2253                 is_indent = strchr(prefs_common.quote_chars, cbuf[0]) ? TRUE : FALSE;
2254                 is_space = strchr(SPACE_CHARS, cbuf[0]) ? TRUE : FALSE;
2255
2256                 switch (state) {
2257                 case WAIT_FOR_SPACE:
2258                         if (is_space == FALSE)
2259                                 goto out;
2260                         state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2261                         break;
2262                 case WAIT_FOR_INDENT_CHAR_OR_SPACE:
2263                         if (is_indent == FALSE && is_space == FALSE &&
2264                             !isupper(cbuf[0]))
2265                                 goto out;
2266                         if (is_space == TRUE) {
2267                                 alnum_cnt = 0;
2268                                 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2269                         } else if (is_indent == TRUE) {
2270                                 alnum_cnt = 0;
2271                                 state = WAIT_FOR_SPACE;
2272                         } else {
2273                                 alnum_cnt++;
2274                                 state = WAIT_FOR_INDENT_CHAR;
2275                         }
2276                         break;
2277                 case WAIT_FOR_INDENT_CHAR:
2278                         if (is_indent == FALSE && !isupper(cbuf[0]))
2279                                 goto out;
2280                         if (is_indent == TRUE) {
2281                                 if (alnum_cnt > 0 
2282                                     && !strchr(prefs_common.quote_chars, cbuf[0]))
2283                                         goto out;
2284                                 alnum_cnt = 0;
2285                                 state = WAIT_FOR_SPACE;
2286                         } else {
2287                                 alnum_cnt++;
2288                         }
2289                         break;
2290                 }
2291
2292                 i_len++;
2293         }
2294
2295 out:
2296         if ((i_len > 0) && (state == WAIT_FOR_INDENT_CHAR))
2297                 i_len -= alnum_cnt;
2298
2299         return i_len;
2300 }
2301
2302 /* insert quotation string when line was wrapped */
2303 static guint ins_quote(GtkSText *text, guint indent_len,
2304                        guint prev_line_pos, guint text_len,
2305                        gchar *quote_fmt)
2306 {
2307         guint i, ins_len = 0;
2308         gchar ch;
2309
2310         if (indent_len) {
2311                 for (i = 0; i < indent_len; i++) {
2312                         ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2313                         gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2314                 }
2315                 ins_len = indent_len;
2316         }
2317
2318         return ins_len;
2319 }
2320
2321 /* check if we should join the next line */
2322 static gboolean join_next_line(GtkSText *text, guint start_pos, guint tlen,
2323                                guint prev_ilen, gboolean autowrap)
2324 {
2325         guint indent_len, ch_len;
2326         gboolean do_join = FALSE;
2327         gchar cbuf[MB_LEN_MAX];
2328
2329         indent_len = get_indent_length(text, start_pos, tlen);
2330
2331         if ((autowrap || indent_len > 0) && indent_len == prev_ilen) {
2332                 GET_CHAR(start_pos + indent_len, cbuf, ch_len);
2333                 if (ch_len > 0 && (cbuf[0] != '\n'))
2334                         do_join = TRUE;
2335         }
2336
2337         return do_join;
2338 }
2339
2340 static void compose_wrap_line_all(Compose *compose)
2341 {
2342         compose_wrap_line_all_full(compose, FALSE);
2343 }
2344
2345 #define STEXT_FREEZE() \
2346         if (!frozen) { gtk_stext_freeze(text); frozen = TRUE; }
2347
2348 static void compose_wrap_line_all_full(Compose *compose, gboolean autowrap)
2349 {
2350         GtkSText *text = GTK_STEXT(compose->text);
2351         guint tlen;
2352         guint line_pos = 0, cur_pos = 0, p_pos = 0;
2353         gint line_len = 0, cur_len = 0;
2354         gint ch_len;
2355         gboolean is_new_line = TRUE, do_delete = FALSE;
2356         guint i_len = 0;
2357         gboolean linewrap_quote = TRUE;
2358         gboolean set_editable_pos = FALSE;
2359         gint editable_pos = 0;
2360         gboolean frozen = FALSE;
2361         guint linewrap_len = prefs_common.linewrap_len;
2362         gchar *qfmt = prefs_common.quotemark;
2363         gchar cbuf[MB_LEN_MAX];
2364
2365         tlen = gtk_stext_get_length(text);
2366
2367         for (; cur_pos < tlen; cur_pos++) {
2368                 /* mark position of new line - needed for quotation wrap */
2369                 if (is_new_line) {
2370                         if (linewrap_quote)
2371                                 i_len = get_indent_length(text, cur_pos, tlen);
2372
2373                         is_new_line = FALSE;
2374                         p_pos = cur_pos;
2375 #ifdef WRAP_DEBUG
2376                         g_print("new line i_len=%d p_pos=", i_len);
2377                         dump_text(text, p_pos, tlen, 1);
2378 #endif
2379                 }
2380
2381                 GET_CHAR(cur_pos, cbuf, ch_len);
2382
2383                 /* fix line length for tabs */
2384                 if (ch_len == 1 && *cbuf == '\t') {
2385                         guint tab_width = text->default_tab_width;
2386                         guint tab_offset = line_len % tab_width;
2387
2388 #ifdef WRAP_DEBUG
2389                         g_print("found tab at pos=%d line_len=%d ", cur_pos,
2390                                 line_len);
2391 #endif
2392                         if (tab_offset) {
2393                                 line_len += tab_width - tab_offset - 1;
2394                                 cur_len = line_len;
2395                         }
2396 #ifdef WRAP_DEBUG
2397                         printf("new_len=%d\n", line_len);
2398 #endif
2399                 }
2400
2401                 /* we have encountered line break */
2402                 if (ch_len == 1 && *cbuf == '\n') {
2403                         gint clen;
2404                         gchar cb[MB_LEN_MAX];
2405
2406                         /* should we join the next line */
2407                         if ((autowrap || i_len != cur_len) && do_delete &&
2408                             join_next_line
2409                                 (text, cur_pos + 1, tlen, i_len, autowrap))
2410                                 do_delete = TRUE;
2411                         else
2412                                 do_delete = FALSE;
2413
2414 #ifdef WRAP_DEBUG
2415                         g_print("found CR at %d do_del is %d next line is ",
2416                                cur_pos, do_delete);
2417                         dump_text(text, cur_pos + 1, tlen, 1);
2418 #endif
2419
2420                         /* skip delete if it is continuous URL */
2421                         if (do_delete && (line_pos - p_pos <= i_len) &&
2422                             gtk_stext_is_uri_string(text, line_pos, tlen))
2423                                 do_delete = FALSE;
2424
2425 #ifdef WRAP_DEBUG
2426                         g_print("l_len=%d wrap_len=%d do_del=%d\n",
2427                                 line_len, linewrap_len, do_delete);
2428 #endif
2429                         /* should we delete to perform smart wrapping */
2430                         if (line_len < linewrap_len && do_delete) {
2431                                 STEXT_FREEZE();
2432                                 /* get rid of newline */
2433                                 gtk_stext_set_point(text, cur_pos);
2434                                 gtk_stext_forward_delete(text, 1);
2435                                 tlen--;
2436
2437                                 /* if text starts with quote fmt or with
2438                                    indent string, delete them */
2439                                 if (i_len) {
2440                                         guint ilen;
2441                                         ilen =  gtk_stext_str_compare_n
2442                                                 (text, cur_pos, p_pos, i_len,
2443                                                  tlen);
2444                                         if (ilen) {
2445                                                 gtk_stext_forward_delete
2446                                                         (text, ilen);
2447                                                 tlen -= ilen;
2448                                         }
2449                                 }
2450
2451                                 GET_CHAR(cur_pos, cb, clen);
2452
2453                                 /* insert space if it's alphanumeric */
2454                                 if ((cur_pos != line_pos) &&
2455                                     ((clen > 1) || isalnum(cb[0]))) {
2456                                         gtk_stext_insert(text, NULL, NULL,
2457                                                         NULL, " ", 1);
2458                                         tlen++;
2459                                 }
2460
2461                                 /* and start over with current line */
2462                                 cur_pos = p_pos - 1;
2463                                 line_pos = cur_pos;
2464                                 line_len = cur_len = 0;
2465                                 do_delete = FALSE;
2466                                 is_new_line = TRUE;
2467 #ifdef WRAP_DEBUG
2468                                 g_print("after delete l_pos=");
2469                                 dump_text(text, line_pos, tlen, 1);
2470 #endif
2471                                 continue;
2472                         }
2473
2474                         /* mark new line beginning */
2475                         line_pos = cur_pos + 1;
2476                         line_len = cur_len = 0;
2477                         do_delete = FALSE;
2478                         is_new_line = TRUE;
2479                         continue;
2480                 }
2481
2482                 if (ch_len < 0) {
2483                         cbuf[0] = '\0';
2484                         ch_len = 1;
2485                 }
2486
2487                 /* possible line break */
2488                 if (ch_len == 1 && isspace(*cbuf)) {
2489                         line_pos = cur_pos + 1;
2490                         line_len = cur_len + ch_len;
2491                 }
2492
2493                 /* are we over wrapping length set in preferences ? */
2494                 if (cur_len + ch_len > linewrap_len) {
2495                         gint clen;
2496
2497 #ifdef WRAP_DEBUG
2498                         g_print("should wrap cur_pos=%d ", cur_pos);
2499                         dump_text(text, p_pos, tlen, 1);
2500                         dump_text(text, line_pos, tlen, 1);
2501 #endif
2502                         /* force wrapping if it is one long word but not URL */
2503                         if (line_pos - p_pos <= i_len)
2504                                 if (!gtk_stext_is_uri_string
2505                                     (text, line_pos, tlen))
2506                                         line_pos = cur_pos - 1;
2507 #ifdef WRAP_DEBUG
2508                         g_print("new line_pos=%d\n", line_pos);
2509 #endif
2510
2511                         GET_CHAR(line_pos - 1, cbuf, clen);
2512
2513                         /* if next character is space delete it */
2514                         if (clen == 1 && isspace(*cbuf)) {
2515                                 if (p_pos + i_len != line_pos ||
2516                                     !gtk_stext_is_uri_string
2517                                         (text, line_pos, tlen)) {
2518                                         STEXT_FREEZE();
2519                                         /* workaround for correct cursor
2520                                            position */
2521                                         if (set_editable_pos == FALSE) {
2522                                                 editable_pos = gtk_editable_get_position(GTK_EDITABLE(text));
2523                                                 if (editable_pos == line_pos)
2524                                                         set_editable_pos = TRUE;
2525                                         }
2526                                         gtk_stext_set_point(text, line_pos);
2527                                         gtk_stext_backward_delete(text, 1);
2528                                         tlen--;
2529                                         cur_pos--;
2530                                         line_pos--;
2531                                         cur_len--;
2532                                         line_len--;
2533                                 }
2534                         }
2535
2536                         /* if it is URL at beginning of line don't wrap */
2537                         if (p_pos + i_len == line_pos &&
2538                             gtk_stext_is_uri_string(text, line_pos, tlen)) {
2539 #ifdef WRAP_DEBUG
2540                                 g_print("found URL at ");
2541                                 dump_text(text, line_pos, tlen, 1);
2542 #endif
2543                                 continue;
2544                         }
2545
2546                         /* insert CR */
2547                         STEXT_FREEZE();
2548                         gtk_stext_set_point(text, line_pos);
2549                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2550                         /* gtk_stext_compact_buffer(text); */
2551                         tlen++;
2552                         line_pos++;
2553                         /* for loop will increase it */
2554                         cur_pos = line_pos - 1;
2555                         /* start over with current line */
2556                         is_new_line = TRUE;
2557                         line_len = cur_len = 0;
2558                         if (autowrap || i_len > 0)
2559                                 do_delete = TRUE;
2560                         else
2561                                 do_delete = FALSE;
2562 #ifdef WRAP_DEBUG
2563                         g_print("after CR insert ");
2564                         dump_text(text, line_pos, tlen, 1);
2565                         dump_text(text, cur_pos, tlen, 1);
2566 #endif
2567
2568                         /* should we insert quotation ? */
2569                         if (linewrap_quote && i_len) {
2570                                 /* only if line is not already quoted  */
2571                                 if (!gtk_stext_str_compare
2572                                         (text, line_pos, tlen, qfmt)) {
2573                                         guint ins_len;
2574
2575                                         if (line_pos - p_pos > i_len) {
2576                                                 ins_len = ins_quote
2577                                                         (text, i_len, p_pos,
2578                                                          tlen, qfmt);
2579                                                 tlen += ins_len;
2580                                         }
2581 #ifdef WRAP_DEBUG
2582                                         g_print("after quote insert ");
2583                                         dump_text(text, line_pos, tlen, 1);
2584 #endif
2585                                 }
2586                         }
2587                         continue;
2588                 }
2589
2590                 if (ch_len > 1) {
2591                         line_pos = cur_pos + 1;
2592                         line_len = cur_len + ch_len;
2593                 }
2594                 /* advance to next character in buffer */
2595                 cur_len += ch_len;
2596         }
2597
2598         if (frozen)
2599                 gtk_stext_thaw(text);
2600
2601         if (set_editable_pos && editable_pos <= tlen)
2602                 gtk_editable_set_position(GTK_EDITABLE(text), editable_pos);
2603 }
2604
2605 #undef STEXT_FREEZE
2606 #undef GET_CHAR
2607
2608 static void compose_set_title(Compose *compose)
2609 {
2610         gchar *str;
2611         gchar *edited;
2612
2613         edited = compose->modified ? _(" [Edited]") : "";
2614         if (compose->account && compose->account->address)
2615                 str = g_strdup_printf(_("%s - Compose message%s"),
2616                                       compose->account->address, edited);
2617         else
2618                 str = g_strdup_printf(_("Compose message%s"), edited);
2619         gtk_window_set_title(GTK_WINDOW(compose->window), str);
2620         g_free(str);
2621 }
2622
2623 /**
2624  * compose_current_mail_account:
2625  * 
2626  * Find a current mail account (the currently selected account, or the
2627  * default account, if a news account is currently selected).  If a
2628  * mail account cannot be found, display an error message.
2629  * 
2630  * Return value: Mail account, or NULL if not found.
2631  **/
2632 static PrefsAccount *
2633 compose_current_mail_account(void)
2634 {
2635         PrefsAccount *ac;
2636
2637         if (cur_account && cur_account->protocol != A_NNTP)
2638                 ac = cur_account;
2639         else {
2640                 ac = account_get_default();
2641                 if (!ac || ac->protocol == A_NNTP) {
2642                         alertpanel_error(_("Account for sending mail is not specified.\n"
2643                                            "Please select a mail account before sending."));
2644                         return NULL;
2645                 }
2646         }
2647         return ac;
2648 }
2649
2650 static void compose_select_account(Compose *compose, PrefsAccount *account)
2651 {
2652         GtkWidget *menuitem;
2653         GtkItemFactory *ifactory;
2654
2655         g_return_if_fail(account != NULL);
2656
2657         compose->account = account;
2658
2659         compose_set_title(compose);
2660
2661         ifactory = gtk_item_factory_from_widget(compose->menubar);
2662 #if 0
2663         if (account->protocol == A_NNTP) {
2664                 gtk_widget_show(compose->newsgroups_hbox);
2665                 gtk_widget_show(compose->newsgroups_entry);
2666                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 4);
2667                 compose->use_newsgroups = TRUE;
2668
2669                 menuitem = gtk_item_factory_get_item(ifactory, "/View/To");
2670                 gtk_check_menu_item_set_active
2671                         (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2672                 gtk_widget_set_sensitive(menuitem, TRUE);
2673                 menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
2674                 gtk_check_menu_item_set_active
2675                         (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2676                 gtk_widget_set_sensitive(menuitem, TRUE);
2677
2678                 menu_set_sensitive(ifactory, "/View/Followup to", TRUE);
2679         } else {
2680                 gtk_widget_hide(compose->newsgroups_hbox);
2681                 gtk_widget_hide(compose->newsgroups_entry);
2682                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 0);
2683                 gtk_widget_queue_resize(compose->table_vbox);
2684                 compose->use_newsgroups = FALSE;
2685
2686                 menuitem = gtk_item_factory_get_item(ifactory, "/View/To");
2687                 gtk_check_menu_item_set_active
2688                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2689                 gtk_widget_set_sensitive(menuitem, FALSE);
2690                 menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
2691                 gtk_check_menu_item_set_active
2692                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2693                 gtk_widget_set_sensitive(menuitem, FALSE);
2694
2695                 menuitem = gtk_item_factory_get_item(ifactory, "/View/Followup to");
2696                 gtk_check_menu_item_set_active
2697                         (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2698                 gtk_widget_set_sensitive(menuitem, FALSE);
2699         }
2700
2701         if (account->set_autocc) {
2702                 compose_entry_show(compose, COMPOSE_ENTRY_CC);
2703                 if (account->auto_cc && compose->mode != COMPOSE_REEDIT)
2704                         compose_entry_set(compose, account->auto_cc,
2705                                           COMPOSE_ENTRY_CC);
2706         }
2707         if (account->set_autobcc) {
2708                 compose_entry_show(compose, COMPOSE_ENTRY_BCC);
2709                 if (account->auto_bcc && compose->mode != COMPOSE_REEDIT)
2710                         compose_entry_set(compose, account->auto_bcc,
2711                                           COMPOSE_ENTRY_BCC);
2712         }
2713         if (account->set_autoreplyto) {
2714                 compose_entry_show(compose, COMPOSE_ENTRY_REPLY_TO);
2715                 if (account->auto_replyto && compose->mode != COMPOSE_REEDIT)
2716                         compose_entry_set(compose, account->auto_replyto,
2717                                           COMPOSE_ENTRY_REPLY_TO);
2718         }
2719
2720         menuitem = gtk_item_factory_get_item(ifactory, "/View/Ruler");
2721         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2722                                        prefs_common.show_ruler);
2723 #endif
2724
2725 #if USE_GPGME
2726         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Sign");
2727         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2728                                        account->default_sign);
2729         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Encrypt");
2730         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2731                                        account->default_encrypt);
2732                                        
2733         activate_gnupg_mode(compose, account);          
2734 #endif /* USE_GPGME */
2735 }
2736
2737 gboolean compose_check_for_valid_recipient(Compose *compose) {
2738         gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
2739         gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
2740         gboolean recipient_found = FALSE;
2741         GSList *list;
2742         gchar **strptr;
2743
2744         /* free to and newsgroup list */
2745         slist_free_strings(compose->to_list);
2746         g_slist_free(compose->to_list);
2747         compose->to_list = NULL;
2748                         
2749         slist_free_strings(compose->newsgroup_list);
2750         g_slist_free(compose->newsgroup_list);
2751         compose->newsgroup_list = NULL;
2752
2753         /* search header entries for to and newsgroup entries */
2754         for (list = compose->header_list; list; list = list->next) {
2755                 gchar *header;
2756                 gchar *entry;
2757                 header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
2758                 entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
2759                 g_strstrip(entry);
2760                 if (entry[0] != '\0') {
2761                         for (strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
2762                                 if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2763                                         compose->to_list = address_list_append(compose->to_list, entry);
2764                                         recipient_found = TRUE;
2765                                 }
2766                         }
2767                         for (strptr = recipient_headers_news; *strptr != NULL; strptr++) {
2768                                 if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2769                                         compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
2770                                         recipient_found = TRUE;
2771                                 }
2772                         }
2773                 }
2774                 g_free(header);
2775                 g_free(entry);
2776         }
2777         return recipient_found;
2778 }
2779
2780 static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
2781 {
2782         gchar *str;
2783
2784         if (compose_check_for_valid_recipient(compose) == FALSE) {
2785                 alertpanel_error(_("Recipient is not specified."));
2786                 return FALSE;
2787         }
2788
2789         str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
2790         if (*str == '\0' && check_subject == TRUE) {
2791                 AlertValue aval;
2792
2793                 aval = alertpanel(_("Send"),
2794                                   _("Subject is empty. Send it anyway?"),
2795                                   _("Yes"), _("No"), NULL);
2796                 if (aval != G_ALERTDEFAULT)
2797                         return FALSE;
2798         }
2799
2800         return TRUE;
2801 }
2802
2803 gint compose_send(Compose *compose)
2804 {
2805         gint msgnum;
2806         FolderItem *folder;
2807         gint val;
2808         gchar *msgpath;
2809
2810         if (compose_check_entries(compose, TRUE) == FALSE)
2811                 return -1;
2812
2813         val = compose_queue(compose, &msgnum, &folder);
2814         if (val) {
2815                 alertpanel_error(_("Could not queue message for sending"));
2816                 return -1;
2817         }
2818         
2819         msgpath = folder_item_fetch_msg(folder, msgnum);
2820         val = procmsg_send_message_queue(msgpath);
2821         g_free(msgpath);
2822
2823         folder_item_remove_msg(folder, msgnum);
2824
2825         return val;
2826 }
2827
2828 #if 0 /* compose restructure */
2829 gint compose_send(Compose *compose)
2830 {
2831         gchar tmp[MAXPATHLEN + 1];
2832         gint ok = 0;
2833         static gboolean lock = FALSE;
2834
2835         if (lock) return 1;
2836
2837         g_return_val_if_fail(compose->account != NULL, -1);
2838
2839         lock = TRUE;
2840
2841         if (compose_check_entries(compose, TRUE) == FALSE) {
2842                 lock = FALSE;
2843                 return 1;
2844         }
2845
2846         /* write to temporary file */
2847         g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg.%08x",
2848                    get_tmp_dir(), G_DIR_SEPARATOR, (gint)compose);
2849
2850         if (prefs_common.linewrap_at_send)
2851                 compose_wrap_line_all(compose);
2852
2853         if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2854                 lock = FALSE;
2855                 return -1;
2856         }
2857
2858         if (!compose->to_list && !compose->newsgroup_list) {
2859                 g_warning("can't get recipient list.");
2860                 unlink(tmp);
2861                 lock = FALSE;
2862                 return -1;
2863         }
2864
2865         if (compose->to_list) {
2866                 PrefsAccount *ac;
2867
2868 #if 0 /* NEW COMPOSE GUI */
2869                 if (compose->account->protocol != A_NNTP)
2870                         ac = compose->account;
2871                 else {
2872                         ac = account_find_from_address(compose->account->address);
2873                         if (!ac) {
2874                                 if (cur_account && cur_account->protocol != A_NNTP)
2875                                         ac = cur_account;
2876                                 else
2877                                         ac = account_get_default();
2878                         }
2879                         if (!ac || ac->protocol == A_NNTP) {
2880                                 alertpanel_error(_("Account for sending mail is not specified.\n"
2881                                                    "Please select a mail account before sending."));
2882                                 unlink(tmp);
2883                                 lock = FALSE;
2884                                 return -1;
2885                         }
2886                 }
2887 #endif
2888                 ac = compose->account;
2889
2890                 ok = send_message(tmp, ac, compose->to_list);
2891         }
2892
2893         if (ok == 0 && compose->newsgroup_list) {
2894                 ok = news_post(FOLDER(compose->account->folder), tmp);
2895                 if (ok < 0) {
2896                         alertpanel_error(_("Error occurred while posting the message to %s ."),
2897                                          compose->account->nntp_server);
2898                         unlink(tmp);
2899                         lock = FALSE;
2900                         return -1;
2901                 }
2902         }
2903
2904         /* queue message if failed to send */
2905         if (ok < 0) {
2906                 if (prefs_common.queue_msg) {
2907                         AlertValue val;
2908
2909                         val = alertpanel
2910                                 (_("Queueing"),
2911                                  _("Error occurred while sending the message.\n"
2912                                    "Put this message into queue folder?"),
2913                                  _("OK"), _("Cancel"), NULL);
2914                         if (G_ALERTDEFAULT == val) {
2915                                 ok = compose_queue(compose, tmp);
2916                                 if (ok < 0)
2917                                         alertpanel_error(_("Can't queue the message."));
2918                         }
2919                 } else
2920                         alertpanel_error_log(_("Error occurred while sending the message."));
2921         } else {
2922                 if (compose->mode == COMPOSE_REEDIT) {
2923                         compose_remove_reedit_target(compose);
2924                 }
2925                 /* save message to outbox */
2926                 if (prefs_common.savemsg) {
2927                         FolderItem *outbox;
2928
2929                         outbox = account_get_special_folder
2930                                 (compose->account, F_OUTBOX);
2931                         if (procmsg_save_to_outbox(outbox, tmp, FALSE) < 0)
2932                                 alertpanel_error
2933                                         (_("Can't save the message to Sent."));
2934                 }
2935         }
2936
2937         unlink(tmp);
2938         lock = FALSE;
2939         return ok;
2940 }
2941 #endif
2942
2943 static gboolean compose_use_attach(Compose *compose) {
2944     return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2945 }
2946
2947 static gint compose_redirect_write_headers_from_headerlist(Compose *compose, 
2948                                                            FILE *fp)
2949 {
2950         gchar buf[BUFFSIZE];
2951         gchar *str;
2952         gboolean first_address;
2953         GSList *list;
2954         ComposeHeaderEntry *headerentry;
2955         gchar *headerentryname;
2956         gchar *cc_hdr;
2957         gchar *to_hdr;
2958
2959         debug_print("Writing redirect header\n");
2960
2961         cc_hdr = prefs_common.trans_hdr ? _("Cc:") : "Cc:";
2962         to_hdr = prefs_common.trans_hdr ? _("To:") : "To:";
2963
2964         first_address = TRUE;
2965         for (list = compose->header_list; list; list = list->next) {
2966                 headerentry = ((ComposeHeaderEntry *)list->data);
2967                 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
2968
2969                 if (g_strcasecmp(headerentryname, cc_hdr) == 0 
2970                    || g_strcasecmp(headerentryname, to_hdr) == 0) {
2971                         str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
2972                         Xstrdup_a(str, str, return -1);
2973                         g_strstrip(str);
2974                         if (str[0] != '\0') {
2975                                 compose_convert_header
2976                                         (buf, sizeof(buf), str,
2977                                         strlen("Resent-To") + 2);
2978                                 if (first_address) {
2979                                         fprintf(fp, "Resent-To: ");
2980                                         first_address = FALSE;
2981                                 } else {
2982                                         fprintf(fp, ",");
2983                                 }
2984                                 fprintf(fp, "%s", buf);
2985                         }
2986                 }
2987         }
2988         /* if (!first_address) { */
2989         fprintf(fp, "\n");
2990         /* } */
2991
2992         return(0);
2993 }
2994
2995 static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
2996 {
2997         gchar buf[BUFFSIZE];
2998         gchar *str;
2999         /* struct utsname utsbuf; */
3000
3001         g_return_val_if_fail(fp != NULL, -1);
3002         g_return_val_if_fail(compose->account != NULL, -1);
3003         g_return_val_if_fail(compose->account->address != NULL, -1);
3004
3005         /* Resent-Date */
3006         get_rfc822_date(buf, sizeof(buf));
3007         fprintf(fp, "Resent-Date: %s\n", buf);
3008
3009         /* Resent-From */
3010         if (compose->account->name && *compose->account->name) {
3011                 compose_convert_header
3012                         (buf, sizeof(buf), compose->account->name,
3013                          strlen("From: "));
3014                 fprintf(fp, "Resent-From: %s <%s>\n",
3015                         buf, compose->account->address);
3016         } else
3017                 fprintf(fp, "Resent-From: %s\n", compose->account->address);
3018
3019         /* Subject */
3020         str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3021         if (*str != '\0') {
3022                 Xstrdup_a(str, str, return -1);
3023                 g_strstrip(str);
3024                 if (*str != '\0') {
3025                         compose_convert_header(buf, sizeof(buf), str,
3026                                                strlen("Subject: "));
3027                         fprintf(fp, "Subject: %s\n", buf);
3028                 }
3029         }
3030
3031         /* Resent-Message-ID */
3032         if (compose->account->gen_msgid) {
3033                 compose_generate_msgid(compose, buf, sizeof(buf));
3034                 fprintf(fp, "Resent-Message-Id: <%s>\n", buf);
3035                 compose->msgid = g_strdup(buf);
3036         }
3037
3038         compose_redirect_write_headers_from_headerlist(compose, fp);
3039
3040         /* separator between header and body */
3041         fputs("\n", fp);
3042
3043         return 0;
3044 }
3045
3046 static gint compose_redirect_write_to_file(Compose *compose, const gchar *file)
3047 {
3048         FILE *fp;
3049         FILE *fdest;
3050         size_t len;
3051         gchar buf[BUFFSIZE];
3052
3053         if ((fp = fopen(compose->redirect_filename, "rb")) == NULL) {
3054                 FILE_OP_ERROR(file, "fopen");
3055                 return -1;
3056         }
3057
3058         if ((fdest = fopen(file, "wb")) == NULL) {
3059                 FILE_OP_ERROR(file, "fopen");
3060                 fclose(fp);
3061                 return -1;
3062         }
3063
3064         /* chmod for security */
3065         if (change_file_mode_rw(fdest, file) < 0) {
3066                 FILE_OP_ERROR(file, "chmod");
3067                 g_warning("can't change file mode\n");
3068         }
3069
3070         while (procheader_get_unfolded_line(buf, sizeof(buf), fp)) {
3071                 /* should filter returnpath, delivered-to */
3072                 if (g_strncasecmp(buf, "Return-Path:",
3073                                    strlen("Return-Path:")) == 0 ||
3074                     g_strncasecmp(buf, "Delivered-To:",
3075                                   strlen("Delivered-To:")) == 0 ||
3076                     g_strncasecmp(buf, "Received:",
3077                                   strlen("Received:")) == 0 ||
3078                     g_strncasecmp(buf, "Subject:",
3079                                   strlen("Subject:")) == 0 ||
3080                     g_strncasecmp(buf, "X-UIDL:",
3081                                   strlen("X-UIDL:")) == 0)
3082                         continue;
3083
3084                 if (fputs(buf, fdest) == -1)
3085                         goto error;
3086
3087                 if (!prefs_common.redirect_keep_from) {
3088                         if (g_strncasecmp(buf, "From:",
3089                                           strlen("From:")) == 0) {
3090                                 fputs(" (by way of ", fdest);
3091                                 if (compose->account->name
3092                                     && *compose->account->name) {
3093                                         compose_convert_header
3094                                                 (buf, sizeof(buf),
3095                                                  compose->account->name,
3096                                                  strlen("From: "));
3097                                         fprintf(fdest, "%s <%s>",
3098                                                 buf,
3099                                                 compose->account->address);
3100                                 } else
3101                                         fprintf(fdest, "%s",
3102                                                 compose->account->address);
3103                                 fputs(")", fdest);
3104                         }
3105                 }
3106
3107                 if (fputs("\n", fdest) == -1)
3108                         goto error;
3109         }
3110
3111         compose_redirect_write_headers(compose, fdest);
3112
3113         while ((len = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
3114                 if (fwrite(buf, sizeof(gchar), len, fdest) != len) {
3115                         FILE_OP_ERROR(file, "fwrite");
3116                         goto error;
3117                 }
3118         }
3119
3120         fclose(fp);
3121         if (fclose(fdest) == EOF) {
3122                 FILE_OP_ERROR(file, "fclose");
3123                 unlink(file);
3124                 return -1;
3125         }
3126
3127         return 0;
3128  error:
3129         fclose(fp);
3130         fclose(fdest);
3131         unlink(file);
3132
3133         return -1;
3134 }
3135
3136
3137 #if USE_GPGME
3138 /* interfaces to rfc2015 to keep out the prefs stuff there.
3139  * returns 0 on success and -1 on error. */
3140 static gint compose_create_signers_list(Compose *compose, GSList **pkey_list)
3141 {
3142         const gchar *key_id = NULL;
3143         GSList *key_list;
3144
3145         switch (compose->account->sign_key) {
3146         case SIGN_KEY_DEFAULT:
3147                 *pkey_list = NULL;
3148                 return 0;
3149         case SIGN_KEY_BY_FROM:
3150                 key_id = compose->account->address;
3151                 break;
3152         case SIGN_KEY_CUSTOM:
3153                 key_id = compose->account->sign_key_id;
3154                 break;
3155         default:
3156                 break;
3157         }
3158
3159         key_list = rfc2015_create_signers_list(key_id);
3160
3161         if (!key_list) {
3162                 alertpanel_error(_("Could not find any key associated with "
3163                                    "currently selected key id `%s'."), key_id);
3164                 return -1;
3165         }
3166
3167         *pkey_list = key_list;
3168         return 0;
3169 }
3170
3171 /* clearsign message body text */
3172 static gint compose_clearsign_text(Compose *compose, gchar **text)
3173 {
3174         GSList *key_list;
3175         gchar *tmp_file;
3176
3177         tmp_file = get_tmp_file();
3178         if (str_write_to_file(*text, tmp_file) < 0) {
3179                 g_free(tmp_file);
3180                 return -1;
3181         }
3182
3183         if (canonicalize_file_replace(tmp_file) < 0 ||
3184             compose_create_signers_list(compose, &key_list) < 0 ||
3185             rfc2015_clearsign(tmp_file, key_list) < 0) {
3186                 unlink(tmp_file);
3187                 g_free(tmp_file);
3188                 return -1;
3189         }
3190
3191         g_free(*text);
3192         *text = file_read_to_str(tmp_file);
3193         unlink(tmp_file);
3194         g_free(tmp_file);
3195         if (*text == NULL)
3196                 return -1;
3197
3198         return 0;
3199 }
3200 #endif /* USE_GPGME */
3201
3202 static gint compose_write_to_file(Compose *compose, const gchar *file,
3203                                   gboolean is_draft)
3204 {
3205         FILE *fp;
3206         size_t len;
3207         gchar *chars;
3208         gchar *buf;
3209         const gchar *out_codeset;
3210         EncodingType encoding;
3211
3212         if ((fp = fopen(file, "wb")) == NULL) {
3213                 FILE_OP_ERROR(file, "fopen");
3214                 return -1;
3215         }
3216
3217         /* chmod for security */
3218         if (change_file_mode_rw(fp, file) < 0) {
3219                 FILE_OP_ERROR(file, "chmod");
3220                 g_warning("can't change file mode\n");
3221         }
3222
3223         /* get all composed text */
3224         chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3225         len = strlen(chars);
3226         if (is_ascii_str(chars)) {
3227                 buf = chars;
3228                 chars = NULL;
3229                 out_codeset = CS_US_ASCII;
3230                 encoding = ENC_7BIT;
3231         } else {
3232                 const gchar *src_codeset;
3233
3234                 out_codeset = conv_get_outgoing_charset_str();
3235                 if (!strcasecmp(out_codeset, CS_US_ASCII))
3236                         out_codeset = CS_ISO_8859_1;
3237
3238                 if (prefs_common.encoding_method == CTE_BASE64)
3239                         encoding = ENC_BASE64;
3240                 else if (prefs_common.encoding_method == CTE_QUOTED_PRINTABLE)
3241                         encoding = ENC_QUOTED_PRINTABLE;
3242                 else if (prefs_common.encoding_method == CTE_8BIT)
3243                         encoding = ENC_8BIT;
3244                 else
3245                         encoding = procmime_get_encoding_for_charset(out_codeset);
3246
3247 #if USE_GPGME
3248                 if (!is_draft &&
3249                     compose->use_signing && !compose->gnupg_mode &&
3250                     encoding == ENC_8BIT)
3251                         encoding = ENC_QUOTED_PRINTABLE;
3252 #endif
3253
3254                 src_codeset = conv_get_current_charset_str();
3255                 /* if current encoding is US-ASCII, set it the same as
3256                    outgoing one to prevent code conversion failure */
3257                 if (!strcasecmp(src_codeset, CS_US_ASCII))
3258                         src_codeset = out_codeset;
3259
3260                 debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
3261                             src_codeset, out_codeset, procmime_get_encoding_str(encoding));
3262
3263                 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
3264                 if (!buf) {
3265                         AlertValue aval;
3266
3267                         aval = alertpanel
3268                                 (_("Error"),
3269                                  _("Can't convert the character encoding of the message.\n"
3270                                    "Send it anyway?"), _("Yes"), _("+No"), NULL);
3271                         if (aval != G_ALERTDEFAULT) {
3272                                 g_free(chars);
3273                                 fclose(fp);
3274                                 unlink(file);
3275                                 return -1;
3276                         } else {
3277                                 buf = chars;
3278                                 chars = NULL;
3279                         }
3280                 }
3281         }
3282         g_free(chars);
3283
3284         /* Canonicalize line endings in the message text */
3285         {
3286                 gchar *canon_buf, *out;
3287                 const gchar *p;
3288                 guint new_len = 0;
3289
3290                 for (p = buf ; *p; ++p) {
3291                         if (*p != '\r') {
3292                                 ++new_len;
3293                                 if (*p == '\n')
3294                                         ++new_len;
3295                         }
3296                 }
3297
3298                 out = canon_buf = g_new(gchar, new_len + 1);
3299                 for (p = buf; *p; ++p) {
3300                         if (*p != '\r') {
3301                                 if (*p == '\n')
3302                                         *out++ = '\r';
3303                                 *out++ = *p;
3304                         }
3305                 }
3306                 *out = '\0';
3307
3308                 free(buf);
3309                 buf = canon_buf;
3310         }
3311
3312 #if USE_GPGME
3313         if (!is_draft && compose->use_signing && compose->gnupg_mode) {
3314                 if (compose_clearsign_text(compose, &buf) < 0) {
3315                         g_warning("clearsign failed\n");
3316                         fclose(fp);
3317                         unlink(file);
3318                         g_free(buf);
3319                         return -1;
3320                 }
3321         }
3322 #endif
3323
3324         /* write headers */
3325         if (compose_write_headers
3326                 (compose, fp, out_codeset, encoding, is_draft) < 0) {
3327                 g_warning("can't write headers\n");
3328                 fclose(fp);
3329                 /* unlink(file); */
3330                 g_free(buf);
3331                 return -1;
3332         }
3333
3334         if (compose_use_attach(compose)) {
3335 #if USE_GPGME
3336             /* This prolog message is ignored by mime software and
3337              * because it would make our signing/encryption task
3338              * tougher, we don't emit it in that case */
3339             if (!compose->use_signing && !compose->use_encryption)
3340 #endif
3341                 fputs("This is a multi-part message in MIME format.\n", fp);
3342
3343                 fprintf(fp, "\n--%s\n", compose->boundary);
3344                 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
3345                         out_codeset);
3346                 fprintf(fp, "Content-Transfer-Encoding: %s\n",
3347                         procmime_get_encoding_str(encoding));
3348                 fputc('\n', fp);
3349         }
3350
3351         /* write body */
3352         len = strlen(buf);
3353         if (encoding == ENC_BASE64) {
3354                 gchar outbuf[B64_BUFFSIZE];
3355                 gint i, l;
3356
3357                 for (i = 0; i < len; i += B64_LINE_SIZE) {
3358                         l = MIN(B64_LINE_SIZE, len - i);
3359                         base64_encode(outbuf, buf + i, l);
3360                         fputs(outbuf, fp);
3361                         fputc('\n', fp);
3362                 }
3363         } else if (encoding == ENC_QUOTED_PRINTABLE) {
3364                 gchar *outbuf;
3365                 size_t outlen;
3366
3367                 outbuf = g_malloc(len * 4);
3368                 qp_encode_line(outbuf, buf);
3369                 outlen = strlen(outbuf);
3370                 if (fwrite(outbuf, sizeof(gchar), outlen, fp) != outlen) {
3371                         FILE_OP_ERROR(file, "fwrite");
3372                         fclose(fp);
3373                         unlink(file);
3374                         g_free(outbuf);
3375                         g_free(buf);
3376                         return -1;
3377                 }
3378                 g_free(outbuf);
3379         } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
3380                 FILE_OP_ERROR(file, "fwrite");
3381                 fclose(fp);
3382                 unlink(file);
3383                 g_free(buf);
3384                 return -1;
3385         }
3386         g_free(buf);
3387
3388         if (compose_use_attach(compose))
3389                 compose_write_attach(compose, fp);
3390
3391         if (fclose(fp) == EOF) {
3392                 FILE_OP_ERROR(file, "fclose");
3393                 unlink(file);
3394                 return -1;
3395         }
3396
3397 #if USE_GPGME
3398         if (is_draft)
3399                 return 0;
3400
3401         if ((compose->use_signing && !compose->gnupg_mode) ||
3402             compose->use_encryption) {
3403                 if (canonicalize_file_replace(file) < 0) {
3404                         unlink(file);
3405                         return -1;
3406                 }
3407         }
3408
3409         if (compose->use_signing && !compose->gnupg_mode) {
3410                 GSList *key_list;
3411
3412                 if (compose_create_signers_list(compose, &key_list) < 0 ||
3413                     rfc2015_sign(file, key_list) < 0) {
3414                         unlink(file);
3415                         return -1;
3416                 }
3417         }
3418         if (compose->use_encryption) {
3419                 if (rfc2015_encrypt(file, compose->to_list,
3420                                     compose->gnupg_mode) < 0) {
3421                         unlink(file);
3422                         return -1;
3423                 }
3424         }
3425 #endif /* USE_GPGME */
3426
3427         return 0;
3428 }
3429
3430 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
3431 {
3432         FILE *fp;
3433         size_t len;
3434         gchar *chars;
3435
3436         if ((fp = fopen(file, "wb")) == NULL) {
3437                 FILE_OP_ERROR(file, "fopen");
3438                 return -1;
3439         }
3440
3441         /* chmod for security */
3442         if (change_file_mode_rw(fp, file) < 0) {
3443                 FILE_OP_ERROR(file, "chmod");
3444                 g_warning("can't change file mode\n");
3445         }
3446
3447         chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3448
3449         /* write body */
3450         len = strlen(chars);
3451         if (fwrite(chars, sizeof(gchar), len, fp) != len) {
3452                 FILE_OP_ERROR(file, "fwrite");
3453                 g_free(chars);
3454                 fclose(fp);
3455                 unlink(file);
3456                 return -1;
3457         }
3458
3459         g_free(chars);
3460
3461         if (fclose(fp) == EOF) {
3462                 FILE_OP_ERROR(file, "fclose");
3463                 unlink(file);
3464                 return -1;
3465         }
3466         return 0;
3467 }
3468
3469 static gint compose_remove_reedit_target(Compose *compose)
3470 {
3471         FolderItem *item;
3472         MsgInfo *msginfo = compose->targetinfo;
3473
3474         g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
3475         if (!msginfo) return -1;
3476
3477         item = msginfo->folder;
3478         g_return_val_if_fail(item != NULL, -1);
3479
3480         if (procmsg_msg_exist(msginfo) &&
3481             (item->stype == F_DRAFT || item->stype == F_QUEUE 
3482              || msginfo == compose->autosaved_draft)) {
3483                 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
3484                         g_warning("can't remove the old message\n");
3485                         return -1;
3486                 }
3487         }
3488
3489         return 0;
3490 }
3491
3492 void compose_remove_draft(Compose *compose)
3493 {
3494         FolderItem *drafts;
3495         MsgInfo *msginfo = compose->targetinfo;
3496         drafts = account_get_special_folder(compose->account, F_DRAFT);
3497
3498         if (procmsg_msg_exist(msginfo)) {
3499                 folder_item_remove_msg(drafts, msginfo->msgnum);
3500         }
3501
3502 }
3503
3504 static gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item)
3505 {
3506         return compose_queue_sub (compose, msgnum, item, FALSE);
3507 }
3508 static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item, gboolean check_subject)
3509 {
3510         FolderItem *queue;
3511         gchar *tmp, *tmp2;
3512         FILE *fp, *src_fp;
3513         GSList *cur;
3514         gchar buf[BUFFSIZE];
3515         gint num;
3516         static gboolean lock = FALSE;
3517         PrefsAccount *mailac = NULL, *newsac = NULL;
3518         
3519         debug_print("queueing message...\n");
3520         g_return_val_if_fail(compose->account != NULL, -1);
3521
3522         lock = TRUE;
3523         
3524         if (compose_check_entries(compose, check_subject) == FALSE) {
3525                 lock = FALSE;
3526                 return -1;
3527         }
3528
3529         if (!compose->to_list && !compose->newsgroup_list) {
3530                 g_warning("can't get recipient list.");
3531                 lock = FALSE;
3532                 return -1;
3533         }
3534
3535         if (compose->to_list) {
3536                 if (compose->account->protocol != A_NNTP)
3537                         mailac = compose->account;
3538                 else if (cur_account && cur_account->protocol != A_NNTP)
3539                         mailac = cur_account;
3540                 else if (!(mailac = compose_current_mail_account())) {
3541                         lock = FALSE;
3542                         alertpanel_error(_("No account for sending mails available!"));
3543                         return -1;
3544                 }
3545         }
3546
3547         if (compose->newsgroup_list) {
3548                 if (compose->account->protocol == A_NNTP)
3549                         newsac = compose->account;
3550                 else if (!newsac->protocol != A_NNTP) {
3551                         lock = FALSE;
3552                         alertpanel_error(_("No account for posting news available!"));
3553                         return -1;
3554                 }                       
3555         }
3556
3557         if (prefs_common.linewrap_at_send)
3558                 compose_wrap_line_all(compose);
3559                         
3560         /* write to temporary file */
3561         tmp2 = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
3562                                       G_DIR_SEPARATOR, (gint)compose);
3563
3564         if (compose->redirect_filename != NULL) {
3565                 if (compose_redirect_write_to_file(compose, tmp2) < 0) {
3566                         unlink(tmp2);
3567                         lock = FALSE;
3568                         return -1;
3569                 }
3570         }
3571         else {
3572                 if (compose_write_to_file(compose, tmp2, FALSE) < 0) {
3573                         unlink(tmp2);
3574                         lock = FALSE;
3575                         return -1;
3576                 }
3577         }
3578
3579         /* add queue header */
3580         tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
3581                               G_DIR_SEPARATOR, (gint)compose);
3582         if ((fp = fopen(tmp, "wb")) == NULL) {
3583                 FILE_OP_ERROR(tmp, "fopen");
3584                 g_free(tmp);
3585                 return -1;
3586         }
3587         if ((src_fp = fopen(tmp2, "rb")) == NULL) {
3588                 FILE_OP_ERROR(tmp2, "fopen");
3589                 fclose(fp);
3590                 unlink(tmp);
3591                 g_free(tmp);
3592                 unlink(tmp2);
3593                 g_free(tmp2);
3594                 return -1;
3595         }
3596         if (change_file_mode_rw(fp, tmp) < 0) {
3597                 FILE_OP_ERROR(tmp, "chmod");
3598                 g_warning("can't change file mode\n");
3599         }
3600
3601         /* queueing variables */
3602         fprintf(fp, "AF:\n");
3603         fprintf(fp, "NF:0\n");
3604         fprintf(fp, "PS:10\n");
3605         fprintf(fp, "SRH:1\n");
3606         fprintf(fp, "SFN:\n");
3607         fprintf(fp, "DSR:\n");
3608         if (compose->msgid)
3609                 fprintf(fp, "MID:<%s>\n", compose->msgid);
3610         else
3611                 fprintf(fp, "MID:\n");
3612         fprintf(fp, "CFG:\n");
3613         fprintf(fp, "PT:0\n");
3614         fprintf(fp, "S:%s\n", compose->account->address);
3615         fprintf(fp, "RQ:\n");
3616         if (mailac)
3617                 fprintf(fp, "SSV:%s\n", mailac->smtp_server);
3618         else
3619                 fprintf(fp, "SSV:\n");
3620         if (newsac)
3621                 fprintf(fp, "NSV:%s\n", newsac->nntp_server);
3622         else
3623                 fprintf(fp, "NSV:\n");
3624         fprintf(fp, "SSH:\n");
3625         /* write recepient list */
3626         if (compose->to_list) {
3627                 fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data);
3628                 for (cur = compose->to_list->next; cur != NULL;
3629                      cur = cur->next)
3630                         fprintf(fp, ",<%s>", (gchar *)cur->data);
3631                 fprintf(fp, "\n");
3632         }
3633         /* write newsgroup list */
3634         if (compose->newsgroup_list) {
3635                 fprintf(fp, "NG:");
3636                 fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
3637                 for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
3638                         fprintf(fp, ",%s", (gchar *)cur->data);
3639                 fprintf(fp, "\n");
3640         }
3641         /* Sylpheed account IDs */
3642         if (mailac) {
3643                 fprintf(fp, "MAID:%d\n", mailac->account_id);
3644         }
3645         if (newsac) {
3646                 fprintf(fp, "NAID:%d\n", newsac->account_id);
3647         }
3648         /* Save copy folder */
3649         if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
3650                 gchar *savefolderid;
3651                 
3652                 savefolderid = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
3653                 fprintf(fp, "SCF:%s\n", savefolderid);
3654                 g_free(savefolderid);
3655         }
3656         /* Message-ID of message replying to */
3657         if ((compose->replyinfo != NULL) && (compose->replyinfo->msgid != NULL)) {
3658                 gchar *folderid;
3659                 
3660                 folderid = folder_item_get_identifier(compose->replyinfo->folder);
3661                 fprintf(fp, "RMID:%s\x7f%d\x7f%s\n", folderid, compose->replyinfo->msgnum, compose->replyinfo->msgid);
3662                 g_free(folderid);
3663         }
3664         /* Message-ID of message forwarding to */
3665         if ((compose->fwdinfo != NULL) && (compose->fwdinfo->msgid != NULL)) {
3666                 gchar *folderid;
3667                 
3668                 folderid = folder_item_get_identifier(compose->fwdinfo->folder);
3669                 fprintf(fp, "FMID:%s\x7f%d\x7f%s\n", folderid, compose->fwdinfo->msgnum, compose->fwdinfo->msgid);
3670                 g_free(folderid);
3671         }
3672         fprintf(fp, "\n");
3673
3674         while (fgets(buf, sizeof(buf), src_fp) != NULL) {
3675                 if (fputs(buf, fp) == EOF) {
3676                         FILE_OP_ERROR(tmp, "fputs");
3677                         fclose(fp);
3678                         fclose(src_fp);
3679                         unlink(tmp);
3680                         g_free(tmp);
3681                         unlink(tmp2);
3682                         g_free(tmp2);
3683                         return -1;
3684                 }
3685         }
3686         fclose(src_fp);
3687         if (fclose(fp) == EOF) {
3688                 FILE_OP_ERROR(tmp, "fclose");
3689                 unlink(tmp);
3690                 g_free(tmp);
3691                 unlink(tmp2);
3692                 g_free(tmp2);
3693                 return -1;
3694         }
3695
3696         queue = account_get_special_folder(compose->account, F_QUEUE);
3697         if (!queue) {
3698                 g_warning("can't find queue folder\n");
3699                 unlink(tmp);
3700                 g_free(tmp);
3701                 return -1;
3702         }
3703         folder_item_scan(queue);
3704         if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
3705                 g_warning("can't queue the message\n");
3706                 unlink(tmp);
3707                 g_free(tmp);
3708                 return -1;
3709         }
3710         unlink(tmp);
3711         g_free(tmp);
3712         unlink(tmp2);
3713         g_free(tmp2);
3714
3715         if (compose->mode == COMPOSE_REEDIT) {
3716                 compose_remove_reedit_target(compose);
3717         }
3718
3719         if ((msgnum != NULL) && (item != NULL)) {
3720                 *msgnum = num;
3721                 *item = queue;
3722         }
3723
3724         return 0;
3725 }
3726
3727 static void compose_write_attach(Compose *compose, FILE *fp)
3728 {
3729         AttachInfo *ainfo;
3730         GtkCList *clist = GTK_CLIST(compose->attach_clist);
3731         gint row;
3732         FILE *attach_fp;
3733         gchar filename[BUFFSIZE];
3734         gint len;
3735
3736         for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
3737              row++) {
3738                 gchar buf[BUFFSIZE];
3739                 gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3740
3741                 if ((attach_fp = fopen(ainfo->file, "rb")) == NULL) {
3742                         g_warning("Can't open file %s\n", ainfo->file);
3743                         continue;
3744                 }
3745
3746                 fprintf(fp, "\n--%s\n", compose->boundary);
3747
3748                 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
3749                         fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
3750                         fprintf(fp, "Content-Disposition: inline\n");
3751                 } else {
3752                         compose_convert_header(filename, sizeof(filename),
3753                                                ainfo->name, 12);
3754                         fprintf(fp, "Content-Type: %s;\n"
3755                                     " name=\"%s\"\n",
3756                                 ainfo->content_type, filename);
3757                         fprintf(fp, "Content-Disposition: attachment;\n"
3758                                     " filename=\"%s\"\n", filename);
3759                 }
3760
3761                 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
3762                         procmime_get_encoding_str(ainfo->encoding));
3763
3764                 if (ainfo->encoding == ENC_BASE64) {
3765                         gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3766
3767                         while ((len = fread(inbuf, sizeof(gchar),
3768                                             B64_LINE_SIZE, attach_fp))
3769                                == B64_LINE_SIZE) {
3770                                 base64_encode(outbuf, inbuf, B64_LINE_SIZE);
3771                                 fputs(outbuf, fp);
3772                                 fputc('\n', fp);
3773                         }
3774                         if (len > 0 && feof(attach_fp)) {
3775                                 base64_encode(outbuf, inbuf, len);
3776                                 fputs(outbuf, fp);
3777                                 fputc('\n', fp);
3778                         }
3779                 } else if (ainfo->encoding == ENC_QUOTED_PRINTABLE) {
3780                         gchar inbuf[BUFFSIZE], outbuf[BUFFSIZE * 4];
3781
3782                         while (fgets(inbuf, sizeof(inbuf), attach_fp) != NULL) {
3783                                 qp_encode_line(outbuf, inbuf);
3784                                 fputs(outbuf, fp);
3785                         }
3786                 } else {
3787                         gchar buf[BUFFSIZE];
3788
3789                         while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
3790                                 strcrchomp(buf);
3791                                 fputs(buf, fp);
3792                         }
3793                 }
3794
3795                 fclose(attach_fp);
3796         }
3797
3798         fprintf(fp, "\n--%s--\n", compose->boundary);
3799 }
3800
3801 #define QUOTE_IF_REQUIRED(out, str)                     \
3802 {                                                       \
3803         if (*str != '"' && (strchr(str, ',')            \
3804                         || strchr(str, '.'))) {         \
3805                 gchar *__tmp;                           \
3806                 gint len;                               \
3807                                                         \
3808                 len = strlen(str) + 3;                  \
3809                 Xalloca(__tmp, len, return -1);         \
3810                 g_snprintf(__tmp, len, "\"%s\"", str);  \
3811                 out = __tmp;                            \
3812         } else {                                        \
3813                 Xstrdup_a(out, str, return -1);         \
3814         }                                               \
3815 }
3816
3817 #define PUT_RECIPIENT_HEADER(header, str)                                    \
3818 {                                                                            \
3819         if (*str != '\0') {                                                  \
3820                 Xstrdup_a(str, str, return -1);                              \
3821                 g_strstrip(str);                                             \
3822                 if (*str != '\0') {                                          \
3823                         compose->to_list = address_list_append               \
3824                                 (compose->to_list, str);                     \
3825                         compose_convert_header                               \
3826                                 (buf, sizeof(buf), str, strlen(header) + 2); \
3827                         fprintf(fp, "%s: %s\n", header, buf);                \
3828                 }                                                            \
3829         }                                                                    \
3830 }
3831
3832 #define IS_IN_CUSTOM_HEADER(header) \
3833         (compose->account->add_customhdr && \
3834          custom_header_find(compose->account->customhdr_list, header) != NULL)
3835
3836 static gint compose_write_headers_from_headerlist(Compose *compose, 
3837                                                   FILE *fp, 
3838                                                   gchar *header)
3839 {
3840         gchar buf[BUFFSIZE];
3841         gchar *str, *header_w_colon, *trans_hdr;
3842         gboolean first_address;
3843         GSList *list;
3844         ComposeHeaderEntry *headerentry;
3845         gchar * headerentryname;
3846
3847         if (IS_IN_CUSTOM_HEADER(header)) {
3848                 return 0;
3849         }
3850
3851         debug_print("Writing %s-header\n", header);
3852
3853         header_w_colon = g_strconcat(header, ":", NULL);
3854         trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
3855
3856         first_address = TRUE;
3857         for (list = compose->header_list; list; list = list->next) {
3858                 headerentry = ((ComposeHeaderEntry *)list->data);
3859                 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
3860
3861                 if (!g_strcasecmp(trans_hdr, headerentryname)) {
3862                         str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
3863                         Xstrdup_a(str, str, return -1);
3864                         g_strstrip(str);
3865                         if (str[0] != '\0') {
3866                                 compose_convert_header
3867                                         (buf, sizeof(buf), str,
3868                                         strlen(header) + 2);
3869                                 if (first_address) {
3870                                         fprintf(fp, "%s: ", header);
3871                                         first_address = FALSE;
3872                                 } else {
3873                                         fprintf(fp, ",");
3874                                 }
3875                                 fprintf(fp, "%s", buf);
3876                         }
3877                 }
3878         }
3879         if (!first_address) {
3880                 fprintf(fp, "\n");
3881         }
3882
3883         g_free(header_w_colon);
3884
3885         return(0);
3886 }
3887
3888 static gint compose_write_headers(Compose *compose, FILE *fp,
3889                                   const gchar *charset, EncodingType encoding,
3890                                   gboolean is_draft)
3891 {
3892         gchar buf[BUFFSIZE];
3893         gchar *str;
3894         gchar *name;
3895         GSList *list;
3896         gchar *std_headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
3897
3898         /* struct utsname utsbuf; */
3899
3900         g_return_val_if_fail(fp != NULL, -1);
3901         g_return_val_if_fail(charset != NULL, -1);
3902         g_return_val_if_fail(compose->account != NULL, -1);
3903         g_return_val_if_fail(compose->account->address != NULL, -1);
3904
3905         /* Save draft infos */
3906         if (is_draft) {
3907                 fprintf(fp, "X-Sylpheed-Account-Id:%d\n", compose->account->account_id);
3908                 fprintf(fp, "S:%s\n", compose->account->address);
3909                 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
3910                         gchar *savefolderid;
3911
3912                         savefolderid = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
3913                         fprintf(fp, "SCF:%s\n", savefolderid);
3914                         g_free(savefolderid);
3915                 }
3916                 fprintf(fp, "\n");
3917         }
3918
3919         /* Date */
3920         if (compose->account->add_date) {
3921                 get_rfc822_date(buf, sizeof(buf));
3922                 fprintf(fp, "Date: %s\n", buf);
3923         }
3924
3925         /* From */
3926         if (!IS_IN_CUSTOM_HEADER("From")) {
3927                 if (compose->account->name && *compose->account->name) {
3928                         compose_convert_header
3929                                 (buf, sizeof(buf), compose->account->name,
3930                                  strlen("From: "));
3931                         QUOTE_IF_REQUIRED(name, buf);
3932                         fprintf(fp, "From: %s <%s>\n",
3933                                 name, compose->account->address);
3934                 } else
3935                         fprintf(fp, "From: %s\n", compose->account->address);
3936         }
3937         
3938         /* To */
3939         compose_write_headers_from_headerlist(compose, fp, "To");
3940 #if 0 /* NEW COMPOSE GUI */
3941         if (compose->use_to) {
3942                 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
3943                 PUT_RECIPIENT_HEADER("To", str);
3944         }
3945 #endif
3946
3947         /* Newsgroups */
3948         compose_write_headers_from_headerlist(compose, fp, "Newsgroups");
3949 #if 0 /* NEW COMPOSE GUI */
3950         if (compose->use_newsgroups) {
3951                 str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
3952                 if (*str != '\0') {
3953                         Xstrdup_a(str, str, return -1);
3954                         g_strstrip(str);
3955                         remove_space(str);
3956                         if (*str != '\0') {
3957                                 compose->newsgroup_list =
3958                                         newsgroup_list_append
3959                                                 (compose->newsgroup_list, str);
3960                                 compose_convert_header(buf, sizeof(buf), str,
3961                                                        strlen("Newsgroups: "));
3962                                 fprintf(fp, "Newsgroups: %s\n", buf);
3963                         }
3964                 }
3965         }
3966 #endif
3967         /* Cc */
3968         compose_write_headers_from_headerlist(compose, fp, "Cc");
3969 #if 0 /* NEW COMPOSE GUI */
3970         if (compose->use_cc) {
3971                 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
3972                 PUT_RECIPIENT_HEADER("Cc", str);
3973         }
3974 #endif
3975         /* Bcc */
3976         compose_write_headers_from_headerlist(compose, fp, "Bcc");
3977 #if 0 /* NEW COMPOSE GUI */
3978         if (compose->use_bcc) {
3979                 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
3980                 PUT_RECIPIENT_HEADER("Bcc", str);
3981         }
3982 #endif
3983
3984         /* Subject */
3985         str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3986         if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
3987                 Xstrdup_a(str, str, return -1);
3988                 g_strstrip(str);
3989                 if (*str != '\0') {
3990                         compose_convert_header(buf, sizeof(buf), str,
3991                                                strlen("Subject: "));
3992                         fprintf(fp, "Subject: %s\n", buf);
3993                 }
3994         }
3995
3996         /* Message-ID */
3997         if (compose->account->gen_msgid) {
3998                 compose_generate_msgid(compose, buf, sizeof(buf));
3999                 fprintf(fp, "Message-Id: <%s>\n", buf);
4000                 compose->msgid = g_strdup(buf);
4001         }
4002
4003         /* In-Reply-To */
4004         if (compose->inreplyto && compose->to_list)
4005                 fprintf(fp, "In-Reply-To: <%s>\n", compose->inreplyto);
4006
4007         /* References */
4008         if (compose->references)
4009                 fprintf(fp, "References: %s\n", compose->references);
4010
4011         /* Followup-To */
4012         compose_write_headers_from_headerlist(compose, fp, "Followup-To");
4013 #if 0 /* NEW COMPOSE GUI */
4014         if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
4015                 str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
4016                 if (*str != '\0') {
4017                         Xstrdup_a(str, str, return -1);
4018                         g_strstrip(str);
4019                         remove_space(str);
4020                         if (*str != '\0') {
4021                                 compose_convert_header(buf, sizeof(buf), str,
4022                                                        strlen("Followup-To: "));
4023                                 fprintf(fp, "Followup-To: %s\n", buf);
4024                         }
4025                 }
4026         }
4027 #endif
4028         /* Reply-To */
4029         compose_write_headers_from_headerlist(compose, fp, "Reply-To");
4030 #if 0 /* NEW COMPOSE GUI */
4031         if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
4032                 str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
4033                 if (*str != '\0') {
4034                         Xstrdup_a(str, str, return -1);
4035                         g_strstrip(str);
4036                         if (*str != '\0') {
4037                                 compose_convert_header(buf, sizeof(buf), str,
4038                                                        strlen("Reply-To: "));
4039                                 fprintf(fp, "Reply-To: %s\n", buf);
4040                         }
4041                 }
4042         }
4043 #endif
4044         /* Organization */
4045         if (compose->account->organization &&
4046             !IS_IN_CUSTOM_HEADER("Organization")) {
4047                 compose_convert_header(buf, sizeof(buf),
4048                                        compose->account->organization,
4049                                        strlen("Organization: "));
4050                 fprintf(fp, "Organization: %s\n", buf);
4051         }
4052
4053         /* Program version and system info */
4054         /* uname(&utsbuf); */
4055         if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
4056                 fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
4057                         prog_version,
4058                         gtk_major_version, gtk_minor_version, gtk_micro_version,
4059                         TARGET_ALIAS);
4060                         /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
4061         }
4062         if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
4063                 fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
4064                         prog_version,
4065                         gtk_major_version, gtk_minor_version, gtk_micro_version,
4066                         TARGET_ALIAS);
4067                         /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
4068         }
4069
4070         /* custom headers */
4071         if (compose->account->add_customhdr) {
4072                 GSList *cur;
4073
4074                 for (cur = compose->account->customhdr_list; cur != NULL;
4075                      cur = cur->next) {
4076                         CustomHeader *chdr = (CustomHeader *)cur->data;
4077
4078                         if (strcasecmp(chdr->name, "Date")         != 0 &&
4079                             strcasecmp(chdr->name, "From")         != 0 &&
4080                             strcasecmp(chdr->name, "To")           != 0 &&
4081                          /* strcasecmp(chdr->name, "Sender")       != 0 && */
4082                             strcasecmp(chdr->name, "Message-Id")   != 0 &&
4083                             strcasecmp(chdr->name, "In-Reply-To")  != 0 &&
4084                             strcasecmp(chdr->name, "References")   != 0 &&
4085                             strcasecmp(chdr->name, "Mime-Version") != 0 &&
4086                             strcasecmp(chdr->name, "Content-Type") != 0 &&
4087                             strcasecmp(chdr->name, "Content-Transfer-Encoding")
4088                             != 0) {
4089                                 compose_convert_header
4090                                         (buf, sizeof(buf),
4091                                          chdr->value ? chdr->value : "",
4092                                          strlen(chdr->name) + 2);
4093                                 fprintf(fp, "%s: %s\n", chdr->name, buf);
4094                         }
4095                 }
4096         }
4097
4098         /* MIME */
4099         fprintf(fp, "Mime-Version: 1.0\n");
4100         if (compose_use_attach(compose)) {
4101                 get_rfc822_date(buf, sizeof(buf));
4102                 subst_char(buf, ' ', '_');
4103                 subst_char(buf, ',', '_');
4104                 compose->boundary = g_strdup_printf("Multipart_%s_%08x",
4105                                                     buf, (guint)compose);
4106                 fprintf(fp,
4107                         "Content-Type: multipart/mixed;\n"
4108                         " boundary=\"%s\"\n", compose->boundary);
4109         } else {
4110                 fprintf(fp, "Content-Type: text/plain; charset=%s\n", charset);
4111                 fprintf(fp, "Content-Transfer-Encoding: %s\n",
4112                         procmime_get_encoding_str(encoding));
4113         }
4114
4115         /* PRIORITY */
4116         switch (compose->priority) {
4117                 case PRIORITY_HIGHEST: fprintf(fp, "Importance: high\n"
4118                                                    "X-Priority: 1 (Highest)\n");
4119                         break;
4120                 case PRIORITY_HIGH: fprintf(fp, "Importance: high\n"
4121                                                 "X-Priority: 2 (High)\n");
4122                         break;
4123                 case PRIORITY_NORMAL: break;
4124                 case PRIORITY_LOW: fprintf(fp, "Importance: low\n"
4125                                                "X-Priority: 4 (Low)\n");
4126                         break;
4127                 case PRIORITY_LOWEST: fprintf(fp, "Importance: low\n"
4128                                                   "X-Priority: 5 (Lowest)\n");
4129                         break;
4130                 default: debug_print("compose: priority unknown : %d\n",
4131                                      compose->priority);
4132         }
4133
4134         /* Request Return Receipt */
4135         if (!IS_IN_CUSTOM_HEADER("Disposition-Notification-To")) {
4136                 if (compose->return_receipt) {
4137                         if (compose->account->name
4138                             && *compose->account->name) {
4139                                 compose_convert_header(buf, sizeof(buf), compose->account->name, strlen("Disposition-Notification-To: "));
4140                                 fprintf(fp, "Disposition-Notification-To: %s <%s>\n", buf, compose->account->address);
4141                         } else
4142                                 fprintf(fp, "Disposition-Notification-To: %s\n", compose->account->address);
4143                 }
4144         }
4145
4146         /* get special headers */
4147         for (list = compose->header_list; list; list = list->next) {
4148                 ComposeHeaderEntry *headerentry;
4149                 gchar *tmp;
4150                 gchar *headername;
4151                 gchar *headername_wcolon;
4152                 gchar *headername_trans;
4153                 gchar *headervalue;
4154                 gchar **string;
4155                 gboolean standard_header = FALSE;
4156
4157                 headerentry = ((ComposeHeaderEntry *)list->data);
4158                 
4159                 tmp = g_strdup(gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)));
4160                 if (!strstr(tmp, ":")) {
4161                         headername_wcolon = g_strconcat(tmp, ":", NULL);
4162                         headername = g_strdup(tmp);
4163                 } else {
4164                         headername_wcolon = g_strdup(tmp);
4165                         headername = g_strdup(strtok(tmp, ":"));
4166                 }
4167                 g_free(tmp);
4168                 
4169                 headervalue = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
4170                 string = std_headers;
4171                 while (*string != NULL) {
4172                         headername_trans = prefs_common.trans_hdr ? gettext(*string) : *string;
4173                         if (!strcmp(headername_trans,headername_wcolon))
4174                                 standard_header = TRUE;
4175                         string++;
4176                 }
4177                 if (!standard_header && !IS_IN_CUSTOM_HEADER(headername))
4178                         fprintf(fp, "%s %s\n", headername_wcolon, headervalue);
4179                                 
4180                 g_free(headername);
4181                 g_free(headername_wcolon);
4182                 
4183         }
4184
4185         /* separator between header and body */
4186         fputs("\n", fp);
4187
4188         return 0;
4189 }
4190
4191 #undef IS_IN_CUSTOM_HEADER
4192
4193 static void compose_convert_header(gchar *dest, gint len, gchar *src,
4194                                    gint header_len)
4195 {
4196         g_return_if_fail(src != NULL);
4197         g_return_if_fail(dest != NULL);
4198
4199         if (len < 1) return;
4200
4201         g_strchomp(src);
4202
4203         conv_encode_header(dest, len, src, header_len);
4204 }
4205
4206 static void compose_generate_msgid(Compose *compose, gchar *buf, gint len)
4207 {
4208         struct tm *lt;
4209         time_t t;
4210         gchar *addr;
4211
4212         t = time(NULL);
4213         lt = localtime(&t);
4214
4215         if (compose->account && compose->account->address &&
4216             *compose->account->address) {
4217                 if (strchr(compose->account->address, '@'))
4218                         addr = g_strdup(compose->account->address);
4219                 else
4220                         addr = g_strconcat(compose->account->address, "@",
4221                                            get_domain_name(), NULL);
4222         } else
4223                 addr = g_strconcat(g_get_user_name(), "@", get_domain_name(),
4224                                    NULL);
4225
4226         g_snprintf(buf, len, "%04d%02d%02d%02d%02d%02d.%08x.%s",
4227                    lt->tm_year + 1900, lt->tm_mon + 1,
4228                    lt->tm_mday, lt->tm_hour,
4229                    lt->tm_min, lt->tm_sec,
4230                    (guint)random(), addr);
4231
4232         debug_print("generated Message-ID: %s\n", buf);
4233
4234         g_free(addr);
4235 }
4236
4237 static void compose_create_header_entry(Compose *compose) 
4238 {
4239         gchar *headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
4240
4241         GtkWidget *combo;
4242         GtkWidget *entry;
4243         GList *combo_list = NULL;
4244         gchar **string, *header = NULL;
4245         ComposeHeaderEntry *headerentry;
4246         gboolean standard_header = FALSE;
4247
4248         headerentry = g_new0(ComposeHeaderEntry, 1);
4249
4250         /* Combo box */
4251         combo = gtk_combo_new();
4252         string = headers; 
4253         while(*string != NULL) {
4254                 combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
4255                 string++;
4256         }
4257         gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
4258         g_list_free(combo_list);
4259         gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), TRUE);
4260         gtk_widget_show(combo);
4261         gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
4262         if (compose->header_last) {     
4263                 gchar *last_header_entry = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
4264                 string = headers;
4265                 while (*string != NULL) {
4266                         if (!strcmp(*string, last_header_entry))
4267                                 standard_header = TRUE;
4268                         string++;
4269                 }
4270                 if (standard_header)
4271                         header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
4272         }
4273         if (!compose->header_last || !standard_header) {
4274                 switch(compose->account->protocol) {
4275                         case A_NNTP:
4276                                 header = prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:";
4277                                 break;
4278                         default:
4279                                 header = prefs_common.trans_hdr ? _("To:") : "To:";
4280                                 break;
4281                 }                                                                   
4282         }
4283         if (header)
4284                 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
4285
4286         /* Entry field */
4287         entry = gtk_entry_new(); 
4288         gtk_widget_show(entry);
4289         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);
4290
4291         gtk_signal_connect(GTK_OBJECT(entry), "key-press-event", GTK_SIGNAL_FUNC(compose_headerentry_key_press_event_cb), headerentry);
4292         gtk_signal_connect(GTK_OBJECT(entry), "changed", GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
4293         gtk_signal_connect(GTK_OBJECT(entry), "activate", GTK_SIGNAL_FUNC(text_activated), compose);
4294
4295         address_completion_register_entry(GTK_ENTRY(entry));
4296
4297         headerentry->compose = compose;
4298         headerentry->combo = combo;
4299         headerentry->entry = entry;
4300         headerentry->headernum = compose->header_nextrow;
4301
4302         compose->header_nextrow++;
4303         compose->header_last = headerentry;
4304 }
4305
4306 static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) 
4307 {
4308         ComposeHeaderEntry *last_header;
4309         
4310         last_header = compose->header_last;
4311         
4312         gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
4313         gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
4314 }
4315
4316 static GtkWidget *compose_create_header(Compose *compose) 
4317 {
4318         GtkWidget *label;
4319         GtkWidget *hbox;
4320         GtkWidget *from_optmenu_hbox;
4321 #if 0 /* NEW COMPOSE GUI */
4322         GtkWidget *to_entry;
4323         GtkWidget *to_hbox;
4324         GtkWidget *newsgroups_entry;
4325         GtkWidget *newsgroups_hbox;
4326 #endif
4327         GtkWidget *header_scrolledwin;
4328         GtkWidget *header_table;
4329 #if 0 /* NEW COMPOSE GUI */
4330         GtkWidget *cc_entry;
4331         GtkWidget *cc_hbox;
4332         GtkWidget *bcc_entry;
4333         GtkWidget *bcc_hbox;
4334         GtkWidget *reply_entry;
4335         GtkWidget *reply_hbox;
4336         GtkWidget *followup_entry;
4337         GtkWidget *followup_hbox;
4338 #endif
4339
4340         gint count = 0;
4341
4342         /* header labels and entries */
4343         header_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
4344         gtk_widget_show(header_scrolledwin);
4345         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(header_scrolledwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
4346
4347         header_table = gtk_table_new(2, 2, FALSE);
4348         gtk_widget_show(header_table);
4349         gtk_container_set_border_width(GTK_CONTAINER(header_table), 2);
4350         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table);
4351         gtk_viewport_set_shadow_type(GTK_VIEWPORT(GTK_BIN(header_scrolledwin)->child), GTK_SHADOW_ETCHED_IN);
4352         count = 0;
4353
4354         /* option menu for selecting accounts */
4355         hbox = gtk_hbox_new(FALSE, 0);
4356         label = gtk_label_new(prefs_common.trans_hdr ? _("From:") : "From:");
4357         gtk_box_pack_end(GTK_BOX(hbox), label, FALSE, FALSE, 0);
4358         gtk_table_attach(GTK_TABLE(header_table), hbox, 0, 1, count, count + 1,
4359                          GTK_FILL, 0, 2, 0);
4360         from_optmenu_hbox = compose_account_option_menu_create(compose);
4361         gtk_table_attach(GTK_TABLE(header_table), from_optmenu_hbox,
4362                                   1, 2, count, count + 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
4363 #if 0 /* NEW COMPOSE GUI */
4364         gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
4365 #endif
4366         count++;
4367
4368         compose->header_table = header_table;
4369         compose->header_list = NULL;
4370         compose->header_nextrow = count;
4371
4372         compose_create_header_entry(compose);
4373
4374 #if 0 /* NEW COMPOSE GUI */
4375         compose_add_entry_field(table, &to_hbox, &to_entry, &count,
4376                                 "To:", TRUE); 
4377         gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
4378         compose_add_entry_field(table, &newsgroups_hbox, &newsgroups_entry,
4379                                 &count, "Newsgroups:", FALSE);
4380         gtk_table_set_row_spacing(GTK_TABLE(table), 1, 4);
4381
4382         gtk_table_set_row_spacing(GTK_TABLE(table), 2, 4);
4383
4384         compose_add_entry_field(table, &cc_hbox, &cc_entry, &count,
4385                                 "Cc:", TRUE);
4386         gtk_table_set_row_spacing(GTK_TABLE(table), 3, 4);
4387         compose_add_entry_field(table, &bcc_hbox, &bcc_entry, &count,
4388                                 "Bcc:", TRUE);
4389         gtk_table_set_row_spacing(GTK_TABLE(table), 4, 4);
4390         compose_add_entry_field(table, &reply_hbox, &reply_entry, &count,
4391                                 "Reply-To:", TRUE);
4392         gtk_table_set_row_spacing(GTK_TABLE(table), 5, 4);
4393         compose_add_entry_field(table, &followup_hbox, &followup_entry, &count,
4394                                 "Followup-To:", FALSE);
4395         gtk_table_set_row_spacing(GTK_TABLE(table), 6, 4);
4396
4397         gtk_table_set_col_spacings(GTK_TABLE(table), 4);
4398
4399         gtk_signal_connect(GTK_OBJECT(to_entry), "activate",
4400                            GTK_SIGNAL_FUNC(to_activated), compose);
4401         gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "activate",
4402                            GTK_SIGNAL_FUNC(newsgroups_activated), compose);
4403         gtk_signal_connect(GTK_OBJECT(subject_entry), "activate",
4404                            GTK_SIGNAL_FUNC(subject_activated), compose);
4405         gtk_signal_connect(GTK_OBJECT(cc_entry), "activate",
4406                            GTK_SIGNAL_FUNC(cc_activated), compose);
4407         gtk_signal_connect(GTK_OBJECT(bcc_entry), "activate",
4408                            GTK_SIGNAL_FUNC(bcc_activated), compose);
4409         gtk_signal_connect(GTK_OBJECT(reply_entry), "activate",
4410                            GTK_SIGNAL_FUNC(replyto_activated), compose);
4411         gtk_signal_connect(GTK_OBJECT(followup_entry), "activate",
4412                            GTK_SIGNAL_FUNC(followupto_activated), compose);
4413
4414         gtk_signal_connect(GTK_OBJECT(subject_entry), "grab_focus",
4415                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4416         gtk_signal_connect(GTK_OBJECT(to_entry), "grab_focus",
4417                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4418         gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "grab_focus",
4419                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4420         gtk_signal_connect(GTK_OBJECT(cc_entry), "grab_focus",
4421                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4422         gtk_signal_connect(GTK_OBJECT(bcc_entry), "grab_focus",
4423                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4424         gtk_signal_connect(GTK_OBJECT(reply_entry), "grab_focus",
4425                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4426         gtk_signal_connect(GTK_OBJECT(followup_entry), "grab_focus",
4427                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4428 #endif
4429
4430         compose->table            = NULL;
4431 #if 0 /* NEW COMPOSE GUI */
4432         compose->table            = table;
4433         compose->to_hbox          = to_hbox;
4434         compose->to_entry         = to_entry;
4435         compose->newsgroups_hbox  = newsgroups_hbox;
4436         compose->newsgroups_entry = newsgroups_entry;
4437 #endif
4438 #if 0 /* NEW COMPOSE GUI */
4439         compose->cc_hbox          = cc_hbox;
4440         compose->cc_entry         = cc_entry;
4441         compose->bcc_hbox         = bcc_hbox;
4442         compose->bcc_entry        = bcc_entry;
4443         compose->reply_hbox       = reply_hbox;
4444         compose->reply_entry      = reply_entry;
4445         compose->followup_hbox    = followup_hbox;
4446         compose->followup_entry   = followup_entry;
4447 #endif
4448
4449         return header_scrolledwin ;
4450 }
4451
4452 GtkWidget *compose_create_attach(Compose *compose)
4453 {
4454         gchar *titles[N_ATTACH_COLS];
4455         gint i;
4456
4457         GtkWidget *attach_scrwin;
4458         GtkWidget *attach_clist;
4459
4460         titles[COL_MIMETYPE] = _("MIME type");
4461         titles[COL_SIZE]     = _("Size");
4462         titles[COL_NAME]     = _("Name");
4463
4464         /* attachment list */
4465         attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
4466         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(attach_scrwin),
4467                                        GTK_POLICY_AUTOMATIC,
4468                                        GTK_POLICY_ALWAYS);
4469         gtk_widget_set_usize(attach_scrwin, -1, 80);
4470
4471         attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
4472         gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
4473                                            GTK_JUSTIFY_RIGHT);
4474         gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
4475         gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
4476         gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
4477                                      GTK_SELECTION_EXTENDED);
4478         for (i = 0; i < N_ATTACH_COLS; i++)
4479                 GTK_WIDGET_UNSET_FLAGS
4480                         (GTK_CLIST(attach_clist)->column[i].button,
4481                          GTK_CAN_FOCUS);
4482         gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
4483
4484         gtk_signal_connect(GTK_OBJECT(attach_clist), "select_row",
4485                            GTK_SIGNAL_FUNC(attach_selected), compose);
4486         gtk_signal_connect(GTK_OBJECT(attach_clist), "button_press_event",
4487                            GTK_SIGNAL_FUNC(attach_button_pressed), compose);
4488         gtk_signal_connect(GTK_OBJECT(attach_clist), "key_press_event",
4489                            GTK_SIGNAL_FUNC(attach_key_pressed), compose);
4490
4491         /* drag and drop */
4492         gtk_drag_dest_set(attach_clist,
4493                           GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
4494                           GDK_ACTION_COPY | GDK_ACTION_MOVE);
4495         gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received",
4496                            GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
4497                            compose);
4498
4499         compose->attach_scrwin = attach_scrwin;
4500         compose->attach_clist  = attach_clist;
4501
4502         return attach_scrwin;
4503 }
4504
4505 static void compose_savemsg_checkbtn_cb(GtkWidget *widget, Compose *compose);
4506 static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose);
4507
4508 static GtkWidget *compose_create_others(Compose *compose)
4509 {
4510         GtkWidget *table;
4511         GtkWidget *savemsg_checkbtn;
4512         GtkWidget *savemsg_entry;
4513         GtkWidget *savemsg_select;
4514         
4515         guint rowcount = 0;
4516         gchar *folderidentifier;
4517
4518         /* Table for settings */
4519         table = gtk_table_new(3, 1, FALSE);
4520         gtk_widget_show(table);
4521         gtk_table_set_row_spacings(GTK_TABLE(table), VSPACING_NARROW);
4522         rowcount = 0;
4523
4524         /* Save Message to folder */
4525         savemsg_checkbtn = gtk_check_button_new_with_label(_("Save Message to "));
4526         gtk_widget_show(savemsg_checkbtn);
4527         gtk_table_attach(GTK_TABLE(table), savemsg_checkbtn, 0, 1, rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);
4528         if (account_get_special_folder(compose->account, F_OUTBOX)) {
4529                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(savemsg_checkbtn), prefs_common.savemsg);
4530         }
4531         gtk_signal_connect(GTK_OBJECT(savemsg_checkbtn), "toggled",
4532                             GTK_SIGNAL_FUNC(compose_savemsg_checkbtn_cb), compose);
4533
4534         savemsg_entry = gtk_entry_new();
4535         gtk_widget_show(savemsg_entry);
4536         gtk_table_attach_defaults(GTK_TABLE(table), savemsg_entry, 1, 2, rowcount, rowcount + 1);
4537         gtk_editable_set_editable(GTK_EDITABLE(savemsg_entry), prefs_common.savemsg);
4538         if (account_get_special_folder(compose->account, F_OUTBOX)) {
4539                 folderidentifier = folder_item_get_identifier(account_get_special_folder
4540                                   (compose->account, F_OUTBOX));
4541                 gtk_entry_set_text(GTK_ENTRY(savemsg_entry), folderidentifier);
4542                 g_free(folderidentifier);
4543         }
4544
4545         savemsg_select = gtk_button_new_with_label (_("Select ..."));
4546         gtk_widget_show (savemsg_select);
4547         gtk_table_attach(GTK_TABLE(table), savemsg_select, 2, 3, rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);
4548         gtk_signal_connect (GTK_OBJECT (savemsg_select), "clicked",
4549                             GTK_SIGNAL_FUNC (compose_savemsg_select_cb),
4550                             compose);
4551
4552         rowcount++;
4553
4554         compose->savemsg_checkbtn = savemsg_checkbtn;
4555         compose->savemsg_entry = savemsg_entry;
4556
4557         return table;   
4558 }
4559
4560 static void compose_savemsg_checkbtn_cb(GtkWidget *widget, Compose *compose) 
4561 {
4562         gtk_editable_set_editable(GTK_EDITABLE(compose->savemsg_entry),
4563                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn)));
4564 }
4565
4566 static void compose_savemsg_select_cb(GtkWidget *widget, Compose *compose)
4567 {
4568         FolderItem *dest;
4569         gchar * path;
4570
4571         dest = foldersel_folder_sel(NULL, FOLDER_SEL_COPY, NULL);
4572         if (!dest) return;
4573
4574         path = folder_item_get_identifier(dest);
4575
4576         gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), path);
4577         g_free(path);
4578 }
4579
4580 static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
4581 {
4582         Compose   *compose;
4583         GtkWidget *window;
4584         GtkWidget *vbox;
4585         GtkWidget *menubar;
4586         GtkWidget *handlebox;
4587
4588         GtkWidget *notebook;
4589
4590         GtkWidget *vbox2;
4591
4592         GtkWidget *label;
4593         GtkWidget *subject_hbox;
4594         GtkWidget *subject_frame;
4595         GtkWidget *subject_entry;
4596         GtkWidget *subject;
4597         GtkWidget *paned;
4598
4599         GtkWidget *edit_vbox;
4600         GtkWidget *ruler_hbox;
4601         GtkWidget *ruler;
4602         GtkWidget *scrolledwin;
4603         GtkWidget *text;
4604
4605         UndoMain *undostruct;
4606
4607         gchar *titles[N_ATTACH_COLS];
4608         guint n_menu_entries;
4609         GtkStyle  *style, *new_style;
4610         GdkColormap *cmap;
4611         GdkColor color[1];
4612         gboolean success[1];
4613         GtkWidget *popupmenu;
4614         GtkItemFactory *popupfactory;
4615         GtkItemFactory *ifactory;
4616         GtkWidget *tmpl_menu;
4617         gint n_entries;
4618
4619 #if USE_ASPELL
4620         GtkAspell * gtkaspell = NULL;
4621 #endif
4622
4623         static GdkGeometry geometry;
4624
4625         g_return_val_if_fail(account != NULL, NULL);
4626
4627         debug_print("Creating compose window...\n");
4628         compose = g_new0(Compose, 1);
4629
4630         titles[COL_MIMETYPE] = _("MIME type");
4631         titles[COL_SIZE]     = _("Size");
4632         titles[COL_NAME]     = _("Name");
4633
4634         compose->account = account;
4635
4636         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
4637         gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
4638         gtk_widget_set_usize(window, -1, prefs_common.compose_height);
4639         gtk_window_set_wmclass(GTK_WINDOW(window), "compose window", "Sylpheed");
4640
4641         if (!geometry.max_width) {
4642                 geometry.max_width = gdk_screen_width();
4643                 geometry.max_height = gdk_screen_height();
4644         }
4645         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL,
4646                                       &geometry, GDK_HINT_MAX_SIZE);
4647
4648         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
4649                            GTK_SIGNAL_FUNC(compose_delete_cb), compose);
4650         gtk_signal_connect(GTK_OBJECT(window), "destroy",
4651                            GTK_SIGNAL_FUNC(compose_destroy_cb), compose);
4652         MANAGE_WINDOW_SIGNALS_CONNECT(window);
4653         gtk_widget_realize(window);
4654
4655         gtkut_widget_set_composer_icon(window);
4656
4657         vbox = gtk_vbox_new(FALSE, 0);
4658         gtk_container_add(GTK_CONTAINER(window), vbox);
4659
4660         n_menu_entries = sizeof(compose_entries) / sizeof(compose_entries[0]);
4661         menubar = menubar_create(window, compose_entries,
4662                                  n_menu_entries, "<Compose>", compose);
4663         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
4664
4665         handlebox = gtk_handle_box_new();
4666         gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
4667
4668         compose->toolbar = toolbar_create(TOOLBAR_COMPOSE, handlebox,
4669                                           (gpointer)compose);
4670
4671         vbox2 = gtk_vbox_new(FALSE, 2);
4672         gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
4673         gtk_container_set_border_width(GTK_CONTAINER(vbox2), BORDER_WIDTH);
4674         
4675         /* Notebook */
4676         notebook = gtk_notebook_new();
4677         gtk_widget_set_usize(notebook, -1, 130);
4678         gtk_widget_show(notebook);
4679
4680         /* header labels and entries */
4681         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_header(compose), gtk_label_new(_("Header")));
4682         /* attachment list */
4683         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_attach(compose), gtk_label_new(_("Attachments")));
4684         /* Others Tab */
4685         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), compose_create_others(compose), gtk_label_new(_("Others")));
4686
4687         /* Subject */
4688         subject_hbox = gtk_hbox_new(FALSE, 0);
4689         gtk_widget_show(subject_hbox);
4690
4691         subject_frame = gtk_frame_new(NULL);
4692         gtk_frame_set_shadow_type(GTK_FRAME(subject_frame), GTK_SHADOW_OUT);
4693         gtk_box_pack_start(GTK_BOX(subject_hbox), subject_frame, TRUE, TRUE, BORDER_WIDTH+1);
4694         gtk_widget_show(subject_frame);
4695
4696         subject = gtk_hbox_new(FALSE, 0);
4697         gtk_container_set_border_width(GTK_CONTAINER(subject), BORDER_WIDTH);
4698         gtk_widget_show(subject);
4699
4700         label = gtk_label_new(_("Subject:"));
4701         gtk_box_pack_start(GTK_BOX(subject), label, FALSE, FALSE, 4);
4702         gtk_widget_show(label);
4703
4704         subject_entry = gtk_entry_new();
4705         gtk_box_pack_start(GTK_BOX(subject), subject_entry, TRUE, TRUE, 2);
4706         gtk_signal_connect(GTK_OBJECT(subject_entry), "activate", GTK_SIGNAL_FUNC(text_activated), compose);
4707         gtk_widget_show(subject_entry);
4708         compose->subject_entry = subject_entry;
4709         gtk_container_add(GTK_CONTAINER(subject_frame), subject);
4710         
4711         edit_vbox = gtk_vbox_new(FALSE, 0);
4712 #if 0 /* NEW COMPOSE GUI */
4713         gtk_box_pack_start(GTK_BOX(vbox2), edit_vbox, TRUE, TRUE, 0);
4714 #endif
4715
4716         gtk_box_pack_start(GTK_BOX(edit_vbox), subject_hbox, FALSE, FALSE, 0);
4717
4718         /* ruler */
4719         ruler_hbox = gtk_hbox_new(FALSE, 0);
4720         gtk_box_pack_start(GTK_BOX(edit_vbox), ruler_hbox, FALSE, FALSE, 0);
4721
4722         ruler = gtk_shruler_new();
4723         gtk_ruler_set_range(GTK_RULER(ruler), 0.0, 100.0, 1.0, 100.0);
4724         gtk_box_pack_start(GTK_BOX(ruler_hbox), ruler, TRUE, TRUE,
4725                            BORDER_WIDTH + 1);
4726         gtk_widget_set_usize(ruler_hbox, 1, -1);
4727
4728         /* text widget */
4729         scrolledwin = gtk_scrolled_window_new(NULL, NULL);
4730         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
4731                                        GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
4732         gtk_box_pack_start(GTK_BOX(edit_vbox), scrolledwin, TRUE, TRUE, 0);
4733         gtk_widget_set_usize(scrolledwin, prefs_common.compose_width, -1);
4734
4735         text = gtk_stext_new(gtk_scrolled_window_get_hadjustment
4736                             (GTK_SCROLLED_WINDOW(scrolledwin)),
4737                             gtk_scrolled_window_get_vadjustment
4738                             (GTK_SCROLLED_WINDOW(scrolledwin)));
4739         GTK_STEXT(text)->default_tab_width = 8;
4740         gtk_stext_set_editable(GTK_STEXT(text), TRUE);
4741
4742         if (prefs_common.block_cursor) {
4743                 GTK_STEXT(text)->cursor_type = GTK_STEXT_CURSOR_BLOCK;
4744         }
4745         
4746         if (prefs_common.smart_wrapping) {      
4747                 gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
4748                 gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
4749         }               
4750
4751         gtk_container_add(GTK_CONTAINER(scrolledwin), text);
4752
4753         gtk_signal_connect(GTK_OBJECT(text), "changed",
4754                            GTK_SIGNAL_FUNC(compose_changed_cb), compose);
4755         gtk_signal_connect(GTK_OBJECT(text), "grab_focus",
4756                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
4757         gtk_signal_connect(GTK_OBJECT(text), "activate",
4758                            GTK_SIGNAL_FUNC(text_activated), compose);
4759         gtk_signal_connect(GTK_OBJECT(text), "insert_text",
4760                            GTK_SIGNAL_FUNC(text_inserted), compose);
4761         gtk_signal_connect_after(GTK_OBJECT(text), "button_press_event",
4762                                  GTK_SIGNAL_FUNC(compose_button_press_cb),
4763                                  edit_vbox);
4764 #if 0
4765         gtk_signal_connect_after(GTK_OBJECT(text), "key_press_event",
4766                                  GTK_SIGNAL_FUNC(compose_key_press_cb),
4767                                  compose);
4768 #endif
4769         gtk_signal_connect_after(GTK_OBJECT(text), "size_allocate",
4770                                  GTK_SIGNAL_FUNC(compose_edit_size_alloc),
4771                                  ruler);
4772
4773         /* drag and drop */
4774         gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
4775                           GDK_ACTION_COPY | GDK_ACTION_MOVE);
4776         gtk_signal_connect(GTK_OBJECT(text), "drag_data_received",
4777                            GTK_SIGNAL_FUNC(compose_insert_drag_received_cb),
4778                            compose);
4779         gtk_widget_show_all(vbox);
4780
4781         /* pane between attach clist and text */
4782         paned = gtk_vpaned_new();
4783         gtk_paned_set_gutter_size(GTK_PANED(paned), 12);
4784         gtk_paned_set_handle_size(GTK_PANED(paned), 12);
4785         gtk_container_add(GTK_CONTAINER(vbox2), paned);
4786         gtk_paned_add1(GTK_PANED(paned), notebook);
4787         gtk_paned_add2(GTK_PANED(paned), edit_vbox);
4788         gtk_widget_show_all(paned);
4789
4790         style = gtk_widget_get_style(text);
4791
4792         /* workaround for the slow down of GtkSText when using Pixmap theme */
4793         if (style->engine) {
4794                 GtkThemeEngine *engine;
4795
4796                 engine = style->engine;
4797                 style->engine = NULL;
4798                 new_style = gtk_style_copy(style);
4799                 style->engine = engine;
4800         } else
4801                 new_style = gtk_style_copy(style);
4802
4803         if (prefs_common.textfont) {
4804                 GdkFont *font;
4805
4806                 if ((font = gtkut_font_load(prefs_common.textfont)) != NULL) {
4807                         gdk_font_unref(new_style->font);
4808                         new_style->font = font;
4809                 }
4810         }
4811
4812         gtk_widget_set_style(text, new_style);
4813
4814         color[0] = quote_color;
4815         cmap = gdk_window_get_colormap(window->window);
4816         gdk_colormap_alloc_colors(cmap, color, 1, FALSE, TRUE, success);
4817         if (success[0] == FALSE) {
4818                 g_warning("Compose: color allocation failed.\n");
4819                 style = gtk_widget_get_style(text);
4820                 quote_color = style->black;
4821         }
4822
4823         n_entries = sizeof(compose_popup_entries) /
4824                 sizeof(compose_popup_entries[0]);
4825         popupmenu = menu_create_items(compose_popup_entries, n_entries,
4826                                       "<Compose>", &popupfactory,
4827                                       compose);
4828
4829         ifactory = gtk_item_factory_from_widget(menubar);
4830         menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
4831         menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
4832
4833         tmpl_menu = gtk_item_factory_get_item(ifactory, "/Tools/Template");
4834 #if 0 /* NEW COMPOSE GUI */
4835         gtk_widget_hide(bcc_hbox);
4836         gtk_widget_hide(bcc_entry);
4837         gtk_widget_hide(reply_hbox);
4838         gtk_widget_hide(reply_entry);
4839         gtk_widget_hide(followup_hbox);
4840         gtk_widget_hide(followup_entry);
4841         gtk_widget_hide(ruler_hbox);
4842         gtk_table_set_row_spacing(GTK_TABLE(table), 4, 0);
4843         gtk_table_set_row_spacing(GTK_TABLE(table), 5, 0);
4844         gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
4845
4846         if (account->protocol == A_NNTP) {
4847                 gtk_widget_hide(to_hbox);
4848                 gtk_widget_hide(to_entry);
4849                 gtk_widget_hide(cc_hbox);
4850                 gtk_widget_hide(cc_entry);
4851                 gtk_table_set_row_spacing(GTK_TABLE(table), 1, 0);
4852                 gtk_table_set_row_spacing(GTK_TABLE(table), 3, 0);
4853         } else {
4854                 gtk_widget_hide(newsgroups_hbox);
4855                 gtk_widget_hide(newsgroups_entry);
4856                 gtk_table_set_row_spacing(GTK_TABLE(table), 2, 0);
4857         }
4858 #endif
4859
4860         update_compose_actions_menu(ifactory, "/Tools/Actions", compose);
4861
4862
4863         undostruct = undo_init(text);
4864         undo_set_change_state_func(undostruct, &compose_undo_state_changed,
4865                                    menubar);
4866
4867         address_completion_start(window);
4868
4869         compose->window        = window;
4870         compose->vbox          = vbox;
4871         compose->menubar       = menubar;
4872         compose->handlebox     = handlebox;
4873
4874         compose->vbox2         = vbox2;
4875
4876         compose->paned = paned;
4877
4878         compose->edit_vbox     = edit_vbox;
4879         compose->ruler_hbox    = ruler_hbox;
4880         compose->ruler         = ruler;
4881         compose->scrolledwin   = scrolledwin;
4882         compose->text          = text;
4883
4884         compose->focused_editable = NULL;
4885
4886         compose->popupmenu    = popupmenu;
4887         compose->popupfactory = popupfactory;
4888
4889         compose->tmpl_menu = tmpl_menu;
4890
4891         compose->mode = mode;
4892
4893         compose->targetinfo = NULL;
4894         compose->replyinfo  = NULL;
4895         compose->fwdinfo    = NULL;
4896
4897         compose->replyto     = NULL;
4898         compose->cc          = NULL;
4899         compose->bcc         = NULL;
4900         compose->followup_to = NULL;
4901
4902         compose->ml_post     = NULL;
4903
4904         compose->inreplyto   = NULL;
4905         compose->references  = NULL;
4906         compose->msgid       = NULL;
4907         compose->boundary    = NULL;
4908
4909 #if USE_GPGME
4910         compose->use_signing    = FALSE;
4911         compose->use_encryption = FALSE;
4912 #endif /* USE_GPGME */
4913
4914         compose->modified = FALSE;
4915
4916         compose->return_receipt = FALSE;
4917         compose->paste_as_quotation = FALSE;
4918
4919         compose->to_list        = NULL;
4920         compose->newsgroup_list = NULL;
4921
4922         compose->exteditor_file    = NULL;
4923         compose->exteditor_pid     = -1;
4924         compose->exteditor_readdes = -1;
4925         compose->exteditor_tag     = -1;
4926
4927         compose->redirect_filename = NULL;
4928         compose->undostruct = undostruct;
4929 #if USE_ASPELL
4930         menu_set_sensitive(ifactory, "/Spelling", FALSE);
4931         if (mode != COMPOSE_REDIRECT) {
4932                 if (prefs_common.enable_aspell && prefs_common.dictionary &&
4933                     strcmp(prefs_common.dictionary, _("None"))) {
4934                         gtkaspell = gtkaspell_new((const gchar*)prefs_common.dictionary,
4935                                                   conv_get_current_charset_str(),
4936                                                   prefs_common.misspelled_col,
4937                                                   prefs_common.check_while_typing,
4938                                                   prefs_common.use_alternate,
4939                                                   GTK_STEXT(text));
4940                         if (!gtkaspell) {
4941                                 alertpanel_error(_("Spell checker could not be started.\n%s"), gtkaspellcheckers->error_message);
4942                                 gtkaspell_checkers_reset_error();
4943                         } else {
4944
4945                                 GtkWidget *menuitem;
4946
4947                                 if (!gtkaspell_set_sug_mode(gtkaspell, prefs_common.aspell_sugmode)) {
4948                                         debug_print("Aspell: could not set suggestion mode %s\n",
4949                                         gtkaspellcheckers->error_message);
4950                                         gtkaspell_checkers_reset_error();
4951                                 }
4952
4953                                 menuitem = gtk_item_factory_get_item(ifactory, "/Spelling/Spelling Configuration");
4954                                 gtkaspell_populate_submenu(gtkaspell, menuitem);
4955                                 menu_set_sensitive(ifactory, "/Spelling", TRUE);
4956                                 }
4957                 }
4958         }
4959 #endif
4960
4961         compose_select_account(compose, account);
4962
4963 #if USE_ASPELL
4964         compose->gtkaspell      = gtkaspell;
4965 #endif
4966
4967         if (account->set_autocc && account->auto_cc && mode != COMPOSE_REEDIT)
4968                 compose_entry_append(compose, account->auto_cc, COMPOSE_CC);
4969
4970         if (account->set_autobcc) 
4971                 compose_entry_append(compose, account->auto_bcc, COMPOSE_BCC);
4972         
4973         if (account->set_autoreplyto && account->auto_replyto && mode != COMPOSE_REEDIT)
4974                 compose_entry_append(compose, account->auto_replyto, COMPOSE_REPLYTO);
4975
4976
4977         if (account->protocol != A_NNTP)
4978                 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("To:") : "To:");
4979         else
4980                 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), prefs_common.trans_hdr ? _("Newsgroups:") : "Newsgroups:");
4981
4982         addressbook_set_target_compose(compose);
4983         update_compose_actions_menu(ifactory, "/Tools/Actions", compose);
4984         
4985         if (mode != COMPOSE_REDIRECT)
4986                 compose_set_template_menu(compose);
4987         else {
4988                 GtkWidget *menuitem;
4989                 menuitem = gtk_item_factory_get_item(ifactory, "/Tools/Template");
4990                 menu_set_sensitive(ifactory, "/Tools/Template", FALSE);
4991         }
4992
4993         compose_list = g_list_append(compose_list, compose);
4994
4995         if (!prefs_common.show_ruler)
4996                 gtk_widget_hide(ruler_hbox);
4997
4998         /* Priority */
4999         compose->priority = PRIORITY_NORMAL;
5000         compose_update_priority_menu_item(compose);
5001         
5002 #if USE_GPGME
5003         activate_gnupg_mode(compose, account);
5004 #endif  
5005         toolbar_set_style(compose->toolbar->toolbar, compose->handlebox, prefs_common.toolbar_style);
5006         gtk_widget_show(window);
5007         
5008         return compose;
5009 }
5010
5011 static GtkWidget *compose_account_option_menu_create(Compose *compose)
5012 {
5013         GList *accounts;
5014         GtkWidget *hbox;
5015         GtkWidget *optmenu;
5016         GtkWidget *menu;
5017         gint num = 0, def_menu = 0;
5018
5019         accounts = account_get_list();
5020         g_return_val_if_fail(accounts != NULL, NULL);
5021
5022         hbox = gtk_hbox_new(FALSE, 0);
5023         optmenu = gtk_option_menu_new();
5024         gtk_box_pack_start(GTK_BOX(hbox), optmenu, FALSE, FALSE, 0);
5025         menu = gtk_menu_new();
5026
5027         for (; accounts != NULL; accounts = accounts->next, num++) {
5028                 PrefsAccount *ac = (PrefsAccount *)accounts->data;
5029                 GtkWidget *menuitem;
5030                 gchar *name;
5031
5032                 if (ac == compose->account) def_menu = num;
5033
5034                 if (ac->name)
5035                         name = g_strdup_printf("%s: %s <%s>",
5036                                                ac->account_name,
5037                                                ac->name, ac->address);
5038                 else
5039                         name = g_strdup_printf("%s: %s",
5040                                                ac->account_name, ac->address);
5041                 MENUITEM_ADD(menu, menuitem, name, ac->account_id);
5042                 g_free(name);
5043                 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
5044                                    GTK_SIGNAL_FUNC(account_activated),
5045                                    compose);
5046         }
5047
5048         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), menu);
5049         gtk_option_menu_set_history(GTK_OPTION_MENU(optmenu), def_menu);
5050
5051         return hbox;
5052 }
5053
5054 static void compose_set_priority_cb(gpointer data,
5055                                     guint action,
5056                                     GtkWidget *widget)
5057 {
5058         Compose *compose = (Compose *) data;
5059         compose->priority = action;
5060 }
5061
5062 static void compose_update_priority_menu_item(Compose * compose)
5063 {
5064         GtkItemFactory *ifactory;
5065         GtkWidget *menuitem = NULL;
5066
5067         ifactory = gtk_item_factory_from_widget(compose->menubar);
5068         
5069         switch (compose->priority) {
5070                 case PRIORITY_HIGHEST:
5071                         menuitem = gtk_item_factory_get_item
5072                                 (ifactory, "/Message/Priority/Highest");
5073                         break;
5074                 case PRIORITY_HIGH:
5075                         menuitem = gtk_item_factory_get_item
5076                                 (ifactory, "/Message/Priority/High");
5077                         break;
5078                 case PRIORITY_NORMAL:
5079                         menuitem = gtk_item_factory_get_item
5080                                 (ifactory, "/Message/Priority/Normal");
5081                         break;
5082                 case PRIORITY_LOW:
5083                         menuitem = gtk_item_factory_get_item
5084                                 (ifactory, "/Message/Priority/Low");
5085                         break;
5086                 case PRIORITY_LOWEST:
5087                         menuitem = gtk_item_factory_get_item
5088                                 (ifactory, "/Message/Priority/Lowest");
5089                         break;
5090         }
5091         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
5092 }       
5093
5094 #if USE_GPGME 
5095 static void compose_set_gnupg_mode_cb(gpointer data,
5096                                     guint action,
5097                                     GtkWidget *widget)
5098 {
5099         Compose *compose = (Compose *) data;
5100         compose->gnupg_mode = action;
5101 }
5102
5103 static void compose_update_gnupg_mode_menu_item(Compose * compose)
5104 {
5105         GtkItemFactory *ifactory;
5106         GtkWidget *menuitem = NULL;
5107
5108         ifactory = gtk_item_factory_from_widget(compose->menubar);
5109         
5110         switch (compose->gnupg_mode) {
5111                 case GNUPG_MODE_DETACH:
5112                         menuitem = gtk_item_factory_get_item
5113                                 (ifactory, "/Message/Mode/MIME");
5114                         break;
5115                 case GNUPG_MODE_INLINE:
5116                         menuitem = gtk_item_factory_get_item
5117                                 (ifactory, "/Message/Mode/Inline");
5118                         break;
5119         }
5120         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
5121         
5122         if (compose->use_encryption == TRUE || compose->use_signing == TRUE)
5123                 menu_set_sensitive(ifactory, "/Message/Mode", TRUE);
5124         else 
5125                 menu_set_sensitive(ifactory, "/Message/Mode", FALSE);
5126 }       
5127 #endif
5128  
5129 static void compose_set_template_menu(Compose *compose)
5130 {
5131         GSList *tmpl_list, *cur;
5132         GtkWidget *menu;
5133         GtkWidget *item;
5134
5135         tmpl_list = template_get_config();
5136
5137         menu = gtk_menu_new();
5138
5139         for (cur = tmpl_list; cur != NULL; cur = cur->next) {
5140                 Template *tmpl = (Template *)cur->data;
5141
5142                 item = gtk_menu_item_new_with_label(tmpl->name);
5143                 gtk_menu_append(GTK_MENU(menu), item);
5144                 gtk_signal_connect(GTK_OBJECT(item), "activate",
5145                                    GTK_SIGNAL_FUNC(compose_template_activate_cb),
5146                                    compose);
5147                 gtk_object_set_data(GTK_OBJECT(item), "template", tmpl);
5148                 gtk_widget_show(item);
5149         }
5150
5151         gtk_widget_show(menu);
5152         gtk_menu_item_set_submenu(GTK_MENU_ITEM(compose->tmpl_menu), menu);
5153 }
5154
5155 void compose_reflect_prefs_all(void)
5156 {
5157         GList *cur;
5158         Compose *compose;
5159
5160         for (cur = compose_list; cur != NULL; cur = cur->next) {
5161                 compose = (Compose *)cur->data;
5162                 compose_set_template_menu(compose);
5163         }
5164 }
5165
5166 void compose_reflect_prefs_pixmap_theme(void)
5167 {
5168         GList *cur;
5169         Compose *compose;
5170
5171         for (cur = compose_list; cur != NULL; cur = cur->next) {
5172                 compose = (Compose *)cur->data;
5173                 toolbar_update(TOOLBAR_COMPOSE, compose);
5174         }
5175 }
5176
5177 static void compose_template_apply(Compose *compose, Template *tmpl,
5178                                    gboolean replace)
5179 {
5180         gchar *qmark;
5181         gchar *parsed_str;
5182
5183         if (!tmpl || !tmpl->value) return;
5184
5185         gtk_stext_freeze(GTK_STEXT(compose->text));
5186
5187         if (tmpl->subject && *tmpl->subject != '\0')
5188                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry),
5189                                    tmpl->subject);
5190         if (tmpl->to && *tmpl->to != '\0')
5191                 compose_entry_append(compose, tmpl->to, COMPOSE_TO);
5192         if (tmpl->cc && *tmpl->cc != '\0')
5193                 compose_entry_append(compose, tmpl->cc, COMPOSE_CC);
5194
5195         if (tmpl->bcc && *tmpl->bcc != '\0')
5196                 compose_entry_append(compose, tmpl->bcc, COMPOSE_BCC);
5197
5198         if (replace)
5199                 gtk_stext_clear(GTK_STEXT(compose->text));
5200
5201         if (compose->replyinfo == NULL) {
5202                 parsed_str = compose_quote_fmt(compose, NULL, tmpl->value,
5203                                                NULL, NULL);
5204         } else {
5205                 if (prefs_common.quotemark && *prefs_common.quotemark)
5206                         qmark = prefs_common.quotemark;
5207                 else
5208                         qmark = "> ";
5209
5210                 parsed_str = compose_quote_fmt(compose, compose->replyinfo,
5211                                                tmpl->value, qmark, NULL);
5212         }
5213
5214         if (replace && parsed_str && prefs_common.auto_sig)
5215                 compose_insert_sig(compose);
5216
5217         if (replace && parsed_str) {
5218                 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
5219                 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
5220         }
5221
5222         if (parsed_str)
5223                 compose_changed_cb(NULL, compose);
5224
5225         gtk_stext_thaw(GTK_STEXT(compose->text));
5226 }
5227
5228 static void compose_destroy(Compose *compose)
5229 {
5230         gint row;
5231         GtkCList *clist = GTK_CLIST(compose->attach_clist);
5232         AttachInfo *ainfo;
5233
5234         /* NOTE: address_completion_end() does nothing with the window
5235          * however this may change. */
5236         address_completion_end(compose->window);
5237
5238         slist_free_strings(compose->to_list);
5239         g_slist_free(compose->to_list);
5240         slist_free_strings(compose->newsgroup_list);
5241         g_slist_free(compose->newsgroup_list);
5242         slist_free_strings(compose->header_list);
5243         g_slist_free(compose->header_list);
5244
5245         procmsg_msginfo_free(compose->targetinfo);
5246         procmsg_msginfo_free(compose->replyinfo);
5247         procmsg_msginfo_free(compose->fwdinfo);
5248
5249         g_free(compose->replyto);
5250         g_free(compose->cc);
5251         g_free(compose->bcc);
5252         g_free(compose->newsgroups);
5253         g_free(compose->followup_to);
5254
5255         g_free(compose->ml_post);
5256
5257         g_free(compose->inreplyto);
5258         g_free(compose->references);
5259         g_free(compose->msgid);
5260         g_free(compose->boundary);
5261
5262         if (compose->redirect_filename)
5263                 g_free(compose->redirect_filename);
5264
5265         g_free(compose->exteditor_file);
5266
5267         for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
5268              row++)
5269                 compose_attach_info_free(ainfo);
5270
5271         if (addressbook_get_target_compose() == compose)
5272                 addressbook_set_target_compose(NULL);
5273
5274 #if USE_ASPELL
5275         if (compose->gtkaspell) {
5276                 gtkaspell_delete(compose->gtkaspell);
5277         }
5278 #endif
5279
5280         prefs_common.compose_width = compose->scrolledwin->allocation.width;
5281         prefs_common.compose_height = compose->window->allocation.height;
5282
5283         gtk_widget_destroy(compose->paned);
5284
5285         toolbar_destroy(compose->toolbar);
5286         g_free(compose->toolbar);
5287         g_free(compose);
5288
5289         compose_list = g_list_remove(compose_list, compose);
5290 }
5291
5292 static void compose_attach_info_free(AttachInfo *ainfo)
5293 {
5294         g_free(ainfo->file);
5295         g_free(ainfo->content_type);
5296         g_free(ainfo->name);
5297         g_free(ainfo);
5298 }
5299
5300 static void compose_attach_remove_selected(Compose *compose)
5301 {
5302         GtkCList *clist = GTK_CLIST(compose->attach_clist);
5303         AttachInfo *ainfo;
5304         gint row;
5305
5306         while (clist->selection != NULL) {
5307                 row = GPOINTER_TO_INT(clist->selection->data);
5308                 ainfo = gtk_clist_get_row_data(clist, row);
5309                 compose_attach_info_free(ainfo);
5310                 gtk_clist_remove(clist, row);
5311         }
5312 }
5313
5314 static struct _AttachProperty
5315 {
5316         GtkWidget *window;
5317         GtkWidget *mimetype_entry;
5318         GtkWidget *encoding_optmenu;
5319         GtkWidget *path_entry;
5320         GtkWidget *filename_entry;
5321         GtkWidget *ok_btn;
5322         GtkWidget *cancel_btn;
5323 } attach_prop;
5324
5325 static void compose_attach_property(Compose *compose)
5326 {
5327         GtkCList *clist = GTK_CLIST(compose->attach_clist);
5328         AttachInfo *ainfo;
5329         gint row;
5330         GtkOptionMenu *optmenu;
5331         static gboolean cancelled;
5332
5333         if (!clist->selection) return;
5334         row = GPOINTER_TO_INT(clist->selection->data);
5335
5336         ainfo = gtk_clist_get_row_data(clist, row);
5337         if (!ainfo) return;
5338
5339         if (!attach_prop.window)
5340                 compose_attach_property_create(&cancelled);
5341         gtk_widget_grab_focus(attach_prop.ok_btn);
5342         gtk_widget_show(attach_prop.window);
5343         manage_window_set_transient(GTK_WINDOW(attach_prop.window));
5344
5345         optmenu = GTK_OPTION_MENU(attach_prop.encoding_optmenu);
5346         if (ainfo->encoding == ENC_UNKNOWN)
5347                 menu_select_by_data(GTK_MENU(gtk_option_menu_get_menu(optmenu)),
5348                                     GINT_TO_POINTER(ENC_BASE64));
5349         else
5350                 menu_select_by_data(GTK_MENU(gtk_option_menu_get_menu(optmenu)),
5351                                     GINT_TO_POINTER(ainfo->encoding));
5352
5353         gtk_entry_set_text(GTK_ENTRY(attach_prop.mimetype_entry),
5354                            ainfo->content_type ? ainfo->content_type : "");
5355         gtk_entry_set_text(GTK_ENTRY(attach_prop.path_entry),
5356                            ainfo->file ? ainfo->file : "");
5357         gtk_entry_set_text(GTK_ENTRY(attach_prop.filename_entry),
5358                            ainfo->name ? ainfo->name : "");
5359
5360         for (;;) {
5361                 gchar *text;
5362                 gchar *cnttype = NULL;
5363                 gchar *file = NULL;
5364                 off_t size = 0;
5365                 GtkWidget *menu;
5366                 GtkWidget *menuitem;
5367
5368                 cancelled = FALSE;
5369                 gtk_main();
5370
5371                 if (cancelled == TRUE) {
5372                         gtk_widget_hide(attach_prop.window);
5373                         break;
5374                 }
5375
5376                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.mimetype_entry));
5377                 if (*text != '\0') {
5378                         gchar *p;
5379
5380                         text = g_strstrip(g_strdup(text));
5381                         if ((p = strchr(text, '/')) && !strchr(p + 1, '/')) {
5382                                 cnttype = g_strdup(text);
5383                                 g_free(text);
5384                         } else {
5385                                 alertpanel_error(_("Invalid MIME type."));
5386                                 g_free(text);
5387                                 continue;
5388                         }
5389                 }
5390
5391                 menu = gtk_option_menu_get_menu(optmenu);
5392                 menuitem = gtk_menu_get_active(GTK_MENU(menu));
5393                 ainfo->encoding = GPOINTER_TO_INT
5394                         (gtk_object_get_user_data(GTK_OBJECT(menuitem)));
5395
5396                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.path_entry));
5397                 if (*text != '\0') {
5398                         if (is_file_exist(text) &&
5399                             (size = get_file_size(text)) > 0)
5400                                 file = g_strdup(text);
5401                         else {
5402                                 alertpanel_error
5403                                         (_("File doesn't exist or is empty."));
5404                                 g_free(cnttype);
5405                                 continue;
5406                         }
5407                 }
5408
5409                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.filename_entry));
5410                 if (*text != '\0') {
5411                         g_free(ainfo->name);
5412                         ainfo->name = g_strdup(text);
5413                 }
5414
5415                 if (cnttype) {
5416                         g_free(ainfo->content_type);
5417                         ainfo->content_type = cnttype;
5418                 }
5419                 if (file) {
5420                         g_free(ainfo->file);
5421                         ainfo->file = file;
5422                 }
5423                 if (size)
5424                         ainfo->size = size;
5425
5426                 gtk_clist_set_text(clist, row, COL_MIMETYPE,
5427                                    ainfo->content_type);
5428                 gtk_clist_set_text(clist, row, COL_SIZE,
5429                                    to_human_readable(ainfo->size));
5430                 gtk_clist_set_text(clist, row, COL_NAME, ainfo->name);
5431
5432                 gtk_widget_hide(attach_prop.window);
5433                 break;
5434         }
5435 }
5436
5437 #define SET_LABEL_AND_ENTRY(str, entry, top) \
5438 { \
5439         label = gtk_label_new(str); \
5440         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), \
5441                          GTK_FILL, 0, 0, 0); \
5442         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); \
5443  \
5444         entry = gtk_entry_new(); \
5445         gtk_table_attach(GTK_TABLE(table), entry, 1, 2, top, (top + 1), \
5446                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); \
5447 }
5448
5449 static void compose_attach_property_create(gboolean *cancelled)
5450 {
5451         GtkWidget *window;
5452         GtkWidget *vbox;
5453         GtkWidget *table;
5454         GtkWidget *label;
5455         GtkWidget *mimetype_entry;
5456         GtkWidget *hbox;
5457         GtkWidget *optmenu;
5458         GtkWidget *optmenu_menu;
5459         GtkWidget *menuitem;
5460         GtkWidget *path_entry;
5461         GtkWidget *filename_entry;
5462         GtkWidget *hbbox;
5463         GtkWidget *ok_btn;
5464         GtkWidget *cancel_btn;
5465         GList     *mime_type_list, *strlist;
5466
5467         debug_print("Creating attach_property window...\n");
5468
5469         window = gtk_window_new(GTK_WINDOW_DIALOG);
5470         gtk_widget_set_usize(window, 480, -1);
5471         gtk_container_set_border_width(GTK_CONTAINER(window), 8);
5472         gtk_window_set_title(GTK_WINDOW(window), _("Properties"));
5473         gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
5474         gtk_window_set_modal(GTK_WINDOW(window), TRUE);
5475         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
5476                            GTK_SIGNAL_FUNC(attach_property_delete_event),
5477                            cancelled);
5478         gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
5479                            GTK_SIGNAL_FUNC(attach_property_key_pressed),
5480                            cancelled);
5481
5482         vbox = gtk_vbox_new(FALSE, 8);
5483         gtk_container_add(GTK_CONTAINER(window), vbox);
5484
5485         table = gtk_table_new(4, 2, FALSE);
5486         gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
5487         gtk_table_set_row_spacings(GTK_TABLE(table), 8);
5488         gtk_table_set_col_spacings(GTK_TABLE(table), 8);
5489
5490         label = gtk_label_new(_("MIME type")); 
5491         gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, (0 + 1), 
5492                          GTK_FILL, 0, 0, 0); 
5493         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); 
5494         mimetype_entry = gtk_combo_new(); 
5495         gtk_table_attach(GTK_TABLE(table), mimetype_entry, 1, 2, 0, (0 + 1), 
5496                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
5497                          
5498         /* stuff with list */
5499         mime_type_list = procmime_get_mime_type_list();
5500         strlist = NULL;
5501         for (; mime_type_list != NULL; mime_type_list = mime_type_list->next) {
5502                 MimeType *type = (MimeType *) mime_type_list->data;
5503                 strlist = g_list_append(strlist, 
5504                                 g_strdup_printf("%s/%s",
5505                                         type->type, type->sub_type));
5506         }
5507         
5508         gtk_combo_set_popdown_strings(GTK_COMBO(mimetype_entry), strlist);
5509
5510         for (mime_type_list = strlist; mime_type_list != NULL; 
5511                 mime_type_list = mime_type_list->next)
5512                 g_free(mime_type_list->data);
5513         g_list_free(strlist);
5514                          
5515         mimetype_entry = GTK_COMBO(mimetype_entry)->entry;                       
5516
5517         label = gtk_label_new(_("Encoding"));
5518         gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
5519                          GTK_FILL, 0, 0, 0);
5520         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
5521
5522         hbox = gtk_hbox_new(FALSE, 0);
5523         gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 1, 2,
5524                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
5525
5526         optmenu = gtk_option_menu_new();
5527         gtk_box_pack_start(GTK_BOX(hbox), optmenu, TRUE, TRUE, 0);
5528
5529         optmenu_menu = gtk_menu_new();
5530         MENUITEM_ADD(optmenu_menu, menuitem, "7bit", ENC_7BIT);
5531         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
5532 #if 0
5533         gtk_widget_set_sensitive(menuitem, FALSE);
5534 #endif
5535         MENUITEM_ADD(optmenu_menu, menuitem, "8bit", ENC_8BIT);
5536         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
5537 #if 0
5538         gtk_widget_set_sensitive(menuitem, FALSE);
5539 #endif
5540         MENUITEM_ADD(optmenu_menu, menuitem, "quoted-printable",
5541                      ENC_QUOTED_PRINTABLE);
5542         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
5543
5544         MENUITEM_ADD(optmenu_menu, menuitem, "base64", ENC_BASE64);
5545
5546         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
5547
5548         SET_LABEL_AND_ENTRY(_("Path"),      path_entry,     2);
5549         SET_LABEL_AND_ENTRY(_("File name"), filename_entry, 3);
5550
5551         gtkut_button_set_create(&hbbox, &ok_btn, _("OK"),
5552                                 &cancel_btn, _("Cancel"), NULL, NULL);
5553         gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
5554         gtk_widget_grab_default(ok_btn);
5555
5556         gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
5557                            GTK_SIGNAL_FUNC(attach_property_ok),
5558                            cancelled);
5559         gtk_signal_connect(GTK_OBJECT(cancel_btn), "clicked",
5560                            GTK_SIGNAL_FUNC(attach_property_cancel),
5561                            cancelled);
5562
5563         gtk_widget_show_all(vbox);
5564
5565         attach_prop.window           = window;
5566         attach_prop.mimetype_entry   = mimetype_entry;
5567         attach_prop.encoding_optmenu = optmenu;
5568         attach_prop.path_entry       = path_entry;
5569         attach_prop.filename_entry   = filename_entry;
5570         attach_prop.ok_btn           = ok_btn;
5571         attach_prop.cancel_btn       = cancel_btn;
5572 }
5573
5574 #undef SET_LABEL_AND_ENTRY
5575
5576 static void attach_property_ok(GtkWidget *widget, gboolean *cancelled)
5577 {
5578         *cancelled = FALSE;
5579         gtk_main_quit();
5580 }
5581
5582 static void attach_property_cancel(GtkWidget *widget, gboolean *cancelled)
5583 {
5584         *cancelled = TRUE;
5585         gtk_main_quit();
5586 }
5587
5588 static gint attach_property_delete_event(GtkWidget *widget, GdkEventAny *event,
5589                                          gboolean *cancelled)
5590 {
5591         *cancelled = TRUE;
5592         gtk_main_quit();
5593
5594         return TRUE;
5595 }
5596
5597 static void attach_property_key_pressed(GtkWidget *widget, GdkEventKey *event,
5598                                         gboolean *cancelled)
5599 {
5600         if (event && event->keyval == GDK_Escape) {
5601                 *cancelled = TRUE;
5602                 gtk_main_quit();
5603         }
5604 }
5605
5606 static void compose_exec_ext_editor(Compose *compose)
5607 {
5608         gchar *tmp;
5609         pid_t pid;
5610         gint pipe_fds[2];
5611
5612         tmp = g_strdup_printf("%s%ctmpmsg.%08x", get_tmp_dir(),
5613                               G_DIR_SEPARATOR, (gint)compose);
5614
5615         if (pipe(pipe_fds) < 0) {
5616                 perror("pipe");
5617                 g_free(tmp);
5618                 return;
5619         }
5620
5621         if ((pid = fork()) < 0) {
5622                 perror("fork");
5623                 g_free(tmp);
5624                 return;
5625         }
5626
5627         if (pid != 0) {
5628                 /* close the write side of the pipe */
5629                 close(pipe_fds[1]);
5630
5631                 compose->exteditor_file    = g_strdup(tmp);
5632                 compose->exteditor_pid     = pid;
5633                 compose->exteditor_readdes = pipe_fds[0];
5634
5635                 compose_set_ext_editor_sensitive(compose, FALSE);
5636
5637                 compose->exteditor_tag =
5638                         gdk_input_add(pipe_fds[0], GDK_INPUT_READ,
5639                                       compose_input_cb, compose);
5640         } else {        /* process-monitoring process */
5641                 pid_t pid_ed;
5642
5643                 if (setpgid(0, 0))
5644                         perror("setpgid");
5645
5646                 /* close the read side of the pipe */
5647                 close(pipe_fds[0]);
5648
5649                 if (compose_write_body_to_file(compose, tmp) < 0) {
5650                         fd_write(pipe_fds[1], "2\n", 2);
5651                         _exit(1);
5652                 }
5653
5654                 pid_ed = compose_exec_ext_editor_real(tmp);
5655                 if (pid_ed < 0) {
5656                         fd_write(pipe_fds[1], "1\n", 2);
5657                         _exit(1);
5658                 }
5659
5660                 /* wait until editor is terminated */
5661                 waitpid(pid_ed, NULL, 0);
5662
5663                 fd_write(pipe_fds[1], "0\n", 2);
5664
5665                 close(pipe_fds[1]);
5666                 _exit(0);
5667         }
5668
5669         g_free(tmp);
5670 }
5671
5672 static gint compose_exec_ext_editor_real(const gchar *file)
5673 {
5674         static gchar *def_cmd = "emacs %s";
5675         gchar buf[1024];
5676         gchar *p;
5677         gchar **cmdline;
5678         pid_t pid;
5679
5680         g_return_val_if_fail(file != NULL, -1);
5681
5682         if ((pid = fork()) < 0) {
5683                 perror("fork");
5684                 return -1;
5685         }
5686
5687         if (pid != 0) return pid;
5688
5689         /* grandchild process */
5690
5691         if (setpgid(0, getppid()))
5692                 perror("setpgid");
5693
5694         if (prefs_common.ext_editor_cmd &&
5695             (p = strchr(prefs_common.ext_editor_cmd, '%')) &&
5696             *(p + 1) == 's' && !strchr(p + 2, '%')) {
5697                 g_snprintf(buf, sizeof(buf), prefs_common.ext_editor_cmd, file);
5698         } else {
5699                 if (prefs_common.ext_editor_cmd)
5700                         g_warning("External editor command line is invalid: `%s'\n",
5701                                   prefs_common.ext_editor_cmd);
5702                 g_snprintf(buf, sizeof(buf), def_cmd, file);
5703         }
5704
5705         cmdline = strsplit_with_quote(buf, " ", 1024);
5706         execvp(cmdline[0], cmdline);
5707
5708         perror("execvp");
5709         g_strfreev(cmdline);
5710
5711         _exit(1);
5712 }
5713
5714 static gboolean compose_ext_editor_kill(Compose *compose)
5715 {
5716         pid_t pgid = compose->exteditor_pid * -1;
5717         gint ret;
5718
5719         ret = kill(pgid, 0);
5720
5721         if (ret == 0 || (ret == -1 && EPERM == errno)) {
5722                 AlertValue val;
5723                 gchar *msg;
5724
5725                 msg = g_strdup_printf
5726                         (_("The external editor is still working.\n"
5727                            "Force terminating the process?\n"
5728                            "process group id: %d"), -pgid);
5729                 val = alertpanel(_("Notice"), msg, _("Yes"), _("+No"), NULL);
5730                 g_free(msg);
5731
5732                 if (val == G_ALERTDEFAULT) {
5733                         gdk_input_remove(compose->exteditor_tag);
5734                         close(compose->exteditor_readdes);
5735
5736                         if (kill(pgid, SIGTERM) < 0) perror("kill");
5737                         waitpid(compose->exteditor_pid, NULL, 0);
5738
5739                         g_warning("Terminated process group id: %d", -pgid);
5740                         g_warning("Temporary file: %s",
5741                                   compose->exteditor_file);
5742
5743                         compose_set_ext_editor_sensitive(compose, TRUE);
5744
5745                         g_free(compose->exteditor_file);
5746                         compose->exteditor_file    = NULL;
5747                         compose->exteditor_pid     = -1;
5748                         compose->exteditor_readdes = -1;
5749                         compose->exteditor_tag     = -1;
5750                 } else
5751                         return FALSE;
5752         }
5753
5754         return TRUE;
5755 }
5756
5757 static void compose_input_cb(gpointer data, gint source,
5758                              GdkInputCondition condition)
5759 {
5760         gchar buf[3];
5761         Compose *compose = (Compose *)data;
5762         gint i = 0;
5763
5764         debug_print("Compose: input from monitoring process\n");
5765
5766         gdk_input_remove(compose->exteditor_tag);
5767
5768         for (;;) {
5769                 if (read(source, &buf[i], 1) < 1) {
5770                         buf[0] = '3';
5771                         break;
5772                 }
5773                 if (buf[i] == '\n') {
5774                         buf[i] = '\0';
5775                         break;
5776                 }
5777                 i++;
5778                 if (i == sizeof(buf) - 1)
5779                         break;
5780         }
5781
5782         waitpid(compose->exteditor_pid, NULL, 0);
5783
5784         if (buf[0] == '0') {            /* success */
5785                 GtkSText *text = GTK_STEXT(compose->text);
5786
5787                 gtk_stext_freeze(text);
5788                 gtk_stext_set_point(text, 0);
5789                 gtk_stext_forward_delete(text, gtk_stext_get_length(text));
5790                 compose_insert_file(compose, compose->exteditor_file);
5791                 compose_changed_cb(NULL, compose);
5792                 gtk_stext_thaw(text);
5793
5794                 if (unlink(compose->exteditor_file) < 0)
5795                         FILE_OP_ERROR(compose->exteditor_file, "unlink");
5796         } else if (buf[0] == '1') {     /* failed */
5797                 g_warning("Couldn't exec external editor\n");
5798                 if (unlink(compose->exteditor_file) < 0)
5799                         FILE_OP_ERROR(compose->exteditor_file, "unlink");
5800         } else if (buf[0] == '2') {
5801                 g_warning("Couldn't write to file\n");
5802         } else if (buf[0] == '3') {
5803                 g_warning("Pipe read failed\n");
5804         }
5805
5806         close(source);
5807
5808         compose_set_ext_editor_sensitive(compose, TRUE);
5809
5810         g_free(compose->exteditor_file);
5811         compose->exteditor_file    = NULL;
5812         compose->exteditor_pid     = -1;
5813         compose->exteditor_readdes = -1;
5814         compose->exteditor_tag     = -1;
5815 }
5816
5817 static void compose_set_ext_editor_sensitive(Compose *compose,
5818                                              gboolean sensitive)
5819 {
5820         GtkItemFactory *ifactory;
5821
5822         ifactory = gtk_item_factory_from_widget(compose->menubar);
5823
5824         menu_set_sensitive(ifactory, "/Message/Send", sensitive);
5825         menu_set_sensitive(ifactory, "/Message/Send later", sensitive);
5826         menu_set_sensitive(ifactory, "/Message/Save to draft folder",
5827                            sensitive);
5828         menu_set_sensitive(ifactory, "/File/Insert file", sensitive);
5829         menu_set_sensitive(ifactory, "/File/Insert signature", sensitive);
5830         menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", sensitive);
5831         menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", sensitive);
5832         menu_set_sensitive(ifactory, "/Edit/Edit with external editor",
5833                            sensitive);
5834
5835         gtk_widget_set_sensitive(compose->text,                   sensitive);
5836         gtk_widget_set_sensitive(compose->toolbar->send_btn,      sensitive);
5837         gtk_widget_set_sensitive(compose->toolbar->sendl_btn,     sensitive);
5838         gtk_widget_set_sensitive(compose->toolbar->draft_btn,     sensitive);
5839         gtk_widget_set_sensitive(compose->toolbar->insert_btn,    sensitive);
5840         gtk_widget_set_sensitive(compose->toolbar->sig_btn,       sensitive);
5841         gtk_widget_set_sensitive(compose->toolbar->exteditor_btn, sensitive);
5842         gtk_widget_set_sensitive(compose->toolbar->linewrap_btn,  sensitive);
5843 }
5844
5845 /**
5846  * compose_undo_state_changed:
5847  *
5848  * Change the sensivity of the menuentries undo and redo
5849  **/
5850 static void compose_undo_state_changed(UndoMain *undostruct, gint undo_state,
5851                                        gint redo_state, gpointer data)
5852 {
5853         GtkWidget *widget = GTK_WIDGET(data);
5854         GtkItemFactory *ifactory;
5855
5856         g_return_if_fail(widget != NULL);
5857
5858         debug_print("Set_undo.  UNDO:%i  REDO:%i\n", undo_state, redo_state);
5859
5860         ifactory = gtk_item_factory_from_widget(widget);
5861
5862         switch (undo_state) {
5863         case UNDO_STATE_TRUE:
5864                 if (!undostruct->undo_state) {
5865                         debug_print ("Set_undo - Testpoint\n");
5866                         undostruct->undo_state = TRUE;
5867                         menu_set_sensitive(ifactory, "/Edit/Undo", TRUE);
5868                 }
5869                 break;
5870         case UNDO_STATE_FALSE:
5871                 if (undostruct->undo_state) {
5872                         undostruct->undo_state = FALSE;
5873                         menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
5874                 }
5875                 break;
5876         case UNDO_STATE_UNCHANGED:
5877                 break;
5878         case UNDO_STATE_REFRESH:
5879                 menu_set_sensitive(ifactory, "/Edit/Undo",
5880                                    undostruct->undo_state);
5881                 break;
5882         default:
5883                 g_warning("Undo state not recognized");
5884                 break;
5885         }
5886
5887         switch (redo_state) {
5888         case UNDO_STATE_TRUE:
5889                 if (!undostruct->redo_state) {
5890                         undostruct->redo_state = TRUE;
5891                         menu_set_sensitive(ifactory, "/Edit/Redo", TRUE);
5892                 }
5893                 break;
5894         case UNDO_STATE_FALSE:
5895                 if (undostruct->redo_state) {
5896                         undostruct->redo_state = FALSE;
5897                         menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
5898                 }
5899                 break;
5900         case UNDO_STATE_UNCHANGED:
5901                 break;
5902         case UNDO_STATE_REFRESH:
5903                 menu_set_sensitive(ifactory, "/Edit/Redo",
5904                                    undostruct->redo_state);
5905                 break;
5906         default:
5907                 g_warning("Redo state not recognized");
5908                 break;
5909         }
5910 }
5911
5912 static gint calc_cursor_xpos(GtkSText *text, gint extra, gint char_width)
5913 {
5914         gint cursor_pos;
5915
5916         cursor_pos = (text->cursor_pos_x - extra) / char_width;
5917         cursor_pos = MAX(cursor_pos, 0);
5918
5919         return cursor_pos;
5920 }
5921
5922 /* callback functions */
5923
5924 /* compose_edit_size_alloc() - called when resized. don't know whether Gtk
5925  * includes "non-client" (windows-izm) in calculation, so this calculation
5926  * may not be accurate.
5927  */
5928 static gboolean compose_edit_size_alloc(GtkEditable *widget,
5929                                         GtkAllocation *allocation,
5930                                         GtkSHRuler *shruler)
5931 {
5932         if (prefs_common.show_ruler) {
5933                 gint char_width;
5934                 gint line_width_in_chars;
5935
5936                 char_width = gtkut_get_font_width
5937                         (GTK_WIDGET(widget)->style->font);
5938                 line_width_in_chars =
5939                         (allocation->width - allocation->x) / char_width;
5940
5941                 /* got the maximum */
5942                 gtk_ruler_set_range(GTK_RULER(shruler),
5943                                     0.0, line_width_in_chars,
5944                                     calc_cursor_xpos(GTK_STEXT(widget),
5945                                                      allocation->x,
5946                                                      char_width),
5947                                     /*line_width_in_chars*/ char_width);
5948         }
5949
5950         return TRUE;
5951 }
5952
5953 static void account_activated(GtkMenuItem *menuitem, gpointer data)
5954 {
5955         Compose *compose = (Compose *)data;
5956
5957         PrefsAccount *ac;
5958
5959         ac = account_find_from_id(
5960                 GPOINTER_TO_INT(gtk_object_get_user_data(GTK_OBJECT(menuitem))));
5961         g_return_if_fail(ac != NULL);
5962
5963         if (ac != compose->account)
5964                 compose_select_account(compose, ac);
5965 }
5966
5967 static void attach_selected(GtkCList *clist, gint row, gint column,
5968                             GdkEvent *event, gpointer data)
5969 {
5970         Compose *compose = (Compose *)data;
5971
5972         if (event && event->type == GDK_2BUTTON_PRESS)
5973                 compose_attach_property(compose);
5974 }
5975
5976 static void attach_button_pressed(GtkWidget *widget, GdkEventButton *event,
5977                                   gpointer data)
5978 {
5979         Compose *compose = (Compose *)data;
5980         GtkCList *clist = GTK_CLIST(compose->attach_clist);
5981         gint row, column;
5982
5983         if (!event) return;
5984
5985         if (event->button == 3) {
5986                 if ((clist->selection && !clist->selection->next) ||
5987                     !clist->selection) {
5988                         gtk_clist_unselect_all(clist);
5989                         if (gtk_clist_get_selection_info(clist,
5990                                                          event->x, event->y,
5991                                                          &row, &column)) {
5992                                 gtk_clist_select_row(clist, row, column);
5993                                 gtkut_clist_set_focus_row(clist, row);
5994                         }
5995                 }
5996                 gtk_menu_popup(GTK_MENU(compose->popupmenu), NULL, NULL,
5997                                NULL, NULL, event->button, event->time);
5998         }
5999 }
6000
6001 static void attach_key_pressed(GtkWidget *widget, GdkEventKey *event,
6002                                gpointer data)
6003 {
6004         Compose *compose = (Compose *)data;
6005
6006         if (!event) return;
6007
6008         switch (event->keyval) {
6009         case GDK_Delete:
6010                 compose_attach_remove_selected(compose);
6011                 break;
6012         }
6013 }
6014
6015 static void compose_allow_user_actions (Compose *compose, gboolean allow)
6016 {
6017         GtkItemFactory *ifactory = gtk_item_factory_from_widget(compose->menubar);
6018         toolbar_comp_set_sensitive(compose, allow);
6019         menu_set_sensitive(ifactory, "/File", allow);
6020         menu_set_sensitive(ifactory, "/Edit", allow);
6021         menu_set_sensitive(ifactory, "/Spelling", allow);
6022         menu_set_sensitive(ifactory, "/Message", allow);
6023         menu_set_sensitive(ifactory, "/Tools", allow);
6024         menu_set_sensitive(ifactory, "/Help", allow);
6025 }
6026
6027 static void compose_send_cb(gpointer data, guint action, GtkWidget *widget)
6028 {
6029         Compose *compose = (Compose *)data;
6030         gint val;
6031         
6032         if (prefs_common.work_offline)
6033                 if (alertpanel(_("Offline warning"), 
6034                                _("You're working offline. Override?"),
6035                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
6036                         return;
6037         
6038         compose_allow_user_actions (compose, FALSE);
6039         compose->sending = TRUE;
6040         val = compose_send(compose);
6041         compose_allow_user_actions (compose, TRUE);
6042         compose->sending = FALSE;
6043
6044         if (val == 0) gtk_widget_destroy(compose->window);
6045 }
6046
6047 static void compose_send_later_cb(gpointer data, guint action,
6048                                   GtkWidget *widget)
6049 {
6050         Compose *compose = (Compose *)data;
6051         gint val;
6052
6053         val = compose_queue_sub(compose, NULL, NULL, TRUE);
6054         if (!val) gtk_widget_destroy(compose->window);
6055 }
6056
6057 void compose_draft (gpointer data) 
6058 {
6059         compose_draft_cb(data, 0, NULL);        
6060 }
6061
6062 static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
6063 {
6064         Compose *compose = (Compose *)data;
6065         FolderItem *draft;
6066         gchar *tmp;
6067         gint msgnum;
6068         static gboolean lock = FALSE;
6069         MsgInfo *newmsginfo;
6070         
6071         if (lock) return;
6072
6073         draft = account_get_special_folder(compose->account, F_DRAFT);
6074         g_return_if_fail(draft != NULL);
6075
6076         lock = TRUE;
6077
6078         tmp = g_strdup_printf("%s%cdraft.%08x", get_tmp_dir(),
6079                               G_DIR_SEPARATOR, (gint)compose);
6080
6081         if (compose_write_to_file(compose, tmp, TRUE) < 0) {
6082                 g_free(tmp);
6083                 lock = FALSE;
6084                 return;
6085         }
6086
6087         if ((msgnum = folder_item_add_msg(draft, tmp, TRUE)) < 0) {
6088                 unlink(tmp);
6089                 g_free(tmp);
6090                 lock = FALSE;
6091                 return;
6092         }
6093         g_free(tmp);
6094         draft->mtime = 0;       /* force updating */
6095
6096         if (compose->mode == COMPOSE_REEDIT) {
6097                 compose_remove_reedit_target(compose);
6098         }
6099
6100         newmsginfo = folder_item_get_msginfo(draft, msgnum);
6101         if (newmsginfo) {
6102                 procmsg_msginfo_unset_flags(newmsginfo, ~0, ~0);
6103                 procmsg_msginfo_set_flags(newmsginfo, 0, MSG_DRAFT);
6104                 procmsg_msginfo_free(newmsginfo);
6105         }
6106         
6107         lock = FALSE;
6108
6109         /* 0: quit editing  1: keep editing  2: keep editing (autosave) */
6110         if (action == 0)
6111                 gtk_widget_destroy(compose->window);
6112         else {
6113                 struct stat s;
6114                 gchar *path;
6115
6116                 path = folder_item_fetch_msg(draft, msgnum);
6117                 g_return_if_fail(path != NULL);
6118                 if (stat(path, &s) < 0) {
6119                         FILE_OP_ERROR(path, "stat");
6120                         g_free(path);
6121                         lock = FALSE;
6122                         return;
6123                 }
6124                 g_free(path);
6125
6126                 procmsg_msginfo_free(compose->targetinfo);
6127                 compose->targetinfo = procmsg_msginfo_new();
6128                 compose->targetinfo->msgnum = msgnum;
6129                 compose->targetinfo->size = s.st_size;
6130                 compose->targetinfo->mtime = s.st_mtime;
6131                 compose->targetinfo->folder = draft;
6132                 compose->mode = COMPOSE_REEDIT;
6133                 
6134                 if (action == 2) {
6135                         compose->autosaved_draft = compose->targetinfo;
6136                 }
6137         }
6138 }
6139
6140 static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
6141 {
6142         Compose *compose = (Compose *)data;
6143         GList *file_list;
6144
6145         if (compose->redirect_filename != NULL)
6146                 return;
6147
6148         file_list = filesel_select_multiple_files(_("Select file"), NULL);
6149
6150         if (file_list) {
6151                 GList *tmp;
6152
6153                 for ( tmp = file_list; tmp; tmp = tmp->next) {
6154                         gchar *file = (gchar *) tmp->data;
6155                         compose_attach_append(compose, file, file, NULL);
6156                         compose_changed_cb(NULL, compose);
6157                         g_free(file);
6158                 }
6159                 g_list_free(file_list);
6160         }               
6161 }
6162
6163 static void compose_insert_file_cb(gpointer data, guint action,
6164                                    GtkWidget *widget)
6165 {
6166         Compose *compose = (Compose *)data;
6167         GList *file_list;
6168
6169         file_list = filesel_select_multiple_files(_("Select file"), NULL);
6170
6171         if (file_list) {
6172                 GList *tmp;
6173
6174                 for ( tmp = file_list; tmp; tmp = tmp->next) {
6175                         gchar *file = (gchar *) tmp->data;
6176                         compose_insert_file(compose, file);
6177                         g_free(file);
6178                 }
6179                 g_list_free(file_list);
6180         }
6181 }
6182
6183 static gint compose_delete_cb(GtkWidget *widget, GdkEventAny *event,
6184                               gpointer data)
6185 {
6186         Compose *compose = (Compose *)data;
6187         if (compose->sending)
6188                 return TRUE;
6189         compose_close_cb(compose, 0, NULL);
6190         return TRUE;
6191 }
6192
6193 static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
6194 {
6195         Compose *compose = (Compose *)data;
6196         AlertValue val;
6197         
6198         if (compose->exteditor_tag != -1) {
6199                 if (!compose_ext_editor_kill(compose))
6200                         return;
6201         }
6202
6203         if (compose->modified) {
6204                 val = alertpanel(_("Discard message"),
6205                                  _("This message has been modified. discard it?"),
6206                                  _("Discard"), _("to Draft"), _("Cancel"));
6207
6208                 switch (val) {
6209                 case G_ALERTDEFAULT:
6210                         if (prefs_common.autosave)
6211                                 compose_remove_draft(compose);                  
6212                         break;
6213                 case G_ALERTALTERNATE:
6214                         compose_draft_cb(data, 0, NULL);
6215                         return;
6216                 default:
6217                         return;
6218                 }
6219         }
6220
6221         gtk_widget_destroy(compose->window);
6222 }
6223
6224 static void compose_address_cb(gpointer data, guint action, GtkWidget *widget)
6225 {
6226         Compose *compose = (Compose *)data;
6227
6228         addressbook_open(compose);
6229 }
6230
6231 static void compose_template_activate_cb(GtkWidget *widget, gpointer data)
6232 {
6233         Compose *compose = (Compose *)data;
6234         Template *tmpl;
6235         gchar *msg;
6236         AlertValue val;
6237
6238         tmpl = gtk_object_get_data(GTK_OBJECT(widget), "template");
6239         g_return_if_fail(tmpl != NULL);
6240
6241         msg = g_strdup_printf(_("Do you want to apply the template `%s' ?"),
6242                               tmpl->name);
6243         val = alertpanel(_("Apply template"), msg,
6244                          _("Replace"), _("Insert"), _("Cancel"));
6245         g_free(msg);
6246
6247         if (val == G_ALERTDEFAULT)
6248                 compose_template_apply(compose, tmpl, TRUE);
6249         else if (val == G_ALERTALTERNATE)
6250                 compose_template_apply(compose, tmpl, FALSE);
6251 }
6252
6253 static void compose_ext_editor_cb(gpointer data, guint action,
6254                                   GtkWidget *widget)
6255 {
6256         Compose *compose = (Compose *)data;
6257
6258         compose_exec_ext_editor(compose);
6259 }
6260
6261 static void compose_destroy_cb(GtkWidget *widget, Compose *compose)
6262 {
6263         if (compose->sending)
6264                 return;
6265         compose_destroy(compose);
6266 }
6267
6268 static void compose_undo_cb(Compose *compose)
6269 {
6270         undo_undo(compose->undostruct);
6271 }
6272
6273 static void compose_redo_cb(Compose *compose)
6274 {
6275         undo_redo(compose->undostruct);
6276 }
6277
6278 static void compose_cut_cb(Compose *compose)
6279 {
6280         if (compose->focused_editable &&
6281             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
6282                 gtk_editable_cut_clipboard
6283                         (GTK_EDITABLE(compose->focused_editable));
6284 }
6285
6286 static void compose_copy_cb(Compose *compose)
6287 {
6288         if (compose->focused_editable &&
6289             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
6290                 gtk_editable_copy_clipboard
6291                         (GTK_EDITABLE(compose->focused_editable));
6292 }
6293
6294 static void compose_paste_cb(Compose *compose)
6295 {
6296         if (compose->focused_editable &&
6297             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
6298                 gtk_editable_paste_clipboard
6299                         (GTK_EDITABLE(compose->focused_editable));
6300 }
6301
6302 static void compose_paste_as_quote_cb(Compose *compose)
6303 {
6304         if (compose->focused_editable &&
6305             GTK_WIDGET_HAS_FOCUS(compose->focused_editable)) {
6306                 compose->paste_as_quotation = TRUE;
6307                 gtk_editable_paste_clipboard
6308                         (GTK_EDITABLE(compose->focused_editable));
6309                 compose->paste_as_quotation = FALSE;
6310         }
6311 }
6312
6313 static void compose_allsel_cb(Compose *compose)
6314 {
6315         if (compose->focused_editable &&
6316             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
6317                 gtk_editable_select_region
6318                         (GTK_EDITABLE(compose->focused_editable), 0, -1);
6319 }
6320
6321 static void compose_gtk_stext_action_cb(Compose *compose,
6322                                         ComposeCallGtkSTextAction action)
6323 {
6324         GtkSText *text = GTK_STEXT(compose->text);
6325         static struct {
6326                 void (*do_action) (GtkSText *text);
6327         } action_table[] = {
6328                 {gtk_stext_move_beginning_of_line},
6329                 {gtk_stext_move_forward_character},
6330                 {gtk_stext_move_backward_character},
6331                 {gtk_stext_move_forward_word},
6332                 {gtk_stext_move_backward_word},
6333                 {gtk_stext_move_end_of_line},
6334                 {gtk_stext_move_next_line},
6335                 {gtk_stext_move_previous_line},
6336                 {gtk_stext_delete_forward_character},
6337                 {gtk_stext_delete_backward_character},
6338                 {gtk_stext_delete_forward_word},
6339                 {gtk_stext_delete_backward_word},
6340                 {gtk_stext_delete_line},
6341                 {gtk_stext_delete_line}, /* gtk_stext_delete_line_n */
6342                 {gtk_stext_delete_to_line_end}
6343         };
6344
6345         if (!GTK_WIDGET_HAS_FOCUS(text)) return;
6346
6347         if (action >= COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE &&
6348             action <= COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END)
6349                 action_table[action].do_action(text);
6350 }
6351
6352 static void compose_grab_focus_cb(GtkWidget *widget, Compose *compose)
6353 {
6354         if (GTK_IS_EDITABLE(widget))
6355                 compose->focused_editable = widget;
6356 }
6357
6358 static void compose_changed_cb(GtkEditable *editable, Compose *compose)
6359 {
6360         if (compose->modified == FALSE) {
6361                 compose->modified = TRUE;
6362                 compose_set_title(compose);
6363         }
6364 }
6365
6366 static void compose_button_press_cb(GtkWidget *widget, GdkEventButton *event,
6367                                     Compose *compose)
6368 {
6369         gtk_stext_set_point(GTK_STEXT(widget),
6370                            gtk_editable_get_position(GTK_EDITABLE(widget)));
6371 }
6372
6373 #if 0
6374 static void compose_key_press_cb(GtkWidget *widget, GdkEventKey *event,
6375                                  Compose *compose)
6376 {
6377         gtk_stext_set_point(GTK_STEXT(widget),
6378                            gtk_editable_get_position(GTK_EDITABLE(widget)));
6379 }
6380 #endif
6381
6382 #if 0 /* NEW COMPOSE GUI */
6383 static void compose_toggle_to_cb(gpointer data, guint action,
6384                                  GtkWidget *widget)
6385 {
6386         Compose *compose = (Compose *)data;
6387
6388         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6389                 gtk_widget_show(compose->to_hbox);
6390                 gtk_widget_show(compose->to_entry);
6391                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
6392                 compose->use_to = TRUE;
6393         } else {
6394                 gtk_widget_hide(compose->to_hbox);
6395                 gtk_widget_hide(compose->to_entry);
6396                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 0);
6397                 gtk_widget_queue_resize(compose->table_vbox);
6398                 compose->use_to = FALSE;
6399         }
6400
6401         if (addressbook_get_target_compose() == compose)
6402                 addressbook_set_target_compose(compose);
6403 }
6404
6405 static void compose_toggle_cc_cb(gpointer data, guint action,
6406                                  GtkWidget *widget)
6407 {
6408         Compose *compose = (Compose *)data;
6409
6410         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6411                 gtk_widget_show(compose->cc_hbox);
6412                 gtk_widget_show(compose->cc_entry);
6413                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 3, 4);
6414                 compose->use_cc = TRUE;
6415         } else {
6416                 gtk_widget_hide(compose->cc_hbox);
6417                 gtk_widget_hide(compose->cc_entry);
6418                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 3, 0);
6419                 gtk_widget_queue_resize(compose->table_vbox);
6420                 compose->use_cc = FALSE;
6421         }
6422
6423         if (addressbook_get_target_compose() == compose)
6424                 addressbook_set_target_compose(compose);
6425 }
6426
6427 static void compose_toggle_bcc_cb(gpointer data, guint action,
6428                                   GtkWidget *widget)
6429 {
6430         Compose *compose = (Compose *)data;
6431
6432         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6433                 gtk_widget_show(compose->bcc_hbox);
6434                 gtk_widget_show(compose->bcc_entry);
6435                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 4, 4);
6436                 compose->use_bcc = TRUE;
6437         } else {
6438                 gtk_widget_hide(compose->bcc_hbox);
6439                 gtk_widget_hide(compose->bcc_entry);
6440                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 4, 0);
6441                 gtk_widget_queue_resize(compose->table_vbox);
6442                 compose->use_bcc = FALSE;
6443         }
6444
6445         if (addressbook_get_target_compose() == compose)
6446                 addressbook_set_target_compose(compose);
6447 }
6448
6449 static void compose_toggle_replyto_cb(gpointer data, guint action,
6450                                       GtkWidget *widget)
6451 {
6452         Compose *compose = (Compose *)data;
6453
6454         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6455                 gtk_widget_show(compose->reply_hbox);
6456                 gtk_widget_show(compose->reply_entry);
6457                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 5, 4);
6458                 compose->use_replyto = TRUE;
6459         } else {
6460                 gtk_widget_hide(compose->reply_hbox);
6461                 gtk_widget_hide(compose->reply_entry);
6462                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 5, 0);
6463                 gtk_widget_queue_resize(compose->table_vbox);
6464                 compose->use_replyto = FALSE;
6465         }
6466 }
6467
6468 static void compose_toggle_followupto_cb(gpointer data, guint action,
6469                                          GtkWidget *widget)
6470 {
6471         Compose *compose = (Compose *)data;
6472
6473         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6474                 gtk_widget_show(compose->followup_hbox);
6475                 gtk_widget_show(compose->followup_entry);
6476                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 6, 4);
6477                 compose->use_followupto = TRUE;
6478         } else {
6479                 gtk_widget_hide(compose->followup_hbox);
6480                 gtk_widget_hide(compose->followup_entry);
6481                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 6, 0);
6482                 gtk_widget_queue_resize(compose->table_vbox);
6483                 compose->use_followupto = FALSE;
6484         }
6485 }
6486
6487 static void compose_toggle_attach_cb(gpointer data, guint action,
6488                                      GtkWidget *widget)
6489 {
6490         Compose *compose = (Compose *)data;
6491
6492         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6493                 gtk_widget_ref(compose->edit_vbox);
6494
6495                 gtkut_container_remove(GTK_CONTAINER(compose->vbox2),
6496                                        compose->edit_vbox);
6497                 gtk_paned_add2(GTK_PANED(compose->paned), compose->edit_vbox);
6498                 gtk_box_pack_start(GTK_BOX(compose->vbox2), compose->paned,
6499                                    TRUE, TRUE, 0);
6500                 gtk_widget_show(compose->paned);
6501
6502                 gtk_widget_unref(compose->edit_vbox);
6503                 gtk_widget_unref(compose->paned);
6504
6505                 compose->use_attach = TRUE;
6506         } else {
6507                 gtk_widget_ref(compose->paned);
6508                 gtk_widget_ref(compose->edit_vbox);
6509
6510                 gtkut_container_remove(GTK_CONTAINER(compose->vbox2),
6511                                        compose->paned);
6512                 gtkut_container_remove(GTK_CONTAINER(compose->paned),
6513                                        compose->edit_vbox);
6514                 gtk_box_pack_start(GTK_BOX(compose->vbox2),
6515                                    compose->edit_vbox, TRUE, TRUE, 0);
6516
6517                 gtk_widget_unref(compose->edit_vbox);
6518
6519                 compose->use_attach = FALSE;
6520         }
6521 }
6522 #endif
6523
6524 #if USE_GPGME
6525 static void compose_toggle_sign_cb(gpointer data, guint action,
6526                                    GtkWidget *widget)
6527 {
6528         Compose *compose = (Compose *)data;
6529
6530         if (GTK_CHECK_MENU_ITEM(widget)->active)
6531                 compose->use_signing = TRUE;
6532         else
6533                 compose->use_signing = FALSE;
6534
6535         compose_update_gnupg_mode_menu_item(compose);
6536 }
6537
6538 static void compose_toggle_encrypt_cb(gpointer data, guint action,
6539                                       GtkWidget *widget)
6540 {
6541         Compose *compose = (Compose *)data;
6542
6543         if (GTK_CHECK_MENU_ITEM(widget)->active)
6544                 compose->use_encryption = TRUE;
6545         else
6546                 compose->use_encryption = FALSE;
6547                 
6548         compose_update_gnupg_mode_menu_item(compose);
6549 }
6550
6551 static void activate_gnupg_mode (Compose *compose, PrefsAccount *account) 
6552 {
6553         if (account->default_gnupg_mode)
6554                 compose->gnupg_mode = GNUPG_MODE_INLINE;
6555         else
6556                 compose->gnupg_mode = GNUPG_MODE_DETACH;
6557                 
6558         compose_update_gnupg_mode_menu_item(compose);
6559 }
6560 #endif /* USE_GPGME */
6561
6562 static void compose_toggle_ruler_cb(gpointer data, guint action,
6563                                     GtkWidget *widget)
6564 {
6565         Compose *compose = (Compose *)data;
6566
6567         if (GTK_CHECK_MENU_ITEM(widget)->active) {
6568                 gtk_widget_show(compose->ruler_hbox);
6569                 prefs_common.show_ruler = TRUE;
6570         } else {
6571                 gtk_widget_hide(compose->ruler_hbox);
6572                 gtk_widget_queue_resize(compose->edit_vbox);
6573                 prefs_common.show_ruler = FALSE;
6574         }
6575 }
6576
6577 static void compose_attach_drag_received_cb (GtkWidget          *widget,
6578                                              GdkDragContext     *drag_context,
6579                                              gint                x,
6580                                              gint                y,
6581                                              GtkSelectionData   *data,
6582                                              guint               info,
6583                                              guint               time,
6584                                              gpointer            user_data)
6585 {
6586         Compose *compose = (Compose *)user_data;
6587         GList *list, *tmp;
6588
6589         list = uri_list_extract_filenames((const gchar *)data->data);
6590         for (tmp = list; tmp != NULL; tmp = tmp->next)
6591                 compose_attach_append
6592                         (compose, (const gchar *)tmp->data,
6593                          (const gchar *)tmp->data, NULL);
6594         if (list) compose_changed_cb(NULL, compose);
6595         list_free_strings(list);
6596         g_list_free(list);
6597 }
6598
6599 static void compose_insert_drag_received_cb (GtkWidget          *widget,
6600                                              GdkDragContext     *drag_context,
6601                                              gint                x,
6602                                              gint                y,
6603                                              GtkSelectionData   *data,
6604                                              guint               info,
6605                                              guint               time,
6606                                              gpointer            user_data)
6607 {
6608         Compose *compose = (Compose *)user_data;
6609         GList *list, *tmp;
6610
6611         list = uri_list_extract_filenames((const gchar *)data->data);
6612         for (tmp = list; tmp != NULL; tmp = tmp->next)
6613                 compose_insert_file(compose, (const gchar *)tmp->data);
6614         list_free_strings(list);
6615         g_list_free(list);
6616 }
6617
6618 #if 0 /* NEW COMPOSE GUI */
6619 static void to_activated(GtkWidget *widget, Compose *compose)
6620 {
6621         if (GTK_WIDGET_VISIBLE(compose->newsgroups_entry))
6622                 gtk_widget_grab_focus(compose->newsgroups_entry);
6623         else
6624                 gtk_widget_grab_focus(compose->subject_entry);
6625 }
6626
6627 static void newsgroups_activated(GtkWidget *widget, Compose *compose)
6628 {
6629         gtk_widget_grab_focus(compose->subject_entry);
6630 }
6631
6632 static void subject_activated(GtkWidget *widget, Compose *compose)
6633 {
6634         if (GTK_WIDGET_VISIBLE(compose->cc_entry))
6635                 gtk_widget_grab_focus(compose->cc_entry);
6636         else if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
6637                 gtk_widget_grab_focus(compose->bcc_entry);
6638         else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
6639                 gtk_widget_grab_focus(compose->reply_entry);
6640         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
6641                 gtk_widget_grab_focus(compose->followup_entry);
6642         else
6643                 gtk_widget_grab_focus(compose->text);
6644 }
6645
6646 static void cc_activated(GtkWidget *widget, Compose *compose)
6647 {
6648         if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
6649                 gtk_widget_grab_focus(compose->bcc_entry);
6650         else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
6651                 gtk_widget_grab_focus(compose->reply_entry);
6652         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
6653                 gtk_widget_grab_focus(compose->followup_entry);
6654         else
6655                 gtk_widget_grab_focus(compose->text);
6656 }
6657
6658 static void bcc_activated(GtkWidget *widget, Compose *compose)
6659 {
6660         if (GTK_WIDGET_VISIBLE(compose->reply_entry))
6661                 gtk_widget_grab_focus(compose->reply_entry);
6662         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
6663                 gtk_widget_grab_focus(compose->followup_entry);
6664         else
6665                 gtk_widget_grab_focus(compose->text);
6666 }
6667
6668 static void replyto_activated(GtkWidget *widget, Compose *compose)
6669 {
6670         if (GTK_WIDGET_VISIBLE(compose->followup_entry))
6671                 gtk_widget_grab_focus(compose->followup_entry);
6672         else
6673                 gtk_widget_grab_focus(compose->text);
6674 }
6675
6676 static void followupto_activated(GtkWidget *widget, Compose *compose)
6677 {
6678         gtk_widget_grab_focus(compose->text);
6679 }
6680 #endif
6681
6682 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
6683                                              GtkWidget *widget)
6684 {
6685         Compose *compose = (Compose *)data;
6686
6687         if (GTK_CHECK_MENU_ITEM(widget)->active)
6688                 compose->return_receipt = TRUE;
6689         else
6690                 compose->return_receipt = FALSE;
6691 }
6692
6693 void compose_headerentry_key_press_event_cb(GtkWidget *entry,
6694                                             GdkEventKey *event,
6695                                             ComposeHeaderEntry *headerentry)
6696 {
6697         if ((g_slist_length(headerentry->compose->header_list) > 0) &&
6698             ((headerentry->headernum + 1) != headerentry->compose->header_nextrow) &&
6699             !(event->state & GDK_MODIFIER_MASK) &&
6700             (event->keyval == GDK_BackSpace) &&
6701             (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)) {
6702                 gtk_container_remove
6703                         (GTK_CONTAINER(headerentry->compose->header_table),
6704                          headerentry->combo);
6705                 gtk_container_remove
6706                         (GTK_CONTAINER(headerentry->compose->header_table),
6707                          headerentry->entry);
6708                 headerentry->compose->header_list =
6709                         g_slist_remove(headerentry->compose->header_list,
6710                                        headerentry);
6711                 g_free(headerentry);
6712         } else  if (event->keyval == GDK_Tab) {
6713                 if (headerentry->compose->header_last == headerentry) {
6714                         /* Override default next focus, and give it to subject_entry
6715                          * instead of notebook tabs
6716                          */
6717                         gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key-press-event"); 
6718                         gtk_widget_grab_focus(headerentry->compose->subject_entry);
6719                 }
6720         }
6721
6722 }
6723
6724 void compose_headerentry_changed_cb(GtkWidget *entry,
6725                                     ComposeHeaderEntry *headerentry)
6726 {
6727         if (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) != 0) {
6728                 headerentry->compose->header_list =
6729                         g_slist_append(headerentry->compose->header_list,
6730                                        headerentry);
6731                 compose_create_header_entry(headerentry->compose);
6732                 gtk_signal_disconnect_by_func
6733                         (GTK_OBJECT(entry),
6734                          GTK_SIGNAL_FUNC(compose_headerentry_changed_cb),
6735                          headerentry);
6736                 /* Automatically scroll down */
6737                 compose_show_first_last_header(headerentry->compose, FALSE);
6738                 
6739         }
6740 }
6741
6742 static void compose_show_first_last_header(Compose *compose, gboolean show_first)
6743 {
6744         GtkAdjustment *vadj;
6745
6746         g_return_if_fail(compose);
6747         g_return_if_fail(GTK_IS_WIDGET(compose->header_table));
6748         g_return_if_fail(GTK_IS_VIEWPORT(compose->header_table->parent));
6749
6750         vadj = gtk_viewport_get_vadjustment(GTK_VIEWPORT(compose->header_table->parent));
6751         gtk_adjustment_set_value(vadj, (show_first ? vadj->lower : vadj->upper));
6752 }
6753
6754 static void text_activated(GtkWidget *widget, Compose *compose)
6755 {
6756         compose_send_control_enter(compose);
6757 }
6758
6759 static void text_inserted(GtkWidget *widget, const gchar *text,
6760                           gint length, gint *position, Compose *compose)
6761 {
6762         GtkEditable *editable = GTK_EDITABLE(widget);
6763
6764         gtk_signal_handler_block_by_func(GTK_OBJECT(widget),
6765                                          GTK_SIGNAL_FUNC(text_inserted),
6766                                          compose);
6767         if (compose->paste_as_quotation) {
6768                 gchar *new_text;
6769                 gchar *qmark;
6770                 gint pos;
6771
6772                 new_text = g_strndup(text, length);
6773                 if (prefs_common.quotemark && *prefs_common.quotemark)
6774                         qmark = prefs_common.quotemark;
6775                 else
6776                         qmark = "> ";
6777                 gtk_stext_set_point(GTK_STEXT(widget), *position);
6778                 compose_quote_fmt(compose, NULL, "%Q", qmark, new_text);
6779                 pos = gtk_stext_get_point(GTK_STEXT(widget));
6780                 gtk_editable_set_position(editable, pos);
6781                 *position = pos;
6782                 g_free(new_text);
6783         } else
6784                 gtk_editable_insert_text(editable, text, length, position);
6785
6786         if (prefs_common.autowrap)
6787                 compose_wrap_line_all_full(compose, TRUE);
6788
6789         gtk_signal_handler_unblock_by_func(GTK_OBJECT(widget),
6790                                            GTK_SIGNAL_FUNC(text_inserted),
6791                                            compose);
6792         gtk_signal_emit_stop_by_name(GTK_OBJECT(editable), "insert_text");
6793
6794         
6795         if (prefs_common.autosave && 
6796             gtk_stext_get_length(GTK_STEXT(widget)) % prefs_common.autosave_length == 0)
6797                 compose_draft_cb((gpointer)compose, 2, NULL);
6798 }
6799
6800 static gboolean compose_send_control_enter(Compose *compose)
6801 {
6802         GdkEvent *ev;
6803         GdkEventKey *kev;
6804         GtkItemFactory *ifactory;
6805         GtkAccelEntry *accel;
6806         GtkWidget *send_menu;
6807         GSList *list;
6808         GdkModifierType ignored_mods =
6809                 (GDK_LOCK_MASK | GDK_MOD2_MASK | GDK_MOD3_MASK |
6810                  GDK_MOD4_MASK | GDK_MOD5_MASK);
6811
6812         ev = gtk_get_current_event();
6813         if (ev->type != GDK_KEY_PRESS) return FALSE;
6814
6815         kev = (GdkEventKey *)ev;
6816         if (!(kev->keyval == GDK_Return && (kev->state & GDK_CONTROL_MASK)))
6817                 return FALSE;
6818
6819         ifactory = gtk_item_factory_from_widget(compose->menubar);
6820         send_menu = gtk_item_factory_get_widget(ifactory, "/Message/Send");
6821         list = gtk_accel_group_entries_from_object(GTK_OBJECT(send_menu));
6822         if (!list)
6823                 return FALSE;
6824
6825         accel = (GtkAccelEntry *)list->data;
6826         if (accel && accel->accelerator_key == kev->keyval &&
6827             (accel->accelerator_mods & ~ignored_mods) ==
6828             (kev->state & ~ignored_mods)) {
6829                 compose_send_cb(compose, 0, NULL);
6830                 return TRUE;
6831         }
6832
6833         return FALSE;
6834 }
6835
6836 #if USE_ASPELL
6837 static void compose_check_all(Compose *compose)
6838 {
6839         if (compose->gtkaspell)
6840                 gtkaspell_check_all(compose->gtkaspell);
6841 }
6842
6843 static void compose_highlight_all(Compose *compose)
6844 {
6845         if (compose->gtkaspell)
6846                 gtkaspell_highlight_all(compose->gtkaspell);
6847 }
6848
6849 static void compose_check_backwards(Compose *compose)
6850 {
6851         if (compose->gtkaspell) 
6852                 gtkaspell_check_backwards(compose->gtkaspell);
6853         else {
6854                 GtkItemFactory *ifactory;
6855                 ifactory = gtk_item_factory_from_widget(compose->popupmenu);
6856                 menu_set_sensitive(ifactory, "/Edit/Check backwards misspelled word", FALSE);
6857                 menu_set_sensitive(ifactory, "/Edit/Forward to next misspelled word", FALSE);
6858         }
6859 }
6860
6861 static void compose_check_forwards_go(Compose *compose)
6862 {
6863         if (compose->gtkaspell) 
6864                 gtkaspell_check_forwards_go(compose->gtkaspell);
6865         else {
6866                 GtkItemFactory *ifactory;
6867                 ifactory = gtk_item_factory_from_widget(compose->popupmenu);
6868                 menu_set_sensitive(ifactory, "/Edit/Check backwards misspelled word", FALSE);
6869                 menu_set_sensitive(ifactory, "/Edit/Forward to next misspelled word", FALSE);
6870         }
6871 }
6872 #endif
6873