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