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