79c40867c227febba413a8730c878dd02d5d70cd
[claws.git] / src / compose.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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 <unistd.h>
57 #include <time.h>
58 /* #include <sys/utsname.h> */
59 #include <stdlib.h>
60 #include <sys/wait.h>
61 #include <signal.h>
62 #include <errno.h>
63
64 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
65 #  include <wchar.h>
66 #  include <wctype.h>
67 #endif
68
69
70 #include "gtkstext.h"
71
72 #include "intl.h"
73 #include "main.h"
74 #include "mainwindow.h"
75 #include "compose.h"
76 #include "addressbook.h"
77 #include "folderview.h"
78 #include "procmsg.h"
79 #include "menu.h"
80 #include "send.h"
81 #include "news.h"
82 #include "customheader.h"
83 #include "prefs_common.h"
84 #include "prefs_account.h"
85 #include "account.h"
86 #include "filesel.h"
87 #include "procheader.h"
88 #include "procmime.h"
89 #include "statusbar.h"
90 #include "about.h"
91 #include "base64.h"
92 #include "codeconv.h"
93 #include "utils.h"
94 #include "gtkutils.h"
95 #include "socket.h"
96 #include "alertpanel.h"
97 #include "manage_window.h"
98 #include "gtkshruler.h"
99 #include "folder.h"
100 #include "addr_compl.h"
101 #include "template_select.h"
102
103 #if USE_GPGME
104 #  include "rfc2015.h"
105 #endif
106
107 #include "quote_fmt.h"
108
109 typedef enum
110 {
111         COL_MIMETYPE = 0,
112         COL_SIZE     = 1,
113         COL_NAME     = 2
114 } AttachColumnPos;
115
116 #define N_ATTACH_COLS           3
117
118 #define B64_LINE_SIZE           57
119 #define B64_BUFFSIZE            77
120
121 #define MAX_REFERENCES_LEN      999
122
123 static GdkColor quote_color = {0, 0, 0, 0xbfff};
124
125 static GList *compose_list = NULL;
126
127 static Compose *compose_create                  (PrefsAccount   *account,
128                                                  ComposeMode     mode);
129 static void compose_toolbar_create              (Compose        *compose,
130                                                  GtkWidget      *container);
131 static GtkWidget *compose_account_option_menu_create
132                                                 (Compose        *compose);
133 static void compose_destroy                     (Compose        *compose);
134
135 static gint compose_parse_header                (Compose        *compose,
136                                                  MsgInfo        *msginfo);
137 static gchar *compose_parse_references          (const gchar    *ref,
138                                                  const gchar    *msgid);
139 static void compose_quote_file                  (Compose        *compose,
140                                                  MsgInfo        *msginfo,
141                                                  FILE           *fp);
142 static gchar *compose_quote_parse_fmt           (Compose        *compose,
143                                                  MsgInfo        *msginfo,
144                                                  const gchar    *fmt);
145 static void compose_reply_set_entry             (Compose        *compose,
146                                                  MsgInfo        *msginfo,
147                                                  gboolean        to_all,
148                                                  gboolean        to_sender,
149                                                  gboolean
150                                                  followup_and_reply_to);
151 static void compose_reedit_set_entry            (Compose        *compose,
152                                                  MsgInfo        *msginfo);
153 static void compose_insert_sig                  (Compose        *compose);
154 static void compose_insert_file                 (Compose        *compose,
155                                                  const gchar    *file);
156 static void compose_attach_append               (Compose        *compose,
157                                                  const gchar    *file,
158                                                  ContentType     cnttype);
159 static void compose_attach_append_with_type(Compose *compose,
160                                             const gchar *file,
161                                             const gchar *type,
162                                             ContentType cnttype);
163 static void compose_wrap_line                   (Compose        *compose);
164 static void compose_wrap_line_all               (Compose        *compose);
165 static void compose_set_title                   (Compose        *compose);
166
167 static PrefsAccount *compose_current_mail_account(void);
168 /* static gint compose_send                     (Compose        *compose); */
169 static gint compose_write_to_file               (Compose        *compose,
170                                                  const gchar    *file,
171                                                  gboolean        is_draft);
172 static gint compose_write_body_to_file          (Compose        *compose,
173                                                  const gchar    *file);
174 static gint compose_save_to_outbox              (Compose        *compose,
175                                                  const gchar    *file);
176 static gint compose_remove_reedit_target        (Compose        *compose);
177 static gint compose_queue                       (Compose        *compose,
178                                                  const gchar    *file);
179 static void compose_write_attach                (Compose        *compose,
180                                                  FILE           *fp);
181 static gint compose_write_headers               (Compose        *compose,
182                                                  FILE           *fp,
183                                                  const gchar    *charset,
184                                                  EncodingType    encoding,
185                                                  gboolean        is_draft);
186
187 static void compose_convert_header              (gchar          *dest,
188                                                  gint            len,
189                                                  gchar          *src,
190                                                  gint            header_len);
191 static void compose_generate_msgid              (Compose        *compose,
192                                                  gchar          *buf,
193                                                  gint            len);
194
195 static void compose_attach_info_free            (AttachInfo     *ainfo);
196 static void compose_attach_remove_selected      (Compose        *compose);
197
198 static void compose_attach_property             (Compose        *compose);
199 static void compose_attach_property_create      (gboolean       *cancelled);
200 static void attach_property_ok                  (GtkWidget      *widget,
201                                                  gboolean       *cancelled);
202 static void attach_property_cancel              (GtkWidget      *widget,
203                                                  gboolean       *cancelled);
204 static gint attach_property_delete_event        (GtkWidget      *widget,
205                                                  GdkEventAny    *event,
206                                                  gboolean       *cancelled);
207 static void attach_property_key_pressed         (GtkWidget      *widget,
208                                                  GdkEventKey    *event,
209                                                  gboolean       *cancelled);
210
211 static void compose_exec_ext_editor             (Compose           *compose);
212 static gint compose_exec_ext_editor_real        (const gchar       *file);
213 static gboolean compose_ext_editor_kill         (Compose           *compose);
214 static void compose_input_cb                    (gpointer           data,
215                                                  gint               source,
216                                                  GdkInputCondition  condition);
217 static void compose_set_ext_editor_sensitive    (Compose           *compose,
218                                                  gboolean           sensitive);
219
220 static gint calc_cursor_xpos    (GtkSText       *text,
221                                  gint            extra,
222                                  gint            char_width);
223
224 static void compose_create_header_entry (Compose *compose);
225 static void compose_add_header_entry    (Compose *compose, gchar *header, gchar *text);
226
227 /* callback functions */
228
229 static gboolean compose_edit_size_alloc (GtkEditable    *widget,
230                                          GtkAllocation  *allocation,
231                                          GtkSHRuler     *shruler);
232
233 static void toolbar_send_cb             (GtkWidget      *widget,
234                                          gpointer        data);
235 static void toolbar_send_later_cb       (GtkWidget      *widget,
236                                          gpointer        data);
237 static void toolbar_draft_cb            (GtkWidget      *widget,
238                                          gpointer        data);
239 static void toolbar_insert_cb           (GtkWidget      *widget,
240                                          gpointer        data);
241 static void toolbar_attach_cb           (GtkWidget      *widget,
242                                          gpointer        data);
243 static void toolbar_sig_cb              (GtkWidget      *widget,
244                                          gpointer        data);
245 static void toolbar_ext_editor_cb       (GtkWidget      *widget,
246                                          gpointer        data);
247 static void toolbar_linewrap_cb         (GtkWidget      *widget,
248                                          gpointer        data);
249 static void toolbar_address_cb          (GtkWidget      *widget,
250                                          gpointer        data);
251 static void template_select_cb          (gpointer        daat,
252                                          guint           action,
253                                          GtkWidget      *widget);
254
255
256 static void select_account(Compose * compose, PrefsAccount * ac);
257 static void account_activated           (GtkMenuItem    *menuitem,
258                                          gpointer        data);
259
260 static void attach_selected             (GtkCList       *clist,
261                                          gint            row,
262                                          gint            column,
263                                          GdkEvent       *event,
264                                          gpointer        data);
265 static void attach_button_pressed       (GtkWidget      *widget,
266                                          GdkEventButton *event,
267                                          gpointer        data);
268 static void attach_key_pressed          (GtkWidget      *widget,
269                                          GdkEventKey    *event,
270                                          gpointer        data);
271
272 static void compose_send_cb             (gpointer        data,
273                                          guint           action,
274                                          GtkWidget      *widget);
275 static void compose_send_later_cb       (gpointer        data,
276                                          guint           action,
277                                          GtkWidget      *widget);
278
279 static void compose_draft_cb            (gpointer        data,
280                                          guint           action,
281                                          GtkWidget      *widget);
282
283 static void compose_attach_cb           (gpointer        data,
284                                          guint           action,
285                                          GtkWidget      *widget);
286 static void compose_insert_file_cb      (gpointer        data,
287                                          guint           action,
288                                          GtkWidget      *widget);
289
290 static void compose_close_cb            (gpointer        data,
291                                          guint           action,
292                                          GtkWidget      *widget);
293 static void compose_address_cb          (gpointer        data,
294                                          guint           action,
295                                          GtkWidget      *widget);
296
297 static void compose_ext_editor_cb       (gpointer        data,
298                                          guint           action,
299                                          GtkWidget      *widget);
300
301 static gint compose_delete_cb           (GtkWidget      *widget,
302                                          GdkEventAny    *event,
303                                          gpointer        data);
304 static void compose_destroy_cb          (GtkWidget      *widget,
305                                          Compose        *compose);
306
307 static void compose_cut_cb              (Compose        *compose);
308 static void compose_copy_cb             (Compose        *compose);
309 static void compose_paste_cb            (Compose        *compose);
310 static void compose_allsel_cb           (Compose        *compose);
311
312 static void compose_grab_focus_cb       (GtkWidget      *widget,
313                                          Compose        *compose);
314
315 static void compose_changed_cb          (GtkEditable    *editable,
316                                          Compose        *compose);
317 static void compose_button_press_cb     (GtkWidget      *widget,
318                                          GdkEventButton *event,
319                                          Compose        *compose);
320 #if 0
321 static void compose_key_press_cb        (GtkWidget      *widget,
322                                          GdkEventKey    *event,
323                                          Compose        *compose);
324 #endif
325
326 static void compose_toggle_to_cb        (gpointer        data,
327                                          guint           action,
328                                          GtkWidget      *widget);
329 static void compose_toggle_cc_cb        (gpointer        data,
330                                          guint           action,
331                                          GtkWidget      *widget);
332 static void compose_toggle_bcc_cb       (gpointer        data,
333                                          guint           action,
334                                          GtkWidget      *widget);
335 static void compose_toggle_replyto_cb   (gpointer        data,
336                                          guint           action,
337                                          GtkWidget      *widget);
338 static void compose_toggle_followupto_cb(gpointer        data,
339                                          guint           action,
340                                          GtkWidget      *widget);
341 static void compose_toggle_attach_cb    (gpointer        data,
342                                          guint           action,
343                                          GtkWidget      *widget);
344 static void compose_toggle_ruler_cb     (gpointer        data,
345                                          guint           action,
346                                          GtkWidget      *widget);
347 #if USE_GPGME
348 static void compose_toggle_sign_cb      (gpointer        data,
349                                          guint           action,
350                                          GtkWidget      *widget);
351 static void compose_toggle_encrypt_cb   (gpointer        data,
352                                          guint           action,
353                                          GtkWidget      *widget);
354 #endif
355 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
356                                              GtkWidget *widget);
357
358 static void compose_attach_drag_received_cb (GtkWidget          *widget,
359                                              GdkDragContext     *drag_context,
360                                              gint                x,
361                                              gint                y,
362                                              GtkSelectionData   *data,
363                                              guint               info,
364                                              guint               time,
365                                              gpointer            user_data);
366 static void compose_insert_drag_received_cb (GtkWidget          *widget,
367                                              GdkDragContext     *drag_context,
368                                              gint                x,
369                                              gint                y,
370                                              GtkSelectionData   *data,
371                                              guint               info,
372                                              guint               time,
373                                              gpointer            user_data);
374
375 static void to_activated                (GtkWidget      *widget,
376                                          Compose        *compose);
377 static void newsgroups_activated        (GtkWidget      *widget,
378                                          Compose        *compose);
379 static void subject_activated           (GtkWidget      *widget,
380                                          Compose        *compose);
381 static void cc_activated                (GtkWidget      *widget,
382                                          Compose        *compose);
383 static void bcc_activated               (GtkWidget      *widget,
384                                          Compose        *compose);
385 static void replyto_activated           (GtkWidget      *widget,
386                                          Compose        *compose);
387 static void followupto_activated        (GtkWidget      *widget,
388                                          Compose        *compose);
389 static void compose_attach_parts(Compose * compose,
390                                  MsgInfo * msginfo);
391
392 static gchar *compose_quote_fmt         (Compose        *compose,
393                                          MsgInfo        *msginfo,
394                                          const gchar    *fmt,
395                                          const gchar    * qmark);
396
397 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
398                                   gboolean to_all,
399                                   gboolean ignore_replyto,
400                                   gboolean followup_and_reply_to);
401
402 void compose_headerentry_changed_cb     (GtkWidget *entry,
403                                          compose_headerentry *headerentry);
404 void compose_headerentry_key_press_event_cb     (GtkWidget *entry,
405                                                  GdkEventKey *event,
406                                                  compose_headerentry *headerentry);
407
408 Compose * compose_generic_new (PrefsAccount     *account,
409                                const gchar      *to,
410                                FolderItem       *item);
411
412 static GtkItemFactoryEntry compose_popup_entries[] =
413 {
414         {N_("/_Add..."),        NULL, compose_attach_cb, 0, NULL},
415         {N_("/_Remove"),        NULL, compose_attach_remove_selected, 0, NULL},
416         {N_("/---"),            NULL, NULL, 0, "<Separator>"},
417         {N_("/_Property..."),   NULL, compose_attach_property, 0, NULL}
418 };
419
420 static GtkItemFactoryEntry compose_entries[] =
421 {
422         {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
423         {N_("/_File/_Attach file"),             "<control>M", compose_attach_cb,      0, NULL},
424         {N_("/_File/_Insert file"),             "<control>I", compose_insert_file_cb, 0, NULL},
425         {N_("/_File/Insert si_gnature"),        "<control>G", compose_insert_sig,     0, NULL},
426         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
427         {N_("/_File/_Close"),                   "<alt>W", compose_close_cb, 0, NULL},
428
429         {N_("/_Edit"),             NULL, NULL, 0, "<Branch>"},
430         {N_("/_Edit/_Undo"),       "<control>Z", NULL, 0, NULL},
431         {N_("/_Edit/_Redo"),       "<control>Y", NULL, 0, NULL},
432         {N_("/_Edit/---"),         NULL, NULL, 0, "<Separator>"},
433         {N_("/_Edit/Cu_t"),        "<control>X", compose_cut_cb,    0, NULL},
434         {N_("/_Edit/_Copy"),       "<control>C", compose_copy_cb,   0, NULL},
435         {N_("/_Edit/_Paste"),      "<control>V", compose_paste_cb,  0, NULL},
436         {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
437         {N_("/_Edit/---"),         NULL, NULL, 0, "<Separator>"},
438         {N_("/_Edit/_Wrap current paragraph"), "<alt>L", compose_wrap_line, 0, NULL},
439         {N_("/_Edit/Wrap all long _lines"),
440                         "<shift><alt>L", compose_wrap_line_all, 0, NULL},
441         {N_("/_Edit/Edit with e_xternal editor"),
442                         "<alt>X", compose_ext_editor_cb, 0, NULL},
443
444         {N_("/_Message"),               NULL, NULL, 0, "<Branch>"},
445         {N_("/_Message/_Send"),         "<control>Return",
446                                         compose_send_cb, 0, NULL},
447         {N_("/_Message/Send _later"),   "<shift><alt>S",
448                                         compose_send_later_cb,  0, NULL},
449         {N_("/_Message/Save to _draft folder"),
450                                         "<alt>D", compose_draft_cb, 0, NULL},
451 #if 0 /* NEW COMPOSE GUI */
452         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
453         {N_("/_Message/_To"),           NULL, compose_toggle_to_cb     , 0, "<ToggleItem>"},
454         {N_("/_Message/_Cc"),           NULL, compose_toggle_cc_cb     , 0, "<ToggleItem>"},
455         {N_("/_Message/_Bcc"),          NULL, compose_toggle_bcc_cb    , 0, "<ToggleItem>"},
456         {N_("/_Message/_Reply to"),     NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
457         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
458         {N_("/_Message/_Followup to"),  NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
459         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
460         {N_("/_Message/_Attach"),       NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
461 #endif
462 #if USE_GPGME
463         {N_("/_Message/---"),           NULL, NULL, 0, "<Separator>"},
464         {N_("/_Message/Si_gn"),         NULL, compose_toggle_sign_cb   , 0, "<ToggleItem>"},
465         {N_("/_Message/_Encrypt"),      NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
466 #endif /* USE_GPGME */
467         {N_("/_Message/---"),           NULL,           NULL,   0, "<Separator>"},
468         {N_("/_Message/_Request Return Receipt"),       NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
469         {N_("/_Tool"),                  NULL, NULL, 0, "<Branch>"},
470         {N_("/_Tool/Show _ruler"),      NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
471         {N_("/_Tool/_Address book"),    "<alt>A", compose_address_cb , 0, NULL},
472         {N_("/_Tool/_Templates ..."),   NULL, template_select_cb, 0, NULL},
473         {N_("/_Help"),                  NULL, NULL, 0, "<LastBranch>"},
474         {N_("/_Help/_About"),           NULL, about_show, 0, NULL}
475 };
476
477 static GtkTargetEntry compose_mime_types[] =
478 {
479         {"text/uri-list", 0, 0}
480 };
481
482 Compose * compose_new(PrefsAccount *account)
483 {
484         return compose_generic_new(account, NULL, NULL);
485 }
486
487 Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
488 {
489         return compose_generic_new(account, to, NULL);
490 }
491
492 Compose * compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
493 {
494         return compose_generic_new(account, NULL, item);
495 }
496
497 Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem *item)
498 {
499         Compose *compose;
500         GList *cur_ac;
501         GList *account_list;
502         PrefsAccount *ac_prefs;
503
504         if (item && item->prefs->enable_default_account) {
505                 /* get a PrefsAccount *pointer on the wished account */
506                 account_list=account_get_list();
507                 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
508                         ac_prefs = (PrefsAccount *)cur_ac->data;
509                         if (ac_prefs->account_id == item->prefs->default_account) {
510                                 account = ac_prefs;
511                                 break;
512                         }
513                 }
514         }
515         if (!account) account = cur_account;
516         g_return_val_if_fail(account != NULL, NULL);
517
518         compose = compose_create(account, COMPOSE_NEW);
519         compose->replyinfo = NULL;
520
521         if (prefs_common.auto_sig)
522                 compose_insert_sig(compose);
523         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
524         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
525
526         if (account->protocol != A_NNTP) {
527                 if (to) {
528                         compose_entry_append(compose, to, COMPOSE_TO);
529                 } else if(item && item->prefs->enable_default_to) {
530                         compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
531                 }
532                 if (item && item->ret_rcpt) {
533                         GtkItemFactory *ifactory;
534                 
535                         ifactory = gtk_item_factory_from_widget(compose->menubar);
536                         menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
537                 }
538         } else {
539                 if (to) {
540                         compose_entry_append(compose, to, COMPOSE_NEWSGROUPS);
541                 }
542         }
543         gtk_widget_grab_focus(compose->subject_entry);
544
545         if (prefs_common.auto_exteditor)
546                 compose_exec_ext_editor(compose);
547
548         return compose;
549 }
550
551 #define CHANGE_FLAGS(msginfo) \
552 { \
553 if (msginfo->folder->folder->change_flags != NULL) \
554 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
555                                       msginfo->folder, \
556                                       msginfo); \
557 }
558
559 /*
560 Compose * compose_new_followup_and_replyto(PrefsAccount *account,
561                                            const gchar *followupto, gchar * to)
562 {
563         Compose *compose;
564
565         if (!account) account = cur_account;
566         g_return_val_if_fail(account != NULL, NULL);
567         g_return_val_if_fail(account->protocol != A_NNTP, NULL);
568
569         compose = compose_create(account, COMPOSE_NEW);
570
571         if (prefs_common.auto_sig)
572                 compose_insert_sig(compose);
573         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
574         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
575
576         compose_entry_append(compose, to, COMPOSE_TO);
577         compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
578         gtk_widget_grab_focus(compose->subject_entry);
579
580         return compose;
581 }
582 */
583
584 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
585                    gboolean ignore_replyto)
586 {
587         compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE);
588 }
589
590 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
591                                    gboolean to_all,
592                                    gboolean ignore_replyto)
593 {
594         compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE);
595 }
596
597 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
598                                   gboolean to_all,
599                                   gboolean ignore_replyto,
600                                   gboolean followup_and_reply_to)
601 {
602         Compose *compose;
603         PrefsAccount *account;
604         PrefsAccount *reply_account;
605         GtkSText *text;
606
607         g_return_if_fail(msginfo != NULL);
608         g_return_if_fail(msginfo->folder != NULL);
609
610         account = msginfo->folder->folder->account;
611         if (!account && msginfo->to && prefs_common.reply_account_autosel) {
612                 gchar *to;
613                 Xstrdup_a(to, msginfo->to, return);
614                 extract_address(to);
615                 account = account_find_from_address(to);
616         }
617         if(!account&& prefs_common.reply_account_autosel) {
618                 gchar cc[BUFFSIZE];
619                 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
620                         extract_address(cc);
621                         account = account_find_from_address(cc);
622                 }        
623         }
624
625         if (!account) account = cur_account;
626         g_return_if_fail(account != NULL);
627
628         if (ignore_replyto && account->protocol == A_NNTP &&
629             !followup_and_reply_to) {
630                 reply_account =
631                         account_find_from_address(account->address);
632                 if (!reply_account)
633                         reply_account = compose_current_mail_account();
634                 if (!reply_account)
635                         return;
636         } else
637                 reply_account = account;
638         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
639         MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
640
641         CHANGE_FLAGS(msginfo);
642
643         compose = compose_create(account, COMPOSE_REPLY);
644         compose->replyinfo = msginfo;
645
646 #if 0 /* NEW COMPOSE GUI */
647         if (followup_and_reply_to) {
648                 gtk_widget_show(compose->to_hbox);
649                 gtk_widget_show(compose->to_entry);
650                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
651                 compose->use_to = TRUE;
652         }
653 #endif
654         if (msginfo->folder && msginfo->folder->ret_rcpt) {
655                 GtkItemFactory *ifactory;
656         
657                 ifactory = gtk_item_factory_from_widget(compose->menubar);
658                 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
659         }
660
661         if (compose_parse_header(compose, msginfo) < 0) return;
662         compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
663                                 followup_and_reply_to);
664
665         text = GTK_STEXT(compose->text);
666         gtk_stext_freeze(text);
667
668         if (quote) {
669                 FILE *fp;
670                 gchar *quote_str;
671
672                 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
673                         g_warning(_("Can't get text part\n"));
674                 else {
675                         gchar * qmark;
676
677                         if (prefs_common.quotemark && *prefs_common.quotemark)
678                                 qmark = prefs_common.quotemark;
679                         else
680                                 qmark = "> ";
681
682                         quote_str = compose_quote_fmt(compose, msginfo,
683                                                       prefs_common.quotefmt,
684                                                       qmark);
685
686                         /*
687                         quote_str = compose_quote_parse_fmt
688                                 (compose, msginfo, prefs_common.quotefmt);
689                         */
690
691                         if (quote_str != NULL)
692                                 gtk_stext_insert(text, NULL, NULL, NULL,
693                                                  quote_str, -1);
694                         /*                      g_free(quote_str); */
695                         /* compose_quote_file(compose, msginfo, fp); */
696                         fclose(fp);
697                 }
698         }
699
700         if (prefs_common.auto_sig)
701                 compose_insert_sig(compose);
702         gtk_editable_set_position(GTK_EDITABLE(text), 0);
703         gtk_stext_set_point(text, 0);
704
705         if (quote && prefs_common.linewrap_quote) {
706                 compose_wrap_line_all(compose);
707         }
708
709         gtk_stext_thaw(text);
710         gtk_widget_grab_focus(compose->text);
711
712         if (prefs_common.auto_exteditor)
713                 compose_exec_ext_editor(compose);
714 }
715
716
717 static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
718 {
719         gchar *base;
720         gchar *filename;
721
722         g_return_val_if_fail(mimeinfo != NULL, NULL);
723
724         base = mimeinfo->filename ? mimeinfo->filename
725                 : mimeinfo->name ? mimeinfo->name : NULL;
726
727         if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
728                 filename = g_strdup_printf("%s%smimetmp%i.html",
729                                            get_mime_tmp_dir(),
730                                            G_DIR_SEPARATOR_S,
731                                            mimeinfo);
732                 return filename;
733         }
734         else {
735                 base = base ? base : "";
736                 base = g_basename(base);
737                 if (*base == '\0') {
738                         filename = g_strdup_printf("%s%smimetmp%i",
739                                                    get_mime_tmp_dir(),
740                                                    G_DIR_SEPARATOR_S,
741                                                    mimeinfo);
742                         return filename;
743                 }
744         }
745
746         filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
747                                base, NULL);
748
749         return filename;
750 }
751
752 static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
753 {
754         gchar *filename;
755
756         if (!partinfo) return;
757
758         filename = procmime_get_file_name(partinfo);
759
760         if (procmime_get_part(filename, source, partinfo) < 0)
761                 alertpanel_error
762                         (_("Can't get the part of multipart message."));
763
764         return filename;
765 }
766
767 static void compose_attach_parts(Compose * compose,
768                                  MsgInfo * msginfo)
769 {
770
771         FILE *fp;
772         gchar *file;
773         MimeInfo *mimeinfo;
774         MsgInfo *tmpmsginfo;
775         gchar *p;
776         gchar *boundary;
777         gint boundary_len = 0;
778         gchar buf[BUFFSIZE];
779         glong fpos, prev_fpos;
780         gint npart;
781         gchar * source;
782         gchar * filename;
783
784         g_return_if_fail(msginfo != NULL);
785         
786 #if USE_GPGME
787         for (;;) {
788                 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
789                 mimeinfo = procmime_scan_mime_header(fp);
790                 if (!mimeinfo) break;
791
792                 if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
793                     rfc2015_is_encrypted(mimeinfo)) {
794                         MSG_SET_TMP_FLAGS(msginfo->flags, MSG_ENCRYPTED);
795                 }
796                 if (MSG_IS_ENCRYPTED(msginfo->flags) &&
797                     !msginfo->plaintext_file  &&
798                     !msginfo->decryption_failed) {
799                         rfc2015_decrypt_message(msginfo, mimeinfo, fp);
800                         if (msginfo->plaintext_file &&
801                             !msginfo->decryption_failed) {
802                                 fclose(fp);
803                                 continue;
804                         }
805                 }
806                 
807                 break;
808         }
809 #else /* !USE_GPGME */
810         if ((fp = procmsg_open_message(msginfo)) == NULL) return;
811         mimeinfo = procmime_scan_mime_header(fp);
812 #endif /* USE_GPGME */
813
814         fclose(fp);
815         if (!mimeinfo) return;
816         if (mimeinfo->mime_type == MIME_TEXT)
817                 return;
818
819         if ((fp = procmsg_open_message(msginfo)) == NULL) return;
820
821         g_return_if_fail(mimeinfo != NULL);
822         g_return_if_fail(mimeinfo->mime_type != MIME_TEXT);
823
824         if (mimeinfo->mime_type == MIME_MULTIPART) {
825                 g_return_if_fail(mimeinfo->boundary != NULL);
826                 g_return_if_fail(mimeinfo->sub == NULL);
827         }
828         g_return_if_fail(fp != NULL);
829
830         boundary = mimeinfo->boundary;
831
832         if (boundary) {
833                 boundary_len = strlen(boundary);
834
835                 /* look for first boundary */
836                 while ((p = fgets(buf, sizeof(buf), fp)) != NULL)
837                         if (IS_BOUNDARY(buf, boundary, boundary_len)) break;
838                 if (!p) {
839                         fclose(fp);
840                         return;
841                 }
842         }
843
844         if ((fpos = ftell(fp)) < 0) {
845                 perror("ftell");
846                 fclose(fp);
847                 return;
848         }
849
850         for (npart = 0;; npart++) {
851                 MimeInfo *partinfo;
852                 gboolean eom = FALSE;
853
854                 prev_fpos = fpos;
855
856                 partinfo = procmime_scan_mime_header(fp);
857                 if (!partinfo) break;
858
859                 if (npart != 0)
860                         procmime_mimeinfo_insert(mimeinfo, partinfo);
861                 else
862                         procmime_mimeinfo_free(partinfo);
863
864                 /* look for next boundary */
865                 buf[0] = '\0';
866                 while ((p = fgets(buf, sizeof(buf), fp)) != NULL) {
867                         if (IS_BOUNDARY(buf, boundary, boundary_len)) {
868                                 if (buf[2 + boundary_len]     == '-' &&
869                                     buf[2 + boundary_len + 1] == '-')
870                                         eom = TRUE;
871                                 break;
872                         }
873                 }
874                 if (p == NULL)
875                         eom = TRUE;     /* broken MIME message */
876                 fpos = ftell(fp);
877
878                 partinfo->size = fpos - prev_fpos - strlen(buf);
879
880                 if (eom) break;
881         }
882
883         source = procmsg_get_message_file_path(msginfo);
884
885         g_return_if_fail(mimeinfo != NULL);
886
887         if (!mimeinfo->main && mimeinfo->parent)
888                 {
889                         filename = mime_extract_file(source, mimeinfo);
890
891                         compose_attach_append_with_type(compose, filename,
892                                                         mimeinfo->content_type,
893                                                         mimeinfo->mime_type);
894
895                         g_free(filename);
896                 }
897
898         if (mimeinfo->sub && mimeinfo->sub->children)
899                 {
900                         filename = mime_extract_file(source, mimeinfo->sub);
901
902                         compose_attach_append_with_type(compose, filename,
903                                                         mimeinfo->content_type,
904                                                         mimeinfo->sub->mime_type);
905
906                         g_free(filename);
907                 }
908
909         if (mimeinfo->children) {
910                 MimeInfo *child;
911
912                 child = mimeinfo->children;
913                 while (child) {
914                         filename = mime_extract_file(source, child);
915
916                         compose_attach_append_with_type(compose, filename,
917                                                         child->content_type,
918                                                         child->mime_type);
919
920                         g_free(filename);
921
922                         child = child->next;
923                 }
924         }
925
926         fclose(fp);
927
928         procmime_mimeinfo_free_all(mimeinfo);
929 }
930
931
932 #define INSERT_FW_HEADER(var, hdr) \
933 if (msginfo->var && *msginfo->var) { \
934         gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
935         gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
936         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
937 }
938
939 Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
940                          gboolean as_attach)
941 {
942         Compose *compose;
943         /*      PrefsAccount *account; */
944         GtkSText *text;
945         FILE *fp;
946         gchar buf[BUFFSIZE];
947
948         g_return_val_if_fail(msginfo != NULL, NULL);
949         g_return_val_if_fail(msginfo->folder != NULL, NULL);
950
951         account = msginfo->folder->folder->account;
952         if (!account && msginfo->to && prefs_common.forward_account_autosel) {
953                 gchar *to;
954                 Xstrdup_a(to, msginfo->to, return);
955                 extract_address(to);
956                 account = account_find_from_address(to);
957         }
958
959         if(!account && prefs_common.forward_account_autosel) {
960                 gchar cc[BUFFSIZE];
961                 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
962                         extract_address(cc);
963                         account = account_find_from_address(cc);
964                 }
965         }
966
967         if (account == NULL) {
968                 account = cur_account;
969                 /*
970                 account = msginfo->folder->folder->account;
971                 if (!account) account = cur_account;
972                 */
973         }
974         g_return_val_if_fail(account != NULL, NULL);
975
976         MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
977         MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
978         CHANGE_FLAGS(msginfo);
979
980         compose = compose_create(account, COMPOSE_FORWARD);
981
982         if (msginfo->subject && *msginfo->subject) {
983                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
984                 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
985                                       msginfo->subject);
986         }
987
988         text = GTK_STEXT(compose->text);
989         gtk_stext_freeze(text);
990
991         if (as_attach) {
992                 gchar *msgfile;
993
994                 msgfile = procmsg_get_message_file_path(msginfo);
995                 if (!is_file_exist(msgfile))
996                         g_warning(_("%s: file not exist\n"), msgfile);
997                 else
998                         compose_attach_append(compose, msgfile,
999                                               MIME_MESSAGE_RFC822);
1000
1001                 g_free(msgfile);
1002         } else {
1003                 FILE *fp;
1004                 gchar *quote_str;
1005                 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1006                         g_warning(_("Can't get text part\n"));
1007                 else {
1008                         gchar * qmark;
1009
1010                         if (prefs_common.fw_quotemark &&
1011                             *prefs_common.fw_quotemark)
1012                                 qmark = prefs_common.fw_quotemark;
1013                         else
1014                                 qmark = "> ";
1015
1016                         quote_str = compose_quote_fmt(compose, msginfo,
1017                                                       prefs_common.fw_quotefmt,
1018                                                       qmark);
1019
1020                         if (quote_str != NULL)
1021                                 gtk_stext_insert(text, NULL, NULL, NULL,
1022                                                  quote_str, -1);
1023
1024                         fclose(fp);
1025                 }
1026
1027                 compose_attach_parts(compose, msginfo);
1028         }
1029
1030         if (prefs_common.auto_sig)
1031                 compose_insert_sig(compose);
1032         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1033         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1034
1035         gtk_stext_thaw(text);
1036 #if 0 /* NEW COMPOSE GUI */
1037         if (account->protocol != A_NNTP)
1038                 gtk_widget_grab_focus(compose->to_entry);
1039         else
1040                 gtk_widget_grab_focus(compose->newsgroups_entry);
1041 #endif
1042         gtk_widget_grab_focus(compose->header_last->entry);
1043
1044         if (prefs_common.auto_exteditor)
1045                 compose_exec_ext_editor(compose);
1046
1047         return compose;
1048 }
1049
1050 #undef INSERT_FW_HEADER
1051
1052 Compose * compose_forward_multiple(PrefsAccount * account, 
1053                           GSList *msginfo_list) 
1054 {
1055         Compose *compose;
1056         GtkSText *text;
1057         GSList *msginfo;
1058         gchar *msgfile;
1059
1060         g_return_val_if_fail(msginfo_list != NULL, NULL);
1061         
1062         for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1063                 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1064                         return NULL;
1065         }
1066
1067         if (account == NULL) {
1068                 account = cur_account;
1069                 /*
1070                 account = msginfo->folder->folder->account;
1071                 if (!account) account = cur_account;
1072                 */
1073         }
1074         g_return_val_if_fail(account != NULL, NULL);
1075
1076         compose = compose_create(account, COMPOSE_FORWARD);
1077
1078         text = GTK_STEXT(compose->text);
1079         gtk_stext_freeze(text);
1080
1081         for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1082                 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1083                 if (!is_file_exist(msgfile))
1084                         g_warning(_("%s: file not exist\n"), msgfile);
1085                 else
1086                         compose_attach_append(compose, msgfile,
1087                                 MIME_MESSAGE_RFC822);
1088                 g_free(msgfile);
1089         }
1090
1091         if (prefs_common.auto_sig)
1092                 compose_insert_sig(compose);
1093         gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1094         gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1095
1096         gtk_stext_thaw(text);
1097 #if 0 /* NEW COMPOSE GUI */
1098         if (account->protocol != A_NNTP)
1099                 gtk_widget_grab_focus(compose->to_entry);
1100         else
1101                 gtk_widget_grab_focus(compose->newsgroups_entry);
1102 #endif
1103
1104         return compose;
1105 }
1106
1107 void compose_reedit(MsgInfo *msginfo)
1108 {
1109         Compose *compose;
1110         PrefsAccount *account;
1111         GtkSText *text;
1112         FILE *fp;
1113         gchar buf[BUFFSIZE];
1114
1115         g_return_if_fail(msginfo != NULL);
1116         g_return_if_fail(msginfo->folder != NULL);
1117
1118         account = msginfo->folder->folder->account;
1119
1120         if(!account&& prefs_common.reedit_account_autosel) {
1121                 gchar from[BUFFSIZE];
1122                 if(!get_header_from_msginfo(msginfo,from,sizeof(from),"FROM:")){ /* Found a FROM header */
1123                         extract_address(from);
1124                         account = account_find_from_address(from);
1125                 }
1126         }
1127         if (!account) account = cur_account;
1128         g_return_if_fail(account != NULL);
1129
1130         compose = compose_create(account, COMPOSE_REEDIT);
1131         compose->targetinfo = procmsg_msginfo_copy(msginfo);
1132
1133         if (compose_parse_header(compose, msginfo) < 0) return;
1134         compose_reedit_set_entry(compose, msginfo);
1135
1136         text = GTK_STEXT(compose->text);
1137         gtk_stext_freeze(text);
1138
1139         if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1140                 g_warning(_("Can't get text part\n"));
1141         else {
1142                 while (fgets(buf, sizeof(buf), fp) != NULL)
1143                         gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1144                 fclose(fp);
1145         }
1146         compose_attach_parts(compose, msginfo);
1147
1148         gtk_stext_thaw(text);
1149         gtk_widget_grab_focus(compose->text);
1150
1151         if (prefs_common.auto_exteditor)
1152                 compose_exec_ext_editor(compose);
1153 }
1154
1155 GList *compose_get_compose_list(void)
1156 {
1157         return compose_list;
1158 }
1159
1160 void compose_entry_append(Compose *compose, const gchar *address,
1161                           ComposeEntryType type)
1162 {
1163         GtkEntry *entry;
1164         const gchar *text;
1165         gchar *header;
1166
1167         if (!address || *address == '\0') return;
1168
1169 #if 0 /* NEW COMPOSE GUI */
1170         switch (type) {
1171         case COMPOSE_CC:
1172                 entry = GTK_ENTRY(compose->cc_entry);
1173                 break;
1174         case COMPOSE_BCC:
1175                 entry = GTK_ENTRY(compose->bcc_entry);
1176                 break;
1177         case COMPOSE_NEWSGROUPS:
1178                 entry = GTK_ENTRY(compose->newsgroups_entry);
1179                 break;
1180         case COMPOSE_TO:
1181         default:
1182                 entry = GTK_ENTRY(compose->to_entry);
1183                 break;
1184         }
1185
1186         text = gtk_entry_get_text(entry);
1187         if (*text != '\0')
1188                 gtk_entry_append_text(entry, ", ");
1189         gtk_entry_append_text(entry, address);
1190 #endif
1191
1192         switch (type) {
1193         case COMPOSE_CC:
1194                 header = N_("Cc:");
1195                 break;
1196         case COMPOSE_BCC:
1197                 header = N_("Bcc:");
1198                 break;
1199         case COMPOSE_REPLYTO:
1200                 header = N_("Reply-To:");
1201                 break;
1202         case COMPOSE_NEWSGROUPS:
1203                 header = N_("Newsgroups:");
1204                 break;
1205         case COMPOSE_FOLLOWUPTO:
1206                 header = N_( "Followup-To:");
1207                 break;
1208         case COMPOSE_TO:
1209         default:
1210                 header = N_("To:");
1211                 break;
1212         }
1213         header = prefs_common.trans_hdr ? gettext(header) : header;
1214
1215         compose_add_header_entry(compose, header, (gchar *)address);
1216 }
1217
1218 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1219 {
1220         static HeaderEntry hentry[] = {{"Reply-To:",       NULL, TRUE},
1221                                        {"Cc:",             NULL, FALSE},
1222                                        {"References:",     NULL, FALSE},
1223                                        {"Bcc:",            NULL, FALSE},
1224                                        {"Newsgroups:",     NULL, FALSE},
1225                                        {"Followup-To:",    NULL, FALSE},
1226                                        {"X-Mailing-List:", NULL, FALSE},
1227                                        {"X-BeenThere:",    NULL, FALSE},
1228                                        {NULL,              NULL, FALSE}};
1229
1230         enum
1231         {
1232                 H_REPLY_TO       = 0,
1233                 H_CC             = 1,
1234                 H_REFERENCES     = 2,
1235                 H_BCC            = 3,
1236                 H_NEWSGROUPS     = 4,
1237                 H_FOLLOWUP_TO    = 5,
1238                 H_X_MAILING_LIST = 6,
1239                 H_X_BEENTHERE    = 7
1240         };
1241
1242         FILE *fp;
1243
1244         g_return_val_if_fail(msginfo != NULL, -1);
1245
1246         if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1247         procheader_get_header_fields(fp, hentry);
1248         fclose(fp);
1249
1250         if (hentry[H_REPLY_TO].body != NULL) {
1251                 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1252                 compose->replyto = hentry[H_REPLY_TO].body;
1253                 hentry[H_REPLY_TO].body = NULL;
1254         }
1255         if (hentry[H_CC].body != NULL) {
1256                 conv_unmime_header_overwrite(hentry[H_CC].body);
1257                 compose->cc = hentry[H_CC].body;
1258                 hentry[H_CC].body = NULL;
1259         }
1260         if (hentry[H_X_MAILING_LIST].body != NULL) {
1261                 /* this is good enough to parse debian-devel */
1262                 char * buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
1263                 g_return_val_if_fail(buf != NULL, -1 );
1264                 if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
1265                         compose->mailinglist = g_strdup(buf);
1266                 g_free(buf);
1267                 g_free(hentry[H_X_MAILING_LIST].body);
1268                 hentry[H_X_MAILING_LIST].body = NULL ;
1269         }
1270         if (hentry[H_X_BEENTHERE].body != NULL) {
1271                 /* this is good enough to parse the sylpheed-claws lists */
1272                 char * buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
1273                 g_return_val_if_fail(buf != NULL, -1 );
1274                 if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
1275                         compose->mailinglist = g_strdup(buf);
1276                 g_free(buf);
1277                 g_free(hentry[H_X_BEENTHERE].body);
1278                 hentry[H_X_BEENTHERE].body = NULL ;
1279         }
1280         if (hentry[H_REFERENCES].body != NULL) {
1281                 if (compose->mode == COMPOSE_REEDIT)
1282                         compose->references = hentry[H_REFERENCES].body;
1283                 else {
1284                         compose->references = compose_parse_references
1285                                 (hentry[H_REFERENCES].body, msginfo->msgid);
1286                         g_free(hentry[H_REFERENCES].body);
1287                 }
1288                 hentry[H_REFERENCES].body = NULL;
1289         }
1290         if (hentry[H_BCC].body != NULL) {
1291                 if (compose->mode == COMPOSE_REEDIT) {
1292                         conv_unmime_header_overwrite(hentry[H_BCC].body);
1293                         compose->bcc = hentry[H_BCC].body;
1294                 } else
1295                         g_free(hentry[H_BCC].body);
1296                 hentry[H_BCC].body = NULL;
1297         }
1298         if (hentry[H_NEWSGROUPS].body != NULL) {
1299                 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1300                 hentry[H_NEWSGROUPS].body = NULL;
1301         }
1302         if (hentry[H_FOLLOWUP_TO].body != NULL) {
1303                 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1304                 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1305                 hentry[H_FOLLOWUP_TO].body = NULL;
1306         }
1307
1308         if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1309                 compose->inreplyto = g_strdup(msginfo->inreplyto);
1310         else if (compose->mode != COMPOSE_REEDIT &&
1311                  msginfo->msgid && *msginfo->msgid) {
1312                 compose->inreplyto = g_strdup(msginfo->msgid);
1313
1314                 if (!compose->references) {
1315                         if (msginfo->inreplyto && *msginfo->inreplyto)
1316                                 compose->references =
1317                                         g_strdup_printf("<%s>\n\t<%s>",
1318                                                         msginfo->inreplyto,
1319                                                         msginfo->msgid);
1320                         else
1321                                 compose->references =
1322                                         g_strconcat("<", msginfo->msgid, ">",
1323                                                     NULL);
1324                 }
1325         }
1326
1327         return 0;
1328 }
1329
1330 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1331 {
1332         GSList *ref_id_list, *cur;
1333         GString *new_ref;
1334         gchar *new_ref_str;
1335
1336         ref_id_list = references_list_append(NULL, ref);
1337         if (!ref_id_list) return NULL;
1338         if (msgid && *msgid)
1339                 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1340
1341         for (;;) {
1342                 gint len = 0;
1343
1344                 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1345                         /* "<" + Message-ID + ">" + CR+LF+TAB */
1346                         len += strlen((gchar *)cur->data) + 5;
1347
1348                 if (len > MAX_REFERENCES_LEN) {
1349                         /* remove second message-ID */
1350                         if (ref_id_list && ref_id_list->next &&
1351                             ref_id_list->next->next) {
1352                                 g_free(ref_id_list->next->data);
1353                                 ref_id_list = g_slist_remove
1354                                         (ref_id_list, ref_id_list->next->data);
1355                         } else {
1356                                 slist_free_strings(ref_id_list);
1357                                 g_slist_free(ref_id_list);
1358                                 return NULL;
1359                         }
1360                 } else
1361                         break;
1362         }
1363
1364         new_ref = g_string_new("");
1365         for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1366                 if (new_ref->len > 0)
1367                         g_string_append(new_ref, "\n\t");
1368                 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1369         }
1370
1371         slist_free_strings(ref_id_list);
1372         g_slist_free(ref_id_list);
1373
1374         new_ref_str = new_ref->str;
1375         g_string_free(new_ref, FALSE);
1376
1377         return new_ref_str;
1378 }
1379
1380 /*
1381 static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
1382 {
1383         GtkSText *text = GTK_STEXT(compose->text);
1384         gchar *qmark;
1385         gchar *quote_str;
1386         GdkColor *qcolor = NULL;
1387         gchar buf[BUFFSIZE];
1388         gint qlen;
1389         gchar *linep, *cur, *leftp;
1390         gint line_len, cur_len;
1391         gint wrap_len;
1392         gint str_len;
1393         gint ch_len;
1394
1395         // if (prefs_common.enable_color) qcolor = &quote_color;
1396         if (prefs_common.quotemark && *prefs_common.quotemark)
1397                 qmark = prefs_common.quotemark;
1398         else
1399                 qmark = "> ";
1400         quote_str = compose_quote_parse_fmt(compose, msginfo, qmark);
1401         g_return_if_fail(quote_str != NULL);
1402         qlen = strlen(quote_str);
1403
1404         if (!prefs_common.linewrap_quote ||
1405             prefs_common.linewrap_len <= qlen) {
1406                 while (fgets(buf, sizeof(buf), fp) != NULL) {
1407                         gtk_stext_insert(text, NULL, qcolor, NULL,
1408                                         quote_str, -1);
1409                         gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
1410                 }
1411                 g_free(quote_str);
1412                 return;
1413         }
1414
1415         wrap_len = prefs_common.linewrap_len - qlen;
1416
1417         while (fgets(buf, sizeof(buf), fp) != NULL) {
1418                 strretchomp(buf);
1419                 str_len = strlen(buf);
1420
1421                 if (str_len <= wrap_len) {
1422                         gtk_stext_insert(text, NULL, qcolor, NULL,
1423                                         quote_str, -1);
1424                         gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
1425                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
1426                         continue;
1427                 }
1428
1429                 linep = cur = leftp = buf;
1430                 line_len = cur_len = 0;
1431
1432                 while (*cur != '\0') {
1433                         ch_len = mblen(cur, MB_CUR_MAX);
1434                         if (ch_len < 0) ch_len = 1;
1435
1436                         if (ch_len == 1 && isspace(*cur)) {
1437                                 linep = cur + ch_len;
1438                                 line_len = cur_len + ch_len;
1439                         }
1440
1441                         if (cur_len + ch_len > wrap_len && line_len > 0) {
1442                                 gtk_stext_insert(text, NULL, qcolor, NULL,
1443                                                 quote_str, -1);
1444
1445                                 if (isspace(*(linep - 1)))
1446                                         gtk_stext_insert(text, NULL,
1447                                                         qcolor, NULL,
1448                                                         leftp, line_len - 1);
1449                                 else
1450                                         gtk_stext_insert(text, NULL,
1451                                                         qcolor, NULL,
1452                                                         leftp, line_len);
1453                                 gtk_stext_insert(text, NULL, NULL, NULL,
1454                                                 "\n", 1);
1455
1456                                 leftp = linep;
1457                                 cur_len = cur_len - line_len + ch_len;
1458                                 line_len = 0;
1459                                 cur += ch_len;
1460                                 continue;
1461                         }
1462
1463                         if (ch_len > 1) {
1464                                 linep = cur + ch_len;
1465                                 line_len = cur_len + ch_len;
1466                         }
1467                         cur_len += ch_len;
1468                         cur += ch_len;
1469                 }
1470
1471                 if (*leftp) {
1472                         gtk_stext_insert(text, NULL, qcolor, NULL,
1473                                         quote_str, -1);
1474                         gtk_stext_insert(text, NULL, qcolor, NULL, leftp, -1);
1475                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
1476                 }
1477         }
1478
1479         g_free(quote_str);
1480 }
1481 */
1482
1483 /*
1484 static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
1485                                       const gchar *fmt)
1486 {
1487         gchar *ext_str;
1488         size_t buf_len = 1024;
1489         size_t ext_len = 0;
1490         gchar *str;
1491         gchar *mbs;
1492         wchar_t *wcsfmt;
1493         wchar_t *sp;
1494         gchar tmp[3];
1495
1496         if (!fmt || *fmt == '\0') return 0;
1497
1498         Xalloca(mbs, sizeof(wchar_t) + 1, return 0);
1499         Xalloca(wcsfmt, (strlen(fmt) + 1) * sizeof(wchar_t), return 0);
1500         mbstowcs(wcsfmt, fmt, strlen(fmt) + 1);
1501         sp = wcsfmt;
1502
1503         ext_str = g_malloc(sizeof(gchar) * buf_len);
1504         g_return_val_if_fail(ext_str != NULL, NULL);
1505
1506         while (*sp) {
1507                 gint len;
1508
1509                 len = wctomb(mbs, *sp);
1510                 mbs[len] = '\0';
1511
1512                 if (*mbs == '%') {
1513                         gchar *p;
1514
1515                         wctomb(mbs, *(++sp));
1516                         str = NULL;
1517
1518                         switch (*mbs) {
1519                         case 'd':
1520                                 str = msginfo->date;
1521                                 sp++;
1522                                 break;
1523                         case 'f':
1524                                 str = msginfo->from;
1525                                 sp++;
1526                                 break;
1527                         case 'I':
1528                                 if (!msginfo->fromname) {sp++; break;}
1529                                 p = msginfo->fromname;
1530                                 tmp[0] = tmp[1] = tmp[2] = '\0';
1531
1532                                 if (*p && isalnum(*p))
1533                                         tmp[0] = toupper(*p);
1534                                 else {
1535                                         sp++;
1536                                         break;
1537                                 }
1538
1539                                 while (*p) {
1540                                         while (*p && !isspace(*p)) p++;
1541                                         while (*p && isspace(*p)) p++;
1542                                         if (*p && isalnum(*p))
1543                                                 tmp[1] = toupper(*p);
1544                                 }
1545
1546                                 if (tmp[1]) str = tmp;
1547                                 sp++;
1548                                 break;
1549                         case 'n':
1550                                 str = msginfo->fromname;
1551                                 sp++;
1552                                 break;
1553                         case 'N':
1554                                 if (!msginfo->fromname) {sp++; break;}
1555                                 Xstrdup_a(str, msginfo->fromname,
1556                                           {sp++; break;});
1557                                 p = str;
1558                                 while (*p && !isspace(*p)) p++;
1559                                 *p = '\0';
1560                                 sp++;
1561                                 break;
1562                         case 's':
1563                                 str = msginfo->subject;
1564                                 sp++;
1565                                 break;
1566                         case 't':
1567                                 str = msginfo->to;
1568                                 sp++;
1569                                 break;
1570                         case 'c':
1571                                 str = msginfo->cc;
1572                                 sp++;
1573                                 break;
1574                         case 'i':
1575                                 if (!msginfo->msgid) {sp++; break;}
1576                                 Xalloca(str, strlen(msginfo->msgid) + 3,
1577                                         {sp++; break;});
1578                                 g_snprintf(str, strlen(msginfo->msgid) + 3,
1579                                            "<%s>", msginfo->msgid);
1580                                 sp++;
1581                                 break;
1582                         case '%':
1583                                 str = "%";
1584                                 sp++;
1585                                 break;
1586                         default:
1587                                 break;
1588                         }
1589
1590                         if (str) {
1591                                 while (ext_len + strlen(str) + 1 > buf_len)
1592                                         buf_len += 1024;
1593                                 ext_str = g_realloc(ext_str,
1594                                                     sizeof(gchar) * buf_len);
1595                                 g_return_val_if_fail(ext_str != NULL, NULL);
1596                                 strcpy(ext_str + ext_len, str);
1597                                 ext_len += strlen(str);
1598                         }
1599                 } else if (*mbs == '\\') {
1600                         wctomb(mbs, *(++sp));
1601                         str = NULL;
1602
1603                         switch (*mbs) {
1604                         case 'n':
1605                                 str = "\n";
1606                                 break;
1607                         case 't':
1608                                 str = "\t";
1609                                 break;
1610                         case '\\':
1611                                 str = "\\";
1612                                 break;
1613                         default:
1614                                 break;
1615                         }
1616
1617                         if (str) {
1618                                 while (ext_len + strlen(str) + 1 > buf_len)
1619                                         buf_len += 1024;
1620                                 ext_str = g_realloc(ext_str,
1621                                                     sizeof(gchar) * buf_len);
1622                                 g_return_val_if_fail(ext_str != NULL, NULL);
1623                                 strcpy(ext_str + ext_len, str);
1624                                 ext_len += strlen(str);
1625                                 sp++;
1626                         }
1627                 } else {
1628                         while (ext_len + len + 1 > buf_len) buf_len += 1024;
1629                         ext_str = g_realloc(ext_str, sizeof(gchar) * buf_len);
1630                         g_return_val_if_fail(ext_str != NULL, NULL);
1631                         strcpy(ext_str + ext_len, mbs);
1632                         ext_len += len;
1633                         sp++;
1634                 }
1635         }
1636
1637         if (ext_str)
1638                 ext_str = g_realloc(ext_str, strlen(ext_str) + 1);
1639
1640         return ext_str;
1641 }
1642 */
1643
1644 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1645                                     gboolean to_all, gboolean ignore_replyto,
1646                                     gboolean followup_and_reply_to)
1647 {
1648         GSList *cc_list;
1649         GSList *cur;
1650         gchar *from;
1651         GHashTable *to_table;
1652
1653         g_return_if_fail(compose->account != NULL);
1654         g_return_if_fail(msginfo != NULL);
1655
1656         if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
1657                 compose_entry_append(compose,
1658                                     ((compose->mailinglist && !ignore_replyto)
1659                                      ? compose->mailinglist
1660                                      : (compose->replyto && !ignore_replyto)
1661                                      ? compose->replyto
1662                                      : msginfo->from ? msginfo->from : ""),
1663                                      COMPOSE_TO);
1664         if (compose->account->protocol == A_NNTP)
1665                 compose_entry_append(compose,
1666                                      compose->followup_to ? compose->followup_to
1667                                      : compose->newsgroups ? compose->newsgroups
1668                                      : "",
1669                                      COMPOSE_NEWSGROUPS);
1670
1671         if (msginfo->subject && *msginfo->subject) {
1672                 gchar *buf, *buf2, *p;
1673
1674                 buf = g_strdup(msginfo->subject);
1675                 while (!strncasecmp(buf, "Re:", 3)) {
1676                         p = buf + 3;
1677                         while (isspace(*p)) p++;
1678                         memmove(buf, p, strlen(p) + 1);
1679                 }
1680
1681                 buf2 = g_strdup_printf("Re: %s", buf);
1682                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1683                 g_free(buf2);
1684                 g_free(buf);
1685         } else
1686                 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1687
1688         if (!to_all || compose->account->protocol == A_NNTP) return;
1689
1690         from = g_strdup(compose->replyto ? compose->replyto :
1691                         msginfo->from ? msginfo->from : "");
1692         extract_address(from);
1693
1694         cc_list = address_list_append(NULL, msginfo->to);
1695         cc_list = address_list_append(cc_list, compose->cc);
1696
1697         to_table = g_hash_table_new(g_str_hash, g_str_equal);
1698         g_hash_table_insert(to_table, from, GINT_TO_POINTER(1));
1699         if (compose->account)
1700                 g_hash_table_insert(to_table, compose->account->address,
1701                                     GINT_TO_POINTER(1));
1702
1703         /* remove address on To: and that of current account */
1704         for (cur = cc_list; cur != NULL; ) {
1705                 GSList *next = cur->next;
1706
1707                 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1708                         cc_list = g_slist_remove(cc_list, cur->data);
1709                 else
1710                         g_hash_table_insert(to_table, cur->data, cur);
1711
1712                 cur = next;
1713         }
1714         g_hash_table_destroy(to_table);
1715         g_free(from);
1716
1717         if (cc_list) {
1718                 for (cur = cc_list; cur != NULL; cur = cur->next)
1719                         compose_entry_append(compose, (gchar *)cur->data,
1720                                              COMPOSE_CC);
1721                 slist_free_strings(cc_list);
1722                 g_slist_free(cc_list);
1723         }
1724 }
1725
1726 #define SET_ENTRY(entry, str) \
1727 { \
1728         if (str && *str) \
1729                 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1730 }
1731
1732 #define SET_ADDRESS(type, str) \
1733 { \
1734         if (str && *str) \
1735                 compose_entry_append(compose, str, type); \
1736 }
1737
1738 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1739 {
1740         g_return_if_fail(msginfo != NULL);
1741
1742         SET_ENTRY(subject_entry, msginfo->subject);
1743         SET_ADDRESS(COMPOSE_TO, msginfo->to);
1744         SET_ADDRESS(COMPOSE_CC, compose->cc);
1745         SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1746         SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1747
1748 #if 0 /* NEW COMPOSE GUI */
1749         if (compose->bcc) {
1750                 GtkItemFactory *ifactory;
1751                 GtkWidget *menuitem;
1752
1753                 ifactory = gtk_item_factory_from_widget(compose->menubar);
1754                 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
1755                 gtk_check_menu_item_set_active
1756                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1757         }
1758         if (compose->replyto) {
1759                 GtkItemFactory *ifactory;
1760                 GtkWidget *menuitem;
1761
1762                 ifactory = gtk_item_factory_from_widget(compose->menubar);
1763                 menuitem = gtk_item_factory_get_item
1764                         (ifactory, "/Message/Reply to");
1765                 gtk_check_menu_item_set_active
1766                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1767         }
1768 #endif
1769 }
1770
1771 #undef SET_ENTRY
1772 #undef SET_ADDRESS
1773
1774 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1775 {
1776         FILE *tmpfp;
1777         pid_t thepid;
1778         gchar *sigtext;
1779         FILE  *sigprg;
1780         gchar  *buf;
1781         size_t buf_len = 128;
1782  
1783         if (strlen(sigfile) < 2)
1784           return;
1785  
1786         sigprg = popen(sigfile+1, "r");
1787         if (sigprg) {
1788
1789                 buf = g_malloc(buf_len);
1790
1791                 if (!buf) {
1792                         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1793                         "Unable to insert signature (malloc failed)\n", -1);
1794
1795                         pclose(sigprg);
1796                         return;
1797                 }
1798
1799                 while (!feof(sigprg)) {
1800                         bzero(buf, buf_len);
1801                         fread(buf, buf_len-1, 1, sigprg);
1802                         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1803                 }
1804
1805                 g_free(buf);
1806                 pclose(sigprg);
1807         }
1808         else
1809         {
1810                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1811                 "Can't exec file: ", -1);
1812                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1813                 sigfile+1, -1);
1814         }
1815 }
1816
1817 static void compose_insert_sig(Compose *compose)
1818 {
1819         gchar *sigfile;
1820
1821         if (compose->account && compose->account->sig_path)
1822                 sigfile = g_strdup(compose->account->sig_path);
1823         else {
1824                 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1825                                       DEFAULT_SIGNATURE, NULL);
1826         }
1827
1828         if (!is_file_or_fifo_exist(sigfile) & (sigfile[0] != '|')) {
1829                 g_free(sigfile);
1830                 return;
1831         }
1832
1833         gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1834         if (prefs_common.sig_sep) {
1835                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1836                                 prefs_common.sig_sep, -1);
1837                 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1838                                 "\n", 1);
1839         }
1840
1841         if (sigfile[0] == '|')
1842         {
1843                 compose_exec_sig(compose, sigfile);
1844         }
1845         else
1846         {
1847                 compose_insert_file(compose, sigfile);
1848         }
1849         g_free(sigfile);
1850 }
1851
1852 static void compose_insert_file(Compose *compose, const gchar *file)
1853 {
1854         GtkSText *text = GTK_STEXT(compose->text);
1855         gchar buf[BUFFSIZE];
1856         gint len;
1857         FILE *fp;
1858
1859         g_return_if_fail(file != NULL);
1860
1861         if ((fp = fopen(file, "r")) == NULL) {
1862                 FILE_OP_ERROR(file, "fopen");
1863                 return;
1864         }
1865
1866         gtk_stext_freeze(text);
1867
1868         while (fgets(buf, sizeof(buf), fp) != NULL) {
1869                 /* Strip <CR> if DOS/Windoze file, replace <CR> with <LF> if MAC file */
1870                 len = strlen(buf);
1871                 if (len > 1 && buf[len - 2] == '\r' && buf[len - 1] == '\n') {
1872                         buf[len - 2] = '\n';
1873                         buf[len - 1] = '\0';
1874                 } else {
1875                         while (--len > 0)
1876                                 if (buf[len] == '\r')
1877                                         buf[len] = '\n';
1878                 }
1879
1880                 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1881         }
1882
1883         gtk_stext_thaw(text);
1884
1885         fclose(fp);
1886 }
1887
1888 static void compose_attach_info(Compose * compose, AttachInfo * ainfo,
1889                                 ContentType cnttype)
1890 {
1891         gchar *text[N_ATTACH_COLS];
1892         gint row;
1893
1894         text[COL_MIMETYPE] = ainfo->content_type;
1895         text[COL_SIZE] = to_human_readable(ainfo->size);
1896         text[COL_NAME] = ainfo->name;
1897
1898         row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1899         gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1900
1901         if (cnttype != MIME_MESSAGE_RFC822)
1902                 compose_changed_cb(NULL, compose);
1903 }
1904
1905 static void compose_attach_append_with_type(Compose *compose,
1906                                             const gchar *file,
1907                                             const gchar *type,
1908                                             ContentType cnttype)
1909 {
1910         AttachInfo *ainfo;
1911         off_t size;
1912
1913         if (!is_file_exist(file)) {
1914                 g_warning(_("File %s doesn't exist\n"), file);
1915                 return;
1916         }
1917         if ((size = get_file_size(file)) < 0) {
1918                 g_warning(_("Can't get file size of %s\n"), file);
1919                 return;
1920         }
1921         if (size == 0) {
1922                 alertpanel_notice(_("File %s is empty\n"), file);
1923                 return;
1924         }
1925 #if 0 /* NEW COMPOSE GUI */
1926         if (!compose->use_attach) {
1927                 GtkItemFactory *ifactory;
1928                 GtkWidget *menuitem;
1929
1930                 ifactory = gtk_item_factory_from_widget(compose->menubar);
1931                 menuitem = gtk_item_factory_get_item(ifactory,
1932                                                      "/Message/Attach");
1933                 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1934                                                TRUE);
1935         }
1936 #endif
1937         ainfo = g_new0(AttachInfo, 1);
1938         ainfo->file = g_strdup(file);
1939
1940         if (cnttype == MIME_MESSAGE_RFC822) {
1941                 ainfo->encoding = ENC_7BIT;
1942                 ainfo->name = g_strdup_printf(_("Message: %s"),
1943                                               g_basename(file));
1944         } else {
1945                 ainfo->encoding = ENC_BASE64;
1946                 ainfo->name = g_strdup(g_basename(file));
1947         }
1948
1949         ainfo->content_type = g_strdup(type);
1950         ainfo->size = size;
1951
1952         compose_attach_info(compose, ainfo, cnttype);
1953 }
1954
1955 static void compose_attach_append(Compose *compose, const gchar *file,
1956                                   ContentType cnttype)
1957 {
1958         AttachInfo *ainfo;
1959         gchar *text[N_ATTACH_COLS];
1960         off_t size;
1961         gint row;
1962
1963         if (!is_file_exist(file)) {
1964                 g_warning(_("File %s doesn't exist\n"), file);
1965                 return;
1966         }
1967         if ((size = get_file_size(file)) < 0) {
1968                 g_warning(_("Can't get file size of %s\n"), file);
1969                 return;
1970         }
1971         if (size == 0) {
1972                 alertpanel_notice(_("File %s is empty\n"), file);
1973                 return;
1974         }
1975 #if 0 /* NEW COMPOSE GUI */
1976         if (!compose->use_attach) {
1977                 GtkItemFactory *ifactory;
1978                 GtkWidget *menuitem;
1979
1980                 ifactory = gtk_item_factory_from_widget(compose->menubar);
1981                 menuitem = gtk_item_factory_get_item(ifactory,
1982                                                      "/Message/Attach");
1983                 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1984                                                TRUE);
1985         }
1986 #endif
1987         ainfo = g_new0(AttachInfo, 1);
1988         ainfo->file = g_strdup(file);
1989
1990         if (cnttype == MIME_MESSAGE_RFC822) {
1991                 ainfo->content_type = g_strdup("message/rfc822");
1992                 ainfo->encoding = ENC_7BIT;
1993                 ainfo->name = g_strdup_printf(_("Message: %s"),
1994                                               g_basename(file));
1995         } else {
1996                 ainfo->content_type = procmime_get_mime_type(file);
1997                 if (!ainfo->content_type)
1998                         ainfo->content_type =
1999                                 g_strdup("application/octet-stream");
2000                 ainfo->encoding = ENC_BASE64;
2001                 ainfo->name = g_strdup(g_basename(file));
2002         }
2003         ainfo->size = size;
2004
2005         compose_attach_info(compose, ainfo, cnttype);
2006 }
2007
2008 static void compose_wrap_line(Compose *compose)
2009 {
2010         GtkSText *text = GTK_STEXT(compose->text);
2011         gint ch_len, last_ch_len;
2012         gchar cbuf[MB_LEN_MAX], last_ch;
2013         guint text_len;
2014         guint line_end;
2015         guint quoted;
2016         gint p_start, p_end;
2017         gint line_pos, cur_pos;
2018         gint line_len, cur_len;
2019
2020 #define GET_STEXT(pos)                                                        \
2021         if (text->use_wchar)                                                 \
2022                 ch_len = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
2023         else {                                                               \
2024                 cbuf[0] = GTK_STEXT_INDEX(text, (pos));                       \
2025                 ch_len = 1;                                                  \
2026         }
2027
2028         gtk_stext_freeze(text);
2029
2030         text_len = gtk_stext_get_length(text);
2031
2032         /* check to see if the point is on the paragraph mark (empty line). */
2033         cur_pos = gtk_stext_get_point(text);
2034         GET_STEXT(cur_pos);
2035         if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
2036                 if (cur_pos == 0)
2037                         goto compose_end; /* on the paragraph mark */
2038                 GET_STEXT(cur_pos - 1);
2039                 if (ch_len == 1 && *cbuf == '\n')
2040                         goto compose_end; /* on the paragraph mark */
2041         }
2042
2043         /* find paragraph start. */
2044         line_end = quoted = 0;
2045         for (p_start = cur_pos; p_start >= 0; --p_start) {
2046                 GET_STEXT(p_start);
2047                 if (ch_len == 1 && *cbuf == '\n') {
2048                         if (quoted)
2049                                 goto compose_end; /* quoted part */
2050                         if (line_end) {
2051                                 p_start += 2;
2052                                 break;
2053                         }
2054                         line_end = 1;
2055                 } else {
2056                         if (ch_len == 1 && strchr(">:#", *cbuf))
2057                                 quoted = 1;
2058                         else if (ch_len != 1 || !isspace(*cbuf))
2059                                 quoted = 0;
2060
2061                         line_end = 0;
2062                 }
2063         }
2064         if (p_start < 0)
2065                 p_start = 0;
2066
2067         /* find paragraph end. */
2068         line_end = 0;
2069         for (p_end = cur_pos; p_end < text_len; p_end++) {
2070                 GET_STEXT(p_end);
2071                 if (ch_len == 1 && *cbuf == '\n') {
2072                         if (line_end) {
2073                                 p_end -= 1;
2074                                 break;
2075                         }
2076                         line_end = 1;
2077                 } else {
2078                         if (line_end && ch_len == 1 && strchr(">:#", *cbuf))
2079                                 goto compose_end; /* quoted part */
2080
2081                         line_end = 0;
2082                 }
2083         }
2084         if (p_end >= text_len)
2085                 p_end = text_len;
2086
2087         if (p_start >= p_end)
2088                 goto compose_end;
2089
2090         line_len = cur_len = 0;
2091         last_ch_len = 0;
2092         last_ch = '\0';
2093         line_pos = p_start;
2094         for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2095                 guint space = 0;
2096
2097                 GET_STEXT(cur_pos);
2098
2099                 if (ch_len < 0) {
2100                         cbuf[0] = '\0';
2101                         ch_len = 1;
2102                 }
2103
2104                 if (ch_len == 1 && isspace(*cbuf))
2105                         space = 1;
2106
2107                 if (ch_len == 1 && *cbuf == '\n') {
2108                         guint replace = 0;
2109                         if (last_ch_len == 1 && !isspace(last_ch)) {
2110                                 if (cur_pos + 1 < p_end) {
2111                                         GET_STEXT(cur_pos + 1);
2112                                         if (ch_len == 1 && !isspace(*cbuf))
2113                                                 replace = 1;
2114                                 }
2115                         }
2116                         gtk_stext_set_point(text, cur_pos + 1);
2117                         gtk_stext_backward_delete(text, 1);
2118                         if (replace) {
2119                                 gtk_stext_set_point(text, cur_pos);
2120                                 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2121                                 space = 1;
2122                         }
2123                         else {
2124                                 p_end--;
2125                                 cur_pos--;
2126                                 continue;
2127                         }
2128                 }
2129
2130                 last_ch_len = ch_len;
2131                 last_ch = *cbuf;
2132
2133                 if (space) {
2134                         line_pos = cur_pos + 1;
2135                         line_len = cur_len + ch_len;
2136                 }
2137
2138                 if (cur_len + ch_len > prefs_common.linewrap_len &&
2139                     line_len > 0) {
2140                         gint tlen = ch_len;
2141
2142                         GET_STEXT(line_pos - 1);
2143                         if (ch_len == 1 && isspace(*cbuf)) {
2144                                 gtk_stext_set_point(text, line_pos);
2145                                 gtk_stext_backward_delete(text, 1);
2146                                 p_end--;
2147                                 cur_pos--;
2148                                 line_pos--;
2149                                 cur_len--;
2150                                 line_len--;
2151                         }
2152                         ch_len = tlen;
2153
2154                         gtk_stext_set_point(text, line_pos);
2155                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2156                         p_end++;
2157                         cur_pos++;
2158                         line_pos++;
2159                         cur_len = cur_len - line_len + ch_len;
2160                         line_len = 0;
2161                         continue;
2162                 }
2163
2164                 if (ch_len > 1) {
2165                         line_pos = cur_pos + 1;
2166                         line_len = cur_len + ch_len;
2167                 }
2168                 cur_len += ch_len;
2169         }
2170
2171 compose_end:
2172         gtk_stext_thaw(text);
2173
2174 #undef GET_STEXT
2175 }
2176
2177 /* return indent length */
2178 static guint get_indent_length(GtkSText *text, guint start_pos,
2179                                guint text_len) {
2180         gint indent_len = 0;
2181         gint i, ch_len;
2182         gchar cbuf[MB_CUR_MAX];
2183
2184         for (i = start_pos; i < text_len; i++) {
2185                 if (text->use_wchar)
2186                         ch_len = wctomb
2187                                 (cbuf, (wchar_t)GTK_STEXT_INDEX(text, i));
2188                 else {
2189                         cbuf[0] = GTK_STEXT_INDEX(text, i);
2190                         ch_len = 1;
2191                 }
2192                 if (ch_len > 1)
2193                         break;
2194                 /* allow space, tab, > or | */
2195                 if (cbuf[0] != ' ' && cbuf[0] != '\t' &&
2196                     cbuf[0] != '>' && cbuf[0] != '|')
2197                         break;
2198                 indent_len++;
2199         }
2200
2201         return indent_len;
2202 }
2203
2204 /* insert quotation string when line was wrapped, we know these
2205    are single byte characters */
2206 static guint insert_quote(GtkSText *text, guint quote_len, guint indent_len,
2207                           guint prev_line_pos, guint text_len,
2208                           gchar *quote_fmt) {
2209         guint i, ins_len;
2210         gchar ch;
2211
2212         if (indent_len) {
2213                 for (i = 0; i < indent_len; i++) {
2214                         ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2215                         gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2216                 }
2217                 ins_len = indent_len;
2218         }
2219         else {
2220                 gtk_stext_insert(text, NULL, NULL, NULL, quote_fmt, quote_len);
2221                 ins_len = quote_len;
2222         }
2223
2224         return ins_len;
2225 }
2226
2227 /* compare gtkstext string at pos1 with string at pos2 for equality
2228    (max. len chars) - we treat characters as single byte */
2229 static gint gtkstext_strncmp(GtkSText *text, guint pos1, guint pos2, guint len,
2230                              guint tlen)
2231 {
2232         guint i = 0;
2233         gchar ch1, ch2;
2234
2235         for (; (i < len) && (pos1 + i < tlen) && (pos2 + i < tlen); i++) {
2236                 ch1 = GTK_STEXT_INDEX(text, pos1 + i);
2237                 ch2 = GTK_STEXT_INDEX(text, pos2 + i);
2238                 if (ch1 != ch2)
2239                         break;
2240         }
2241
2242         return i;
2243 }
2244
2245 static void compose_wrap_line_all(Compose *compose)
2246 {
2247         GtkSText *text = GTK_STEXT(compose->text);
2248         guint text_len;
2249         guint line_pos = 0, cur_pos = 0, prev_line_pos = 0;
2250         gint line_len = 0, cur_len = 0;
2251         gint ch_len;
2252         gint is_new_line = 1, do_delete = 0;
2253         guint quote_len = 0, indent_len = 0;
2254         guint linewrap_quote = prefs_common.linewrap_quote;
2255         guint linewrap_len = prefs_common.linewrap_len;
2256         gchar *quote_fmt = prefs_common.quotemark;
2257         gchar cbuf[MB_LEN_MAX];
2258
2259         gtk_stext_freeze(text);
2260
2261         /* make text buffer contiguous */
2262         gtk_stext_compact_buffer(text);
2263
2264         text_len = gtk_stext_get_length(text);
2265
2266         for (; cur_pos < text_len; cur_pos++) {
2267                 if (linewrap_quote && is_new_line) {
2268                         quote_len = gtkstext_str_strcmp(text, cur_pos,
2269                                                         text_len, quote_fmt);
2270                         is_new_line = 0;
2271                         if (quote_len) {
2272                                 indent_len = get_indent_length(text, cur_pos,
2273                                                                text_len);
2274                         }
2275                         else
2276                                 indent_len = 0;
2277                         prev_line_pos = cur_pos;
2278                 }
2279                 if (text->use_wchar)
2280                         ch_len = wctomb
2281                                 (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
2282                 else {
2283                         cbuf[0] = GTK_STEXT_INDEX(text, cur_pos);
2284                         ch_len = 1;
2285                 }
2286
2287                 /* fix line length for tabs */
2288                 if (ch_len == 1 && *cbuf == '\t') {
2289                         guint tab_width = text->default_tab_width;
2290                         guint tab_offset = line_len % tab_width;
2291
2292                         if (tab_offset) {
2293                                 line_len += tab_width - tab_offset - 1;
2294                                 cur_len = line_len;
2295                         }
2296                 }
2297
2298                 if (ch_len == 1 && *cbuf == '\n') {
2299                         gint clen;
2300                         guint ilen;
2301                         gchar cb[MB_CUR_MAX];
2302
2303                         /* if it's just quotation + newline skip it */
2304                         if (indent_len && (cur_pos + 1 < text_len)) {
2305                                 ilen =  gtkstext_strncmp(text,
2306                                                          cur_pos + 1,
2307                                                          prev_line_pos,
2308                                                          indent_len,
2309                                                          text_len);
2310                                 if (cur_pos + ilen < text_len) {
2311                                         if (text->use_wchar)
2312                                                 clen = wctomb
2313                                                         (cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos + ilen + 1));
2314                                         else {
2315                                                 cb[0] = GTK_STEXT_INDEX(text,
2316                                                             cur_pos + ilen + 1);
2317                                                 clen = 1;
2318                                         }
2319                                         if ((clen == 1) && (cb[0] == '\n'))
2320                                                 do_delete = 0;
2321                                 }
2322                         }
2323
2324                         /* should we delete to perform smart wrapping */
2325                         if (quote_len && line_len < linewrap_len && do_delete) {
2326                                 /* get rid of newline */
2327                                 gtk_stext_set_point(text, cur_pos);
2328                                 gtk_stext_forward_delete(text, 1);
2329
2330                                 /* if text starts with quote_fmt or with
2331                                    indent string, delete them */
2332                                 if (indent_len) {
2333                                         ilen =  gtkstext_strncmp(text, cur_pos,
2334                                                                  prev_line_pos,
2335                                                                  indent_len,
2336                                                                  text_len);
2337                                         if (ilen) {
2338                                                 gtk_stext_forward_delete(text,
2339                                                                          ilen);
2340                                                 text_len -= ilen;
2341                                         }
2342                                 }
2343                                 else if (quote_len) {
2344                                         if (gtkstext_str_strcmp(text, cur_pos,
2345                                                                 text_len,
2346                                                                 quote_fmt)) {
2347                                                 gtk_stext_forward_delete(text,
2348                                                                  quote_len);
2349                                                 text_len-=quote_len;
2350                                         }
2351                                 }
2352
2353                                 if (text->use_wchar)
2354                                         clen = wctomb
2355                                                 (cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
2356                                 else {
2357                                         cb[0] = GTK_STEXT_INDEX(text, cur_pos);
2358                                         clen = 1;
2359                                 }
2360                                 /* insert space if it's alphanumeric */
2361                                 if ((cur_pos != line_pos) &&
2362                                     ((clen > 1) || isalnum(cb[0]))) {
2363                                         gtk_stext_insert(text, NULL, NULL,
2364                                                          NULL, " ", 1);
2365                                         gtk_stext_compact_buffer(text);
2366                                         text_len++;
2367                                 }
2368
2369                                 /* and start over with current line */
2370                                 cur_pos = prev_line_pos - 1;
2371                                 line_pos = cur_pos;
2372                                 line_len = cur_len = 0;
2373                                 quote_len = 0;
2374                                 do_delete = 0;
2375                                 is_new_line = 1;
2376                                 continue;
2377                         }
2378
2379                         line_pos = cur_pos + 1;
2380                         line_len = cur_len = 0;
2381                         quote_len = 0;
2382                         do_delete = 0;
2383                         is_new_line = 1;
2384                         continue;
2385                 }
2386
2387                 if (ch_len < 0) {
2388                         cbuf[0] = '\0';
2389                         ch_len = 1;
2390                 }
2391
2392                 if (ch_len == 1 && isspace(*cbuf)) {
2393                         line_pos = cur_pos + 1;
2394                         line_len = cur_len + ch_len;
2395                 }
2396
2397                 if (cur_len + ch_len > linewrap_len) {
2398                         gint tlen;
2399
2400                         if (line_len == 0) {
2401                                 /* don't wrap URLs */
2402                                 if (is_url_string(text, line_pos, text_len))
2403                                         continue;
2404                                 line_len = cur_pos - line_pos;
2405                                 line_pos = cur_pos;
2406                         }
2407
2408                         if (text->use_wchar)
2409                                 tlen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
2410                         else {
2411                                 cbuf[0] = GTK_STEXT_INDEX(text, line_pos - 1);
2412                                 tlen = 1;
2413                         }
2414                         if (tlen == 1 && isspace(*cbuf)) {
2415                                 gtk_stext_set_point(text, line_pos);
2416                                 gtk_stext_backward_delete(text, 1);
2417                                 text_len--;
2418                                 cur_pos--;
2419                                 line_pos--;
2420                                 cur_len--;
2421                                 line_len--;
2422                         }
2423
2424                         gtk_stext_set_point(text, line_pos);
2425                         gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2426                         gtk_stext_compact_buffer(text);
2427                         text_len++;
2428                         cur_pos++;
2429                         line_pos++;
2430                         cur_len = cur_len - line_len + ch_len;
2431                         line_len = 0;
2432                         if (linewrap_quote && quote_len) {
2433                                 /* only if line is not already quoted */
2434                                 if (!gtkstext_str_strcmp(text, line_pos,
2435                                                          text_len, quote_fmt)) {
2436                                         guint i_len;
2437
2438                                         i_len = insert_quote(text, quote_len,
2439                                                              indent_len,
2440                                                              prev_line_pos,
2441                                                              text_len,
2442                                                              quote_fmt);
2443
2444                                         gtk_stext_compact_buffer(text);
2445                                         text_len += i_len;
2446                                         /* for loop above will increase it */
2447                                         cur_pos = line_pos - 1;
2448                                         cur_len = 0;
2449                                         line_len = 0;
2450                                         /* start over with current line */
2451                                         is_new_line = 1;
2452                                         do_delete = 1;
2453                                 }
2454                         }
2455                         continue;
2456                 }
2457
2458                 if (ch_len > 1) {
2459                         line_pos = cur_pos + 1;
2460                         line_len = cur_len + ch_len;
2461                 }
2462                 cur_len += ch_len;
2463         }
2464
2465         gtk_stext_thaw(text);
2466 }
2467
2468 static void compose_set_title(Compose *compose)
2469 {
2470         gchar *str;
2471         gchar *edited;
2472
2473         edited = compose->modified ? _(" [Edited]") : "";
2474         if (compose->account && compose->account->address)
2475                 str = g_strdup_printf(_("%s - Compose message%s"),
2476                                       compose->account->address, edited);
2477         else
2478                 str = g_strdup_printf(_("Compose message%s"), edited);
2479         gtk_window_set_title(GTK_WINDOW(compose->window), str);
2480         g_free(str);
2481 }
2482
2483 /**
2484  * compose_current_mail_account:
2485  * 
2486  * Find a current mail account (the currently selected account, or the
2487  * default account, if a news account is currently selected).  If a
2488  * mail account cannot be found, display an error message.
2489  * 
2490  * Return value: Mail account, or NULL if not found.
2491  **/
2492 static PrefsAccount *
2493 compose_current_mail_account(void)
2494 {
2495         PrefsAccount *ac;
2496
2497         if (cur_account && cur_account->protocol != A_NNTP)
2498                 ac = cur_account;
2499         else {
2500                 ac = account_get_default();
2501                 if (!ac || ac->protocol == A_NNTP) {
2502                         alertpanel_error(_("Account for sending mail is not specified.\n"
2503                                            "Please select a mail account before sending."));
2504                         return NULL;
2505                 }
2506         }
2507         return ac;
2508 }
2509
2510 gboolean compose_check_for_valid_recipient(Compose *compose) {
2511         gchar *recipient_headers[] = {"To:", "Newsgroups:", "Cc:", "Bcc:", NULL};
2512         gboolean recipient_found = FALSE;
2513         GSList *list;
2514         gchar **strptr;
2515
2516         for(list = compose->header_list; list; list = list->next) {
2517                 gchar *header;
2518                 gchar *entry;
2519                 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((compose_headerentry *)list->data)->combo)->entry));
2520                 entry = gtk_editable_get_chars(GTK_EDITABLE(((compose_headerentry *)list->data)->entry), 0, -1);
2521                 g_strstrip(entry);
2522                 if(entry[0] != '\0') {
2523                         for(strptr = recipient_headers; *strptr != NULL; strptr++) {
2524                                 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2525                                         recipient_found = TRUE;
2526                                 }
2527                         }
2528                 }
2529                 g_free(entry);
2530         }
2531         return recipient_found;
2532 }
2533
2534 gint compose_send(Compose *compose)
2535 {
2536         gchar tmp[MAXPATHLEN + 1];
2537         gint ok = 0;
2538         static gboolean lock = FALSE;
2539
2540         if (lock) return 1;
2541
2542         g_return_val_if_fail(compose->account != NULL, -1);
2543         g_return_val_if_fail(compose->orig_account != NULL, -1);
2544
2545         lock = TRUE;
2546
2547         if(!compose_check_for_valid_recipient(compose)) {
2548                 alertpanel_error(_("Recipient is not specified."));
2549                 lock = FALSE;
2550                 return 1;
2551         }
2552
2553         /* write to temporary file */
2554         g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%d",
2555                    get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
2556
2557         if (prefs_common.linewrap_at_send)
2558                 compose_wrap_line_all(compose);
2559
2560         if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2561                 lock = FALSE;
2562                 return -1;
2563         }
2564
2565         if (!compose->to_list && !compose->newsgroup_list) {
2566                 g_warning(_("can't get recipient list."));
2567                 unlink(tmp);
2568                 lock = FALSE;
2569                 return -1;
2570         }
2571
2572         if (compose->to_list) {
2573                 PrefsAccount *ac;
2574
2575 #if 0 /* NEW COMPOSE GUI */
2576                 if (compose->account->protocol != A_NNTP)
2577                         ac = compose->account;
2578                 else if (compose->orig_account->protocol != A_NNTP)
2579                         ac = compose->orig_account;
2580                 else if (cur_account && cur_account->protocol != A_NNTP)
2581                         ac = cur_account;
2582                 else {
2583                         ac = compose_current_mail_account();
2584                         if (!ac) {
2585                                 unlink(tmp);
2586                                 lock = FALSE;
2587                                 return -1;
2588                         }
2589                 }
2590 #endif
2591                 ac = compose->account;
2592
2593                 ok = send_message(tmp, ac, compose->to_list);
2594                 statusbar_pop_all();
2595         }
2596
2597         if (ok == 0 && compose->newsgroup_list) {
2598                 Folder *folder;
2599
2600                 if (compose->account->protocol == A_NNTP)
2601                         folder = FOLDER(compose->account->folder);
2602                 else
2603                         folder = FOLDER(compose->orig_account->folder);
2604
2605                 ok = news_post(folder, tmp);
2606                 if (ok < 0) {
2607                         alertpanel_error(_("Error occurred while posting the message to %s ."),
2608                                          compose->account->nntp_server);
2609                         unlink(tmp);
2610                         lock = FALSE;
2611                         return -1;
2612                 }
2613         }
2614
2615         /* queue message if failed to send */
2616         if (ok < 0) {
2617                 if (prefs_common.queue_msg) {
2618                         AlertValue val;
2619
2620                         val = alertpanel
2621                                 (_("Queueing"),
2622                                  _("Error occurred while sending the message.\n"
2623                                    "Put this message into queue folder?"),
2624                                  _("OK"), _("Cancel"), NULL);
2625                         if (G_ALERTDEFAULT == val) {
2626                                 ok = compose_queue(compose, tmp);
2627                                 if (ok < 0)
2628                                         alertpanel_error(_("Can't queue the message."));
2629                         }
2630                 } else
2631                         alertpanel_error(_("Error occurred while sending the message."));
2632         } else {
2633                 if (compose->mode == COMPOSE_REEDIT) {
2634                         compose_remove_reedit_target(compose);
2635                         if (compose->targetinfo)
2636                                 folderview_update_item
2637                                         (compose->targetinfo->folder, TRUE);
2638                 }
2639         }
2640
2641         /* save message to outbox */
2642         if (ok == 0 && prefs_common.savemsg) {
2643                 if (compose_save_to_outbox(compose, tmp) < 0)
2644                         alertpanel_error
2645                                 (_("Can't save the message to outbox."));
2646         }
2647
2648         unlink(tmp);
2649         lock = FALSE;
2650         return ok;
2651 }
2652
2653 static gboolean compose_use_attach(Compose *compose) {
2654     return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2655 }
2656
2657 static gint compose_write_to_file(Compose *compose, const gchar *file,
2658                                   gboolean is_draft)
2659 {
2660         FILE *fp;
2661         size_t len;
2662         gchar *chars;
2663         gchar *buf;
2664         const gchar *out_codeset;
2665         EncodingType encoding;
2666
2667         if ((fp = fopen(file, "w")) == NULL) {
2668                 FILE_OP_ERROR(file, "fopen");
2669                 return -1;
2670         }
2671
2672         /* chmod for security */
2673         if (change_file_mode_rw(fp, file) < 0) {
2674                 FILE_OP_ERROR(file, "chmod");
2675                 g_warning(_("can't change file mode\n"));
2676         }
2677
2678         /* get all composed text */
2679         chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2680         len = strlen(chars);
2681         if (is_ascii_str(chars)) {
2682                 buf = g_strdup(chars);
2683                 out_codeset = CS_US_ASCII;
2684                 encoding = ENC_7BIT;
2685         } else {
2686                 const gchar *src_codeset;
2687
2688                 out_codeset = conv_get_outgoing_charset_str();
2689                 if (!strcasecmp(out_codeset, CS_US_ASCII))
2690                         out_codeset = CS_ISO_8859_1;
2691                 encoding = procmime_get_encoding_for_charset(out_codeset);
2692
2693                 src_codeset = conv_get_current_charset_str();
2694                 /* if current encoding is US-ASCII, set it the same as
2695                    outgoing one to prevent code conversion failure */
2696                 if (!strcasecmp(src_codeset, CS_US_ASCII))
2697                         src_codeset = out_codeset;
2698
2699                 debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
2700                             src_codeset, out_codeset, procmime_get_encoding_str(encoding));
2701
2702                 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
2703                 if (!buf) {
2704                         g_free(chars);
2705                         fclose(fp);
2706                         unlink(file);
2707                         alertpanel_error(_("Can't convert the codeset of the message."));
2708                         return -1;
2709                 }
2710         }
2711         g_free(chars);
2712
2713         /* write headers */
2714         if (compose_write_headers
2715                 (compose, fp, out_codeset, encoding, is_draft) < 0) {
2716                 g_warning(_("can't write headers\n"));
2717                 fclose(fp);
2718                 /* unlink(file); */
2719                 g_free(buf);
2720                 return -1;
2721         }
2722
2723         if (compose_use_attach(compose)) {
2724 #if USE_GPGME
2725             /* This prolog message is ignored by mime software and
2726              * because it would make our signing/encryption task
2727              * tougher, we don't emit it in that case */
2728             if (!compose->use_signing && !compose->use_encryption)
2729 #endif
2730                 fputs("This is a multi-part message in MIME format.\n", fp);
2731
2732                 fprintf(fp, "\n--%s\n", compose->boundary);
2733                 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
2734                         out_codeset);
2735                 fprintf(fp, "Content-Transfer-Encoding: %s\n",
2736                         procmime_get_encoding_str(encoding));
2737                 fputc('\n', fp);
2738         }
2739
2740         /* write body */
2741         len = strlen(buf);
2742         if (encoding == ENC_BASE64) {
2743                 gchar outbuf[B64_BUFFSIZE];
2744                 gint i, l;
2745
2746                 for (i = 0; i < len; i += B64_LINE_SIZE) {
2747                         l = MIN(B64_LINE_SIZE, len - i);
2748                         to64frombits(outbuf, buf + i, l);
2749                         fputs(outbuf, fp);
2750                         fputc('\n', fp);
2751                 }
2752         } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
2753                 FILE_OP_ERROR(file, "fwrite");
2754                 fclose(fp);
2755                 unlink(file);
2756                 g_free(buf);
2757                 return -1;
2758         }
2759         g_free(buf);
2760
2761         if (compose_use_attach(compose))
2762                 compose_write_attach(compose, fp);
2763
2764         if (fclose(fp) == EOF) {
2765                 FILE_OP_ERROR(file, "fclose");
2766                 unlink(file);
2767                 return -1;
2768         }
2769
2770 #if USE_GPGME
2771         if (compose->use_signing) {
2772                 if (rfc2015_sign(file, compose->account) < 0) {
2773                         unlink(file);
2774                         return -1;
2775                 }
2776         }
2777         if (compose->use_encryption) {
2778                 if (rfc2015_encrypt(file, compose->to_list) < 0) {
2779                         unlink(file);
2780                         return -1;
2781                 }
2782         }
2783 #endif /* USE_GPGME */
2784
2785         return 0;
2786 }
2787
2788 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
2789 {
2790         FILE *fp;
2791         size_t len;
2792         gchar *chars;
2793
2794         if ((fp = fopen(file, "w")) == NULL) {
2795                 FILE_OP_ERROR(file, "fopen");
2796                 return -1;
2797         }
2798
2799         /* chmod for security */
2800         if (change_file_mode_rw(fp, file) < 0) {
2801                 FILE_OP_ERROR(file, "chmod");
2802                 g_warning(_("can't change file mode\n"));
2803         }
2804
2805         chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2806
2807         /* write body */
2808         len = strlen(chars);
2809         if (fwrite(chars, sizeof(gchar), len, fp) != len) {
2810                 FILE_OP_ERROR(file, "fwrite");
2811                 g_free(chars);
2812                 fclose(fp);
2813                 unlink(file);
2814                 return -1;
2815         }
2816
2817         g_free(chars);
2818
2819         if (fclose(fp) == EOF) {
2820                 FILE_OP_ERROR(file, "fclose");
2821                 unlink(file);
2822                 return -1;
2823         }
2824         return 0;
2825 }
2826
2827 static gint compose_save_to_outbox(Compose *compose, const gchar *file)
2828 {
2829         FolderItem *outbox;
2830         gchar *path;
2831         gint num;
2832         FILE *fp;
2833
2834         debug_print(_("saving sent message...\n"));
2835
2836         outbox = folder_get_default_outbox();
2837         path = folder_item_get_path(outbox);
2838         if (!is_dir_exist(path))
2839                 make_dir_hier(path);
2840
2841         folder_item_scan(outbox);
2842         if ((num = folder_item_add_msg(outbox, file, FALSE)) < 0) {
2843                 g_free(path);
2844                 g_warning(_("can't save message\n"));
2845                 return -1;
2846         }
2847
2848         if ((fp = procmsg_open_mark_file(path, TRUE)) == NULL)
2849                 g_warning(_("can't open mark file\n"));
2850         else {
2851                 MsgInfo newmsginfo;
2852
2853                 newmsginfo.msgnum = num;
2854                 newmsginfo.flags.perm_flags = 0;
2855                 newmsginfo.flags.tmp_flags = 0;
2856                 procmsg_write_flags(&newmsginfo, fp);
2857                 fclose(fp);
2858         }
2859         g_free(path);
2860
2861         return 0;
2862 }
2863
2864 static gint compose_remove_reedit_target(Compose *compose)
2865 {
2866         FolderItem *item;
2867         MsgInfo *msginfo = compose->targetinfo;
2868
2869         g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
2870         if (!msginfo) return -1;
2871
2872         item = msginfo->folder;
2873         g_return_val_if_fail(item != NULL, -1);
2874
2875         folder_item_scan(item);
2876         if (procmsg_msg_exist(msginfo) &&
2877             (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
2878                 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
2879                         g_warning(_("can't remove the old message\n"));
2880                         return -1;
2881                 }
2882         }
2883
2884         return 0;
2885 }
2886
2887 static gint compose_queue(Compose *compose, const gchar *file)
2888 {
2889         FolderItem *queue;
2890         gchar *tmp, *queue_path;
2891         FILE *fp, *src_fp;
2892         GSList *cur;
2893         gchar buf[BUFFSIZE];
2894         gint num;
2895
2896         debug_print(_("queueing message...\n"));
2897         g_return_val_if_fail(compose->to_list != NULL, -1);
2898         g_return_val_if_fail(compose->account != NULL, -1);
2899
2900         tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
2901                               G_DIR_SEPARATOR, (gint)compose);
2902         if ((fp = fopen(tmp, "w")) == NULL) {
2903                 FILE_OP_ERROR(tmp, "fopen");
2904                 g_free(tmp);
2905                 return -1;
2906         }
2907         if ((src_fp = fopen(file, "r")) == NULL) {
2908                 FILE_OP_ERROR(file, "fopen");
2909                 fclose(fp);
2910                 unlink(tmp);
2911                 g_free(tmp);
2912                 return -1;
2913         }
2914         if (change_file_mode_rw(fp, tmp) < 0) {
2915                 FILE_OP_ERROR(tmp, "chmod");
2916                 g_warning(_("can't change file mode\n"));
2917         }
2918
2919         /* queueing variables */
2920         fprintf(fp, "AF:\n");
2921         fprintf(fp, "NF:0\n");
2922         fprintf(fp, "PS:10\n");
2923         fprintf(fp, "SRH:1\n");
2924         fprintf(fp, "SFN:\n");
2925         fprintf(fp, "DSR:\n");
2926         if (compose->msgid)
2927                 fprintf(fp, "MID:<%s>\n", compose->msgid);
2928         else
2929                 fprintf(fp, "MID:\n");
2930         fprintf(fp, "CFG:\n");
2931         fprintf(fp, "PT:0\n");
2932         fprintf(fp, "S:%s\n", compose->account->address);
2933         fprintf(fp, "RQ:\n");
2934         if (compose->account->smtp_server)
2935                 fprintf(fp, "SSV:%s\n", compose->account->smtp_server);
2936         else
2937                 fprintf(fp, "SSV:\n");
2938         if (compose->account->nntp_server)
2939                 fprintf(fp, "NSV:%s\n", compose->account->nntp_server);
2940         else
2941                 fprintf(fp, "NSV:\n");
2942         fprintf(fp, "SSH:\n");
2943         fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data);
2944         for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
2945                 fprintf(fp, ",<%s>", (gchar *)cur->data);
2946         fprintf(fp, "\n");
2947         /* Sylpheed account ID */
2948         fprintf(fp, "AID:%d\n", compose->account->account_id);
2949         fprintf(fp, "\n");
2950
2951         while (fgets(buf, sizeof(buf), src_fp) != NULL) {
2952                 if (fputs(buf, fp) == EOF) {
2953                         FILE_OP_ERROR(tmp, "fputs");
2954                         fclose(fp);
2955                         fclose(src_fp);
2956                         unlink(tmp);
2957                         g_free(tmp);
2958                         return -1;
2959                 }
2960         }
2961
2962         fclose(src_fp);
2963         if (fclose(fp) == EOF) {
2964                 FILE_OP_ERROR(tmp, "fclose");
2965                 unlink(tmp);
2966                 g_free(tmp);
2967                 return -1;
2968         }
2969
2970         queue = folder_get_default_queue();
2971
2972         folder_item_scan(queue);
2973         queue_path = folder_item_get_path(queue);
2974         if (!is_dir_exist(queue_path))
2975                 make_dir_hier(queue_path);
2976         if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
2977                 g_warning(_("can't queue the message\n"));
2978                 unlink(tmp);
2979                 g_free(tmp);
2980                 g_free(queue_path);
2981                 return -1;
2982         }
2983         g_free(tmp);
2984
2985         if (compose->mode == COMPOSE_REEDIT) {
2986                 compose_remove_reedit_target(compose);
2987                 if (compose->targetinfo &&
2988                     compose->targetinfo->folder != queue)
2989                         folderview_update_item
2990                                 (compose->targetinfo->folder, TRUE);
2991         }
2992
2993         if ((fp = procmsg_open_mark_file(queue_path, TRUE)) == NULL)
2994                 g_warning(_("can't open mark file\n"));
2995         else {
2996                 MsgInfo newmsginfo;
2997
2998                 newmsginfo.msgnum = num;
2999                 newmsginfo.flags.perm_flags = 0;
3000                 newmsginfo.flags.tmp_flags = 0;
3001                 procmsg_write_flags(&newmsginfo, fp);
3002                 fclose(fp);
3003         }
3004         g_free(queue_path);
3005
3006         folder_item_scan(queue);
3007         folderview_update_item(queue, TRUE);
3008
3009         return 0;
3010 }
3011
3012 static void compose_write_attach(Compose *compose, FILE *fp)
3013 {
3014         AttachInfo *ainfo;
3015         GtkCList *clist = GTK_CLIST(compose->attach_clist);
3016         gint row;
3017         FILE *attach_fp;
3018         gchar filename[BUFFSIZE];
3019         gint len;
3020
3021         for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
3022              row++) {
3023                 if ((attach_fp = fopen(ainfo->file, "r")) == NULL) {
3024                         g_warning(_("Can't open file %s\n"), ainfo->file);
3025                         continue;
3026                 }
3027
3028                 fprintf(fp, "\n--%s\n", compose->boundary);
3029
3030                 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
3031                         fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
3032                         fprintf(fp, "Content-Disposition: inline\n");
3033                 } else {
3034                         conv_encode_header(filename, sizeof(filename),
3035                                            ainfo->name, 12);
3036                         fprintf(fp, "Content-Type: %s;\n"
3037                                     " name=\"%s\"\n",
3038                                 ainfo->content_type, filename);
3039                         fprintf(fp, "Content-Disposition: attachment;\n"
3040                                     " filename=\"%s\"\n", filename);
3041                 }
3042
3043                 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
3044                         procmime_get_encoding_str(ainfo->encoding));
3045
3046                 if (ainfo->encoding == ENC_7BIT) {
3047                         gchar buf[BUFFSIZE];
3048
3049                         while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
3050                                 len = strlen(buf);
3051                                 if (len > 1 && buf[len - 1] == '\n' &&
3052                                     buf[len - 2] == '\r') {
3053                                         buf[len - 2] = '\n';
3054                                         buf[len - 1] = '\0';
3055                                 }
3056                                 fputs(buf, fp);
3057                         }
3058                 } else {
3059                         gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3060
3061                         while ((len = fread(inbuf, sizeof(gchar),
3062                                             B64_LINE_SIZE, attach_fp))
3063                                == B64_LINE_SIZE) {
3064                                 to64frombits(outbuf, inbuf, B64_LINE_SIZE);
3065                                 fputs(outbuf, fp);
3066                                 fputc('\n', fp);
3067                         }
3068                         if (len > 0 && feof(attach_fp)) {
3069                                 to64frombits(outbuf, inbuf, len);
3070                                 fputs(outbuf, fp);
3071                                 fputc('\n', fp);
3072                         }
3073                 }
3074
3075                 fclose(attach_fp);
3076         }
3077
3078         fprintf(fp, "\n--%s--\n", compose->boundary);
3079 }
3080
3081 #define IS_IN_CUSTOM_HEADER(header) \
3082         (compose->account->add_customhdr && \
3083          custom_header_find(compose->account->customhdr_list, header) != NULL)
3084
3085 static gint compose_write_headers_from_headerlist(Compose *compose, 
3086                                                   FILE *fp, 
3087                                                   gchar *header,
3088                                                   GSList *(*list_append_func) (GSList *list, const gchar *str),
3089                                                   GSList **dest_list)
3090 {
3091         gchar buf[BUFFSIZE];
3092         gchar *str, *header_w_colon, *trans_hdr;
3093         gboolean first_address;
3094         GSList *list;
3095         compose_headerentry *headerentry;
3096
3097         if (IS_IN_CUSTOM_HEADER(header)) {
3098                 return 0;
3099         }
3100
3101         debug_print(_("Writing %s-header\n"), header);
3102
3103         header_w_colon = g_strconcat(header, ":", NULL);
3104         trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
3105
3106         first_address = TRUE;
3107         for(list = compose->header_list; list; list = list->next) {
3108                 headerentry = ((compose_headerentry *)list->data);
3109                 if(!strcmp(trans_hdr, gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)))) {
3110                         str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
3111                         Xstrdup_a(str, str, return -1);
3112                         g_strstrip(str);
3113                         if(str[0] != '\0') {
3114                                 if(list_append_func)
3115                                         *dest_list = list_append_func(*dest_list, str);
3116                                 compose_convert_header
3117                                         (buf, sizeof(buf), str,
3118                                         strlen(header) + 2);
3119                                 if(first_address) {
3120                                         fprintf(fp, "%s: ", header);
3121                                         first_address = FALSE;
3122                                 } else {
3123                                         fprintf(fp, ", ");
3124                                 }
3125                                 fprintf(fp, "%s", buf);
3126                         }
3127                 }
3128         }
3129         if(!first_address) {
3130                 fprintf(fp, "\n");
3131         }
3132
3133         g_free(header_w_colon);
3134
3135         return(0);
3136 }
3137
3138 static gint compose_write_headers(Compose *compose, FILE *fp,
3139                                   const gchar *charset, EncodingType encoding,
3140                                   gboolean is_draft)
3141 {
3142         gchar buf[BUFFSIZE];
3143         gchar *str;
3144         /* struct utsname utsbuf; */
3145
3146         g_return_val_if_fail(fp != NULL, -1);
3147         g_return_val_if_fail(charset != NULL, -1);
3148         g_return_val_if_fail(compose->account != NULL, -1);
3149         g_return_val_if_fail(compose->account->address != NULL, -1);
3150
3151         /* Date */
3152         if (compose->account->add_date) {
3153                 get_rfc822_date(buf, sizeof(buf));
3154                 fprintf(fp, "Date: %s\n", buf);
3155         }
3156
3157         /* From */
3158         if (!IS_IN_CUSTOM_HEADER("From")) {
3159                 if (compose->account->name && *compose->account->name) {
3160                         compose_convert_header
3161                                 (buf, sizeof(buf), compose->account->name,
3162                                  strlen("From: "));
3163                         fprintf(fp, "From: %s <%s>\n",
3164                                 buf, compose->account->address);
3165                 } else
3166                         fprintf(fp, "From: %s\n", compose->account->address);
3167         }
3168         
3169         slist_free_strings(compose->to_list);
3170         g_slist_free(compose->to_list);
3171         compose->to_list = NULL;
3172
3173         /* To */
3174         compose_write_headers_from_headerlist(compose, fp, "To", address_list_append, &compose->to_list);
3175 #if 0 /* NEW COMPOSE GUI */
3176         if (compose->use_to) {
3177                 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
3178                 if (*str != '\0') {
3179                         Xstrdup_a(str, str, return -1);
3180                         g_strstrip(str);
3181                         if (*str != '\0') {
3182                                 compose->to_list = address_list_append
3183                                         (compose->to_list, str);
3184                                 if (!IS_IN_CUSTOM_HEADER("To")) {
3185                                         compose_convert_header
3186                                                 (buf, sizeof(buf), str,
3187                                                  strlen("To: "));
3188                                         fprintf(fp, "To: %s\n", buf);
3189                                 }
3190                         }
3191                 }
3192         }
3193 #endif
3194         slist_free_strings(compose->newsgroup_list);
3195         g_slist_free(compose->newsgroup_list);
3196         compose->newsgroup_list = NULL;
3197
3198         /* Newsgroups */
3199         compose_write_headers_from_headerlist(compose, fp, "Newsgroups", newsgroup_list_append, &compose->newsgroup_list);
3200 #if 0 /* NEW COMPOSE GUI */
3201         str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
3202         if (*str != '\0') {
3203                 Xstrdup_a(str, str, return -1);
3204                 g_strstrip(str);
3205                 remove_space(str);
3206                 if (*str != '\0') {
3207                         compose->newsgroup_list =
3208                                 newsgroup_list_append(compose->newsgroup_list,
3209                                                       str);
3210                         if (!IS_IN_CUSTOM_HEADER("Newsgroups")) {
3211                                 compose_convert_header(buf, sizeof(buf), str,
3212                                                        strlen("Newsgroups: "));
3213                                 fprintf(fp, "Newsgroups: %s\n", buf);
3214                         }
3215                 }
3216         }
3217 #endif
3218         /* Cc */
3219         compose_write_headers_from_headerlist(compose, fp, "Cc", address_list_append, &compose->to_list);
3220 #if 0 /* NEW COMPOSE GUI */
3221         if (compose->use_cc) {
3222                 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
3223                 if (*str != '\0') {
3224                         Xstrdup_a(str, str, return -1);
3225                         g_strstrip(str);
3226                         if (*str != '\0') {
3227                                 compose->to_list = address_list_append
3228                                         (compose->to_list, str);
3229                                 if (!IS_IN_CUSTOM_HEADER("Cc")) {
3230                                         compose_convert_header
3231                                                 (buf, sizeof(buf), str,
3232                                                  strlen("Cc: "));
3233                                         fprintf(fp, "Cc: %s\n", buf);
3234                                 }
3235                         }
3236                 }
3237         }
3238 #endif
3239         /* Bcc */
3240         compose_write_headers_from_headerlist(compose, fp, "Bcc", address_list_append, &compose->to_list);
3241 #if 0 /* NEW COMPOSE GUI */
3242         if (compose->use_bcc) {
3243                 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
3244                 if (*str != '\0') {
3245                         Xstrdup_a(str, str, return -1);
3246                         g_strstrip(str);
3247                         if (*str != '\0') {
3248                                 compose->to_list = address_list_append
3249                                         (compose->to_list, str);
3250                                 compose_convert_header(buf, sizeof(buf), str,
3251                                                        strlen("Bcc: "));
3252                                 fprintf(fp, "Bcc: %s\n", buf);
3253                         }
3254                 }
3255         }
3256 #endif
3257         if (!is_draft && !compose->to_list && !compose->newsgroup_list)
3258                 return -1;
3259
3260         /* Subject */
3261         str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3262         if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
3263                 Xstrdup_a(str, str, return -1);
3264                 g_strstrip(str);
3265                 if (*str != '\0') {
3266                         compose_convert_header(buf, sizeof(buf), str,
3267                                                strlen("Subject: "));
3268                         fprintf(fp, "Subject: %s\n", buf);
3269                 }
3270         }
3271
3272         /* Message-ID */
3273         if (compose->account->gen_msgid) {
3274                 compose_generate_msgid(compose, buf, sizeof(buf));
3275                 fprintf(fp, "Message-Id: <%s>\n", buf);
3276                 compose->msgid = g_strdup(buf);
3277         }
3278
3279         /* In-Reply-To */
3280         if (compose->inreplyto && compose->to_list)
3281                 fprintf(fp, "In-Reply-To: <%s>\n", compose->inreplyto);
3282
3283         /* References */
3284         if (compose->references)
3285                 fprintf(fp, "References: %s\n", compose->references);
3286
3287         /* Followup-To */
3288         compose_write_headers_from_headerlist(compose, fp, "Followup-To", NULL, NULL);
3289 #if 0 /* NEW COMPOSE GUI */
3290         if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
3291                 str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
3292                 if (*str != '\0') {
3293                         Xstrdup_a(str, str, return -1);
3294                         g_strstrip(str);
3295                         remove_space(str);
3296                         if (*str != '\0') {
3297                                 compose_convert_header(buf, sizeof(buf), str,
3298                                                        strlen("Followup-To: "));
3299                                 fprintf(fp, "Followup-To: %s\n", buf);
3300                         }
3301                 }
3302         }
3303 #endif
3304         /* Reply-To */
3305         compose_write_headers_from_headerlist(compose, fp, "Reply-To", NULL, NULL);
3306 #if 0 /* NEW COMPOSE GUI */
3307         if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
3308                 str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
3309                 if (*str != '\0') {
3310                         Xstrdup_a(str, str, return -1);
3311                         g_strstrip(str);
3312                         if (*str != '\0') {
3313                                 compose_convert_header(buf, sizeof(buf), str,
3314                                                        strlen("Reply-To: "));
3315                                 fprintf(fp, "Reply-To: %s\n", buf);
3316                         }
3317                 }
3318         }
3319 #endif
3320         /* Organization */
3321         if (compose->account->organization &&
3322             !IS_IN_CUSTOM_HEADER("Organization")) {
3323                 compose_convert_header(buf, sizeof(buf),
3324                                        compose->account->organization,
3325                                        strlen("Organization: "));
3326                 fprintf(fp, "Organization: %s\n", buf);
3327         }
3328
3329         /* Program version and system info */
3330         /* uname(&utsbuf); */
3331         if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
3332                 fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
3333                         prog_version,
3334                         gtk_major_version, gtk_minor_version, gtk_micro_version,
3335                         HOST_ALIAS);
3336                         /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3337         }
3338         if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
3339                 fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
3340                         prog_version,
3341                         gtk_major_version, gtk_minor_version, gtk_micro_version,
3342                         HOST_ALIAS);
3343                         /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3344         }
3345
3346         /* custom headers */
3347         if (compose->account->add_customhdr) {
3348                 GSList *cur;
3349
3350                 for (cur = compose->account->customhdr_list; cur != NULL;
3351                      cur = cur->next) {
3352                         CustomHeader *chdr = (CustomHeader *)cur->data;
3353
3354                         if (strcasecmp(chdr->name, "Date")                      != 0 &&
3355                             strcasecmp(chdr->name, "From")                      != 0 &&
3356                             strcasecmp(chdr->name, "To")                        != 0 &&
3357                             strcasecmp(chdr->name, "Sender")                    != 0 &&
3358                             strcasecmp(chdr->name, "Message-Id")                != 0 &&
3359                             strcasecmp(chdr->name, "In-Reply-To")               != 0 &&
3360                             strcasecmp(chdr->name, "References")                != 0 &&
3361                             strcasecmp(chdr->name, "Mime-Version")              != 0 &&
3362                             strcasecmp(chdr->name, "Content-Type")              != 0 &&
3363                             strcasecmp(chdr->name, "Content-Transfer-Encoding") != 0)
3364                                 compose_convert_header
3365                                         (buf, sizeof(buf),
3366                                          chdr->value ? chdr->value : "",
3367                                          strlen(chdr->name) + 2);
3368                         fprintf(fp, "%s: %s\n", chdr->name, buf);
3369                 }
3370         }
3371
3372         /* MIME */
3373         fprintf(fp, "Mime-Version: 1.0\n");
3374         if (compose_use_attach(compose)) {
3375                 get_rfc822_date(buf, sizeof(buf));
3376                 subst_char(buf, ' ', '_');
3377                 subst_char(buf, ',', '_');
3378                 compose->boundary = g_strdup_printf("Multipart_%s_%08x",
3379                                                     buf, (guint)compose);
3380                 fprintf(fp,
3381                         "Content-Type: multipart/mixed;\n"
3382                         " boundary=\"%s\"\n", compose->boundary);
3383         } else {
3384                 fprintf(fp, "Content-Type: text/plain; charset=%s\n", charset);
3385                 fprintf(fp, "Content-Transfer-Encoding: %s\n",
3386                         procmime_get_encoding_str(encoding));
3387         }
3388
3389         /* Request Return Receipt */
3390         if (!IS_IN_CUSTOM_HEADER("Disposition-Notification-To")) {
3391                 if (compose->return_receipt) {
3392                         if (compose->account->name
3393                             && *compose->account->name) {
3394                                 compose_convert_header(buf, sizeof(buf), compose->account->name, strlen("Disposition-Notification-To: "));
3395                                 fprintf(fp, "Disposition-Notification-To: %s <%s>\n", buf, compose->account->address);
3396                         } else
3397                                 fprintf(fp, "Disposition-Notification-To: %s\n", compose->account->address);
3398                 }
3399         }
3400
3401         /* separator between header and body */
3402         fputs("\n", fp);
3403
3404         return 0;
3405 }
3406
3407 #undef IS_IN_CUSTOM_HEADER
3408
3409 static void compose_convert_header(gchar *dest, gint len, gchar *src,
3410                                    gint header_len)
3411 {
3412         g_return_if_fail(src != NULL);
3413         g_return_if_fail(dest != NULL);
3414
3415         if (len < 1) return;
3416
3417         remove_return(src);
3418
3419         if (is_ascii_str(src)) {
3420                 strncpy2(dest, src, len);
3421                 dest[len - 1] = '\0';
3422                 return;
3423         } else
3424                 conv_encode_header(dest, len, src, header_len);
3425 }
3426
3427 static void compose_generate_msgid(Compose *compose, gchar *buf, gint len)
3428 {
3429         struct tm *lt;
3430         time_t t;
3431         gchar *addr;
3432
3433         t = time(NULL);
3434         lt = localtime(&t);
3435
3436         if (compose->account && compose->account->address &&
3437             *compose->account->address) {
3438                 if (strchr(compose->account->address, '@'))
3439                         addr = g_strdup(compose->account->address);
3440                 else
3441                         addr = g_strconcat(compose->account->address, "@",
3442                                            get_domain_name(), NULL);
3443         } else
3444                 addr = g_strconcat(g_get_user_name(), "@", get_domain_name(),
3445                                    NULL);
3446
3447         g_snprintf(buf, len, "%04d%02d%02d%02d%02d%02d.%08x.%s",
3448                    lt->tm_year + 1900, lt->tm_mon + 1,
3449                    lt->tm_mday, lt->tm_hour,
3450                    lt->tm_min, lt->tm_sec,
3451                    (guint)random(), addr);
3452
3453         debug_print(_("generated Message-ID: %s\n"), buf);
3454
3455         g_free(addr);
3456 }
3457
3458
3459 static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
3460                                     GtkWidget **entry, gint *count,
3461                                     const gchar *label_str,
3462                                     gboolean is_addr_entry)
3463 {
3464         GtkWidget *label;
3465
3466         if (GTK_TABLE(table)->nrows < (*count) + 1)
3467                 gtk_table_resize(GTK_TABLE(table), (*count) + 1, 2);
3468
3469         *hbox = gtk_hbox_new(FALSE, 0);
3470         label = gtk_label_new
3471                 (prefs_common.trans_hdr ? gettext(label_str) : label_str);
3472         gtk_box_pack_end(GTK_BOX(*hbox), label, FALSE, FALSE, 0);
3473         gtk_table_attach(GTK_TABLE(table), *hbox, 0, 1, *count, (*count) + 1,
3474                          GTK_FILL, 0, 2, 0);
3475         *entry = gtk_entry_new();
3476         gtk_table_attach
3477                 (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1, GTK_FILL | GTK_EXPAND, GTK_SHRINK, 0, 0);
3478 #if 0 /* NEW COMPOSE GUI */
3479         if (GTK_TABLE(table)->nrows > (*count) + 1)
3480                 gtk_table_set_row_spacing(GTK_TABLE(table), *count, 4);
3481 #endif
3482
3483         if (is_addr_entry)
3484                 address_completion_register_entry(GTK_ENTRY(*entry));
3485
3486         (*count)++;
3487 }
3488
3489 static void compose_create_header_entry(Compose *compose) {
3490         gchar *headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
3491
3492         GtkWidget *combo;
3493         GtkWidget *entry;
3494         GList *combo_list = NULL;
3495         gchar **string, *header;
3496         compose_headerentry *headerentry = g_new0(compose_headerentry, 1);
3497
3498         /* Combo box */
3499         combo = gtk_combo_new();
3500         string = headers; 
3501         while(*string != NULL) {
3502             combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
3503             string++;
3504         }
3505         gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
3506         g_list_free(combo_list);
3507         gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), FALSE);
3508         gtk_widget_show(combo);
3509         gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
3510         if(compose->header_last) {      
3511                 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
3512         } else {
3513                 switch(compose->account->protocol) {
3514                         case A_NNTP:
3515                                 header = _("Newsgroups:");
3516                                 break;
3517                         default:
3518                                 header = _("To:");
3519                                 break;
3520                 }                                                                   
3521         }
3522         gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
3523
3524         /* Entry field */
3525         entry = gtk_entry_new(); 
3526         gtk_widget_show(entry);
3527         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);
3528
3529         gtk_signal_connect(GTK_OBJECT(entry), "key-press-event", GTK_SIGNAL_FUNC(compose_headerentry_key_press_event_cb), headerentry);
3530         gtk_signal_connect(GTK_OBJECT(entry), "changed", GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
3531
3532         address_completion_register_entry(GTK_ENTRY(entry));
3533
3534         headerentry->compose = compose;
3535         headerentry->combo = combo;
3536         headerentry->entry = entry;
3537         headerentry->headernum = compose->header_nextrow;
3538
3539         compose->header_nextrow++;
3540         compose->header_last = headerentry;
3541 }
3542
3543 static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) {
3544         compose_headerentry *last_header;
3545         
3546         last_header = compose->header_last;
3547         
3548         gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
3549         gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
3550 }
3551
3552 static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
3553 {
3554         Compose   *compose;
3555         GtkWidget *window;
3556         GtkWidget *vbox;
3557         GtkWidget *menubar;
3558         GtkWidget *handlebox;
3559
3560         GtkWidget *notebook;
3561
3562         GtkWidget *vbox2;
3563
3564         GtkWidget *table_vbox;
3565         GtkWidget *label;
3566         GtkWidget *from_optmenu_hbox;
3567 #if 0 /* NEW COMPOSE GUI */
3568         GtkWidget *to_entry;
3569         GtkWidget *to_hbox;
3570         GtkWidget *newsgroups_entry;
3571         GtkWidget *newsgroups_hbox;
3572 #endif
3573         GtkWidget *header_scrolledwin;
3574         GtkWidget *header_table;
3575         GtkWidget *subject_entry;
3576 #if 0 /* NEW COMPOSE GUI */
3577         GtkWidget *cc_entry;
3578         GtkWidget *cc_hbox;
3579         GtkWidget *bcc_entry;
3580         GtkWidget *bcc_hbox;
3581         GtkWidget *reply_entry;
3582         GtkWidget *reply_hbox;
3583         GtkWidget *followup_entry;
3584         GtkWidget *followup_hbox;
3585 #endif
3586         GtkWidget *paned;
3587
3588         GtkWidget *attach_scrwin;
3589         GtkWidget *attach_clist;
3590
3591         GtkWidget *edit_vbox;
3592         GtkWidget *ruler_hbox;
3593         GtkWidget *ruler;
3594         GtkWidget *scrolledwin;
3595         GtkWidget *text;
3596
3597         GtkWidget *table;
3598         GtkWidget *hbox;
3599
3600         gchar *titles[] = {_("MIME type"), _("Size"), _("Name")};
3601         guint n_menu_entries;
3602         GtkStyle  *style, *new_style;
3603         GdkColormap *cmap;
3604         GdkColor color[1];
3605         gboolean success[1];
3606         GdkFont   *font;
3607         GtkWidget *popupmenu;
3608         GtkWidget *menuitem;
3609         GtkItemFactory *popupfactory;
3610         GtkItemFactory *ifactory;
3611         gint n_entries;
3612         gint count = 0;
3613         gint i;
3614
3615 #if USE_PSPELL
3616         GtkPspell * gtkpspell = NULL;
3617 #endif
3618
3619         g_return_val_if_fail(account != NULL, NULL);
3620
3621         debug_print(_("Creating compose window...\n"));
3622         compose = g_new0(Compose, 1);
3623
3624         compose->account = account;
3625         compose->orig_account = account;
3626
3627         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3628         gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
3629         gtk_widget_set_usize(window, -1, prefs_common.compose_height);
3630         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
3631                            GTK_SIGNAL_FUNC(compose_delete_cb), compose);
3632         gtk_signal_connect(GTK_OBJECT(window), "destroy",
3633                            GTK_SIGNAL_FUNC(compose_destroy_cb), compose);
3634         gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
3635                            GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
3636         gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
3637                            GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
3638         gtk_widget_realize(window);
3639
3640         gtkut_widget_set_composer_icon(window);
3641
3642         vbox = gtk_vbox_new(FALSE, 0);
3643         gtk_container_add(GTK_CONTAINER(window), vbox);
3644
3645         n_menu_entries = sizeof(compose_entries) / sizeof(compose_entries[0]);
3646         menubar = menubar_create(window, compose_entries,
3647                                  n_menu_entries, "<Compose>", compose);
3648         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
3649
3650         handlebox = gtk_handle_box_new();
3651         gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
3652
3653         compose_toolbar_create(compose, handlebox);
3654
3655         vbox2 = gtk_vbox_new(FALSE, 2);
3656         gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
3657         gtk_container_set_border_width(GTK_CONTAINER(vbox2), BORDER_WIDTH);
3658
3659         table_vbox = gtk_vbox_new(FALSE, 0);
3660         gtk_box_pack_start(GTK_BOX(vbox2), table_vbox, FALSE, TRUE, 0);
3661         gtk_container_set_border_width(GTK_CONTAINER(table_vbox),
3662                                        BORDER_WIDTH * 2);
3663
3664         /* Notebook */
3665         notebook = gtk_notebook_new();
3666         gtk_widget_set_usize(notebook, -1, 180);
3667         gtk_widget_show(notebook);
3668
3669         /* header labels and entries */
3670         header_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
3671         gtk_widget_show(header_scrolledwin);
3672         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(header_scrolledwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
3673         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), header_scrolledwin, gtk_label_new(_("Header")));
3674
3675         header_table = gtk_table_new(2, 2, FALSE);
3676         gtk_widget_show(header_table);
3677         gtk_container_set_border_width(GTK_CONTAINER(header_table), 2);
3678         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table);
3679         count = 0;
3680
3681         /* option menu for selecting accounts */
3682         hbox = gtk_hbox_new(FALSE, 0);
3683         label = gtk_label_new(prefs_common.trans_hdr ? _("From:") : "From:");
3684         gtk_box_pack_end(GTK_BOX(hbox), label, FALSE, FALSE, 0);
3685         gtk_table_attach(GTK_TABLE(header_table), hbox, 0, 1, count, count + 1,
3686                          GTK_FILL, 0, 2, 0);
3687         from_optmenu_hbox = compose_account_option_menu_create(compose);
3688         gtk_table_attach(GTK_TABLE(header_table), from_optmenu_hbox,
3689                                   1, 2, count, count + 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
3690 #if 0 /* NEW COMPOSE GUI */
3691         gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
3692 #endif
3693         count++;
3694
3695         /* Subject */
3696         compose_add_entry_field(header_table, &hbox, &subject_entry, &count,
3697                                 "Subject:", FALSE);
3698
3699         compose->header_table = header_table;
3700         compose->header_list = NULL;
3701         compose->header_nextrow = count;
3702
3703         compose_create_header_entry(compose);
3704
3705 #if 0 /* NEW COMPOSE GUI */
3706         compose_add_entry_field(table, &to_hbox, &to_entry, &count,
3707                                 "To:", TRUE); 
3708         gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
3709         compose_add_entry_field(table, &newsgroups_hbox, &newsgroups_entry,
3710                                 &count, "Newsgroups:", FALSE);
3711         gtk_table_set_row_spacing(GTK_TABLE(table), 1, 4);
3712
3713         gtk_table_set_row_spacing(GTK_TABLE(table), 2, 4);
3714
3715         compose_add_entry_field(table, &cc_hbox, &cc_entry, &count,
3716                                 "Cc:", TRUE);
3717         gtk_table_set_row_spacing(GTK_TABLE(table), 3, 4);
3718         compose_add_entry_field(table, &bcc_hbox, &bcc_entry, &count,
3719                                 "Bcc:", TRUE);
3720         gtk_table_set_row_spacing(GTK_TABLE(table), 4, 4);
3721         compose_add_entry_field(table, &reply_hbox, &reply_entry, &count,
3722                                 "Reply-To:", TRUE);
3723         gtk_table_set_row_spacing(GTK_TABLE(table), 5, 4);
3724         compose_add_entry_field(table, &followup_hbox, &followup_entry, &count,
3725                                 "Followup-To:", FALSE);
3726         gtk_table_set_row_spacing(GTK_TABLE(table), 6, 4);
3727
3728         gtk_table_set_col_spacings(GTK_TABLE(table), 4);
3729
3730         gtk_signal_connect(GTK_OBJECT(to_entry), "activate",
3731                            GTK_SIGNAL_FUNC(to_activated), compose);
3732         gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "activate",
3733                            GTK_SIGNAL_FUNC(newsgroups_activated), compose);
3734         gtk_signal_connect(GTK_OBJECT(subject_entry), "activate",
3735                            GTK_SIGNAL_FUNC(subject_activated), compose);
3736         gtk_signal_connect(GTK_OBJECT(cc_entry), "activate",
3737                            GTK_SIGNAL_FUNC(cc_activated), compose);
3738         gtk_signal_connect(GTK_OBJECT(bcc_entry), "activate",
3739                            GTK_SIGNAL_FUNC(bcc_activated), compose);
3740         gtk_signal_connect(GTK_OBJECT(reply_entry), "activate",
3741                            GTK_SIGNAL_FUNC(replyto_activated), compose);
3742         gtk_signal_connect(GTK_OBJECT(followup_entry), "activate",
3743                            GTK_SIGNAL_FUNC(followupto_activated), compose);
3744
3745         gtk_signal_connect(GTK_OBJECT(subject_entry), "grab_focus",
3746                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3747         gtk_signal_connect(GTK_OBJECT(to_entry), "grab_focus",
3748                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3749         gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "grab_focus",
3750                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3751         gtk_signal_connect(GTK_OBJECT(cc_entry), "grab_focus",
3752                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3753         gtk_signal_connect(GTK_OBJECT(bcc_entry), "grab_focus",
3754                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3755         gtk_signal_connect(GTK_OBJECT(reply_entry), "grab_focus",
3756                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3757         gtk_signal_connect(GTK_OBJECT(followup_entry), "grab_focus",
3758                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3759 #endif
3760
3761         /* attachment list */
3762         attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
3763         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), attach_scrwin, gtk_label_new(_("Attachments")));
3764         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(attach_scrwin),
3765                                        GTK_POLICY_AUTOMATIC,
3766                                        GTK_POLICY_ALWAYS);
3767         gtk_widget_set_usize(attach_scrwin, -1, 80);
3768
3769         attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
3770         gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
3771                                            GTK_JUSTIFY_RIGHT);
3772         gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
3773         gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
3774         gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
3775                                      GTK_SELECTION_EXTENDED);
3776         for (i = 0; i < N_ATTACH_COLS; i++)
3777                 GTK_WIDGET_UNSET_FLAGS
3778                         (GTK_CLIST(attach_clist)->column[i].button,
3779                          GTK_CAN_FOCUS);
3780         gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
3781
3782         gtk_signal_connect(GTK_OBJECT(attach_clist), "select_row",
3783                            GTK_SIGNAL_FUNC(attach_selected), compose);
3784         gtk_signal_connect(GTK_OBJECT(attach_clist), "button_press_event",
3785                            GTK_SIGNAL_FUNC(attach_button_pressed), compose);
3786         gtk_signal_connect(GTK_OBJECT(attach_clist), "key_press_event",
3787                            GTK_SIGNAL_FUNC(attach_key_pressed), compose);
3788
3789         /* drag and drop */
3790         gtk_drag_dest_set(attach_clist,
3791                           GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
3792                           GDK_ACTION_COPY);
3793         gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received",
3794                            GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
3795                            compose);
3796
3797
3798         edit_vbox = gtk_vbox_new(FALSE, 0);
3799 #if 0 /* NEW COMPOSE GUI */
3800         gtk_box_pack_start(GTK_BOX(vbox2), edit_vbox, TRUE, TRUE, 0);
3801 #endif
3802
3803         /* ruler */
3804         ruler_hbox = gtk_hbox_new(FALSE, 0);
3805         gtk_box_pack_start(GTK_BOX(edit_vbox), ruler_hbox, FALSE, FALSE, 0);
3806
3807         ruler = gtk_shruler_new();
3808         gtk_ruler_set_range(GTK_RULER(ruler), 0.0, 100.0, 1.0, 100.0);
3809         gtk_box_pack_start(GTK_BOX(ruler_hbox), ruler, TRUE, TRUE,
3810                            BORDER_WIDTH + 1);
3811         gtk_widget_set_usize(ruler_hbox, 1, -1);
3812
3813         /* text widget */
3814         scrolledwin = gtk_scrolled_window_new(NULL, NULL);
3815         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
3816                                        GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
3817         gtk_box_pack_start(GTK_BOX(edit_vbox), scrolledwin, TRUE, TRUE, 0);
3818         gtk_widget_set_usize(scrolledwin, prefs_common.compose_width, -1);
3819
3820         text = gtk_stext_new(gtk_scrolled_window_get_hadjustment
3821                             (GTK_SCROLLED_WINDOW(scrolledwin)),
3822                             gtk_scrolled_window_get_vadjustment
3823                             (GTK_SCROLLED_WINDOW(scrolledwin)));
3824         GTK_STEXT(text)->default_tab_width = 8;
3825         gtk_stext_set_editable(GTK_STEXT(text), TRUE);
3826
3827         if (prefs_common.block_cursor) {
3828                 GTK_STEXT(text)->cursor_type = STEXT_CURSOR_BLOCK;
3829         }
3830         
3831         if (prefs_common.smart_wrapping) {      
3832                 gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
3833                 gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
3834         }               
3835
3836         gtk_container_add(GTK_CONTAINER(scrolledwin), text);
3837
3838         gtk_signal_connect(GTK_OBJECT(text), "changed",
3839                            GTK_SIGNAL_FUNC(compose_changed_cb), compose);
3840         gtk_signal_connect(GTK_OBJECT(text), "grab_focus",
3841                            GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3842         gtk_signal_connect_after(GTK_OBJECT(text), "button_press_event",
3843                                  GTK_SIGNAL_FUNC(compose_button_press_cb),
3844                                  compose);
3845 #if 0
3846         gtk_signal_connect_after(GTK_OBJECT(text), "key_press_event",
3847                                  GTK_SIGNAL_FUNC(compose_key_press_cb),
3848                                  compose);
3849 #endif
3850         gtk_signal_connect_after(GTK_OBJECT(text), "size_allocate",
3851                                  GTK_SIGNAL_FUNC(compose_edit_size_alloc),
3852                                  ruler);
3853
3854         /* drag and drop */
3855         gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
3856                           GDK_ACTION_COPY);
3857         gtk_signal_connect(GTK_OBJECT(text), "drag_data_received",
3858                            GTK_SIGNAL_FUNC(compose_insert_drag_received_cb),
3859                            compose);
3860 #if USE_PSPELL
3861         if (prefs_common.enable_pspell) {
3862                 gtkpspell = gtkpspell_new_with_config(gtkpspellconfig,
3863                                                       prefs_common.pspell_path,
3864                                                       prefs_common.dictionary,
3865                                                       PSPELL_FASTMODE,
3866                                                       conv_get_current_charset_str());
3867                 if (gtkpspell == NULL)
3868                         prefs_common.enable_pspell = FALSE;
3869                 else
3870                         gtkpspell_attach(gtkpspell, GTK_STEXT(text));
3871         }
3872 #endif
3873         gtk_widget_show_all(vbox);
3874
3875         /* pane between attach clist and text */
3876         paned = gtk_vpaned_new();
3877         gtk_container_add(GTK_CONTAINER(vbox2), paned);
3878         gtk_paned_add1(GTK_PANED(paned), notebook);
3879         gtk_paned_add2(GTK_PANED(paned), edit_vbox);
3880         gtk_widget_show_all(paned);
3881
3882         style = gtk_widget_get_style(text);
3883
3884         /* workaround for the slow down of GtkText when using Pixmap theme */
3885         if (style->engine) {
3886                 GtkThemeEngine *engine;
3887
3888                 engine = style->engine;
3889                 style->engine = NULL;
3890                 new_style = gtk_style_copy(style);
3891                 style->engine = engine;
3892         } else
3893                 new_style = gtk_style_copy(style);
3894
3895         if (prefs_common.textfont) {
3896                 CharSet charset;
3897
3898                 charset = conv_get_current_charset();
3899                 if (MB_CUR_MAX == 1) {
3900                         gchar *fontstr, *p;
3901
3902                         Xstrdup_a(fontstr, prefs_common.textfont, );
3903                         if (fontstr && (p = strchr(fontstr, ',')) != NULL)
3904                                 *p = '\0';
3905                         font = gdk_font_load(fontstr);
3906                 } else
3907                         font = gdk_fontset_load(prefs_common.textfont);
3908                 if (font) {
3909                         gdk_font_unref(new_style->font);
3910                         new_style->font = font;
3911                 }
3912         }
3913
3914         gtk_widget_set_style(text, new_style);
3915
3916         color[0] = quote_color;
3917         cmap = gdk_window_get_colormap(window->window);
3918         gdk_colormap_alloc_colors(cmap, color, 1, FALSE, TRUE, success);
3919         if (success[0] == FALSE) {
3920                 g_warning("Compose: color allocation failed.\n");
3921                 style = gtk_widget_get_style(text);
3922                 quote_color = style->black;
3923         }
3924
3925         n_entries = sizeof(compose_popup_entries) /
3926                 sizeof(compose_popup_entries[0]);
3927         popupmenu = menu_create_items(compose_popup_entries, n_entries,
3928                                       "<Compose>", &popupfactory,
3929                                       compose);
3930
3931         ifactory = gtk_item_factory_from_widget(menubar);
3932         menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
3933         menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
3934
3935 #if 0 /* NEW COMPOSE GUI */
3936         if (account->protocol == A_NNTP) {
3937                 gtk_widget_hide(to_hbox);
3938                 gtk_widget_hide(to_entry);
3939                 gtk_widget_hide(cc_hbox);
3940                 gtk_widget_hide(cc_entry);
3941                 gtk_table_set_row_spacing(GTK_TABLE(table), 1, 0);
3942                 gtk_table_set_row_spacing(GTK_TABLE(table), 3, 0);
3943         } else {
3944                 gtk_widget_hide(newsgroups_hbox);
3945                 gtk_widget_hide(newsgroups_entry);
3946                 gtk_table_set_row_spacing(GTK_TABLE(table), 2, 0);
3947
3948                 menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
3949         }
3950 #endif
3951
3952         switch (prefs_common.toolbar_style) {
3953         case TOOLBAR_NONE:
3954                 gtk_widget_hide(handlebox);
3955                 break;
3956         case TOOLBAR_ICON:
3957                 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3958                                       GTK_TOOLBAR_ICONS);
3959                 break;
3960         case TOOLBAR_TEXT:
3961                 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3962                                       GTK_TOOLBAR_TEXT);
3963                 break;
3964         case TOOLBAR_BOTH:
3965                 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3966                                       GTK_TOOLBAR_BOTH);
3967                 break;
3968         }
3969
3970         gtk_widget_show(window);
3971
3972         address_completion_start(window);
3973
3974         compose->window        = window;
3975         compose->vbox          = vbox;
3976         compose->menubar       = menubar;
3977         compose->handlebox     = handlebox;
3978
3979         compose->vbox2         = vbox2;
3980
3981         compose->table_vbox       = table_vbox;
3982         compose->table            = table;
3983 #if 0 /* NEW COMPOSE GUI */
3984         compose->to_hbox          = to_hbox;
3985         compose->to_entry         = to_entry;
3986         compose->newsgroups_hbox  = newsgroups_hbox;
3987         compose->newsgroups_entry = newsgroups_entry;
3988 #endif
3989         compose->subject_entry    = subject_entry;
3990 #if 0 /* NEW COMPOSE GUI */
3991         compose->cc_hbox          = cc_hbox;
3992         compose->cc_entry         = cc_entry;
3993         compose->bcc_hbox         = bcc_hbox;
3994         compose->bcc_entry        = bcc_entry;
3995         compose->reply_hbox       = reply_hbox;
3996         compose->reply_entry      = reply_entry;
3997         compose->followup_hbox    = followup_hbox;
3998         compose->followup_entry   = followup_entry;
3999 #endif
4000         compose->paned = paned;
4001
4002         compose->attach_scrwin = attach_scrwin;
4003         compose->attach_clist  = attach_clist;
4004
4005         compose->edit_vbox     = edit_vbox;
4006         compose->ruler_hbox    = ruler_hbox;
4007         compose->ruler         = ruler;
4008         compose->scrolledwin   = scrolledwin;
4009         compose->text          = text;
4010
4011         compose->focused_editable = NULL;
4012
4013         compose->popupmenu    = popupmenu;
4014         compose->popupfactory = popupfactory;
4015
4016         compose->mode = mode;
4017
4018         compose->replyto     = NULL;
4019         compose->mailinglist = NULL;
4020         compose->cc          = NULL;
4021         compose->bcc         = NULL;
4022         compose->followup_to = NULL;
4023         compose->inreplyto   = NULL;
4024         compose->references  = NULL;
4025         compose->msgid       = NULL;
4026         compose->boundary    = NULL;
4027
4028 #if USE_GPGME
4029         compose->use_signing    = FALSE;
4030         compose->use_encryption = FALSE;
4031 #endif /* USE_GPGME */
4032
4033         compose->modified = FALSE;
4034
4035         compose->return_receipt = FALSE;
4036
4037         compose->to_list        = NULL;
4038         compose->newsgroup_list = NULL;
4039
4040         compose->exteditor_file    = NULL;
4041         compose->exteditor_pid     = -1;
4042         compose->exteditor_readdes = -1;
4043         compose->exteditor_tag     = -1;
4044
4045         compose_set_title(compose);
4046
4047 #if 0 /* NEW COMPOSE GUI */
4048         compose->use_bcc        = FALSE;
4049         compose->use_replyto    = FALSE;
4050         compose->use_followupto = FALSE;
4051 #endif
4052
4053 #if USE_PSPELL
4054         compose->gtkpspell      = gtkpspell;
4055 #endif
4056
4057 #if 0 /* NEW COMPOSE GUI */
4058         if (account->protocol != A_NNTP) {
4059                 menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
4060                 gtk_check_menu_item_set_active
4061                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
4062                 gtk_widget_set_sensitive(menuitem, FALSE);
4063                 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
4064                 gtk_check_menu_item_set_active
4065                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
4066                 gtk_widget_set_sensitive(menuitem, FALSE);
4067         }
4068 #endif
4069         if (account->set_autocc && account->auto_cc && mode != COMPOSE_REEDIT) {
4070                 compose_entry_append(compose, account->auto_cc, COMPOSE_CC);
4071 #if 0 /* NEW COMPOSE GUI */
4072                 compose->use_cc = TRUE;
4073                 gtk_entry_set_text(GTK_ENTRY(cc_entry), account->auto_cc);
4074                 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
4075                 gtk_check_menu_item_set_active
4076                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
4077 #endif
4078         }
4079         if (account->set_autobcc) {
4080                 compose_entry_append(compose, account->auto_bcc, COMPOSE_BCC);
4081 #if 0 /* NEW COMPOSE GUI */
4082                 compose->use_bcc = TRUE;
4083                 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
4084                 gtk_check_menu_item_set_active
4085                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
4086                 if (account->auto_bcc && mode != COMPOSE_REEDIT)
4087                         gtk_entry_set_text(GTK_ENTRY(bcc_entry),
4088                                            account->auto_bcc);
4089 #endif
4090         }
4091         if (account->set_autoreplyto && account->auto_replyto && mode != COMPOSE_REEDIT) {
4092                 compose_entry_append(compose, account->auto_replyto, COMPOSE_REPLYTO);
4093 #if 0 /* NEW COMPOSE GUI */
4094                 compose->use_replyto = TRUE;
4095                 menuitem = gtk_item_factory_get_item(ifactory,
4096                                                      "/Message/Reply to");
4097                 gtk_check_menu_item_set_active
4098                         (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
4099                 gtk_entry_set_text(GTK_ENTRY(reply_entry),
4100                                    account->auto_replyto);
4101 #endif
4102         }
4103         if (account->protocol != A_NNTP) {
4104                 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), _("To:"));
4105         } else {
4106                 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry), _("Newsgroups:"));
4107         }
4108
4109         menuitem = gtk_item_factory_get_item(ifactory, "/Tool/Show ruler");
4110         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
4111                                        prefs_common.show_ruler);
4112
4113 #if USE_GPGME
4114         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Sign");
4115         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
4116                                        prefs_common.default_sign);
4117         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Encrypt");
4118         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
4119                                        prefs_common.default_encrypt);
4120 #endif /* USE_GPGME */
4121
4122         addressbook_set_target_compose(compose);
4123
4124         compose_list = g_list_append(compose_list, compose);
4125
4126 #if 0 /* NEW COMPOSE GUI */
4127         compose->use_to         = FALSE;
4128         compose->use_cc         = FALSE;
4129         compose->use_attach     = TRUE;
4130 #endif
4131
4132 #if 0 /* NEW COMPOSE GUI */
4133         if (!compose->use_bcc) {
4134                 gtk_widget_hide(bcc_hbox);
4135                 gtk_widget_hide(bcc_entry);
4136                 gtk_table_set_row_spacing(GTK_TABLE(table), 4, 0);
4137         }
4138         if (!compose->use_replyto) {
4139                 gtk_widget_hide(reply_hbox);
4140                 gtk_widget_hide(reply_entry);
4141                 gtk_table_set_row_spacing(GTK_TABLE(table), 5, 0);
4142         }
4143         if (!compose->use_followupto) {
4144                 gtk_widget_hide(followup_hbox);
4145                 gtk_widget_hide(followup_entry);
4146                 gtk_table_set_row_spacing(GTK_TABLE(table), 6, 0);
4147         }
4148 #endif
4149         if (!prefs_common.show_ruler)
4150                 gtk_widget_hide(ruler_hbox);
4151
4152         select_account(compose, account);
4153
4154         return compose;
4155 }
4156
4157 #include "pixmaps/stock_mail_send.xpm"
4158 #include "pixmaps/stock_mail_send_queue.xpm"
4159 #include "pixmaps/stock_mail.xpm"
4160 #include "pixmaps/stock_paste.xpm"
4161 #include "pixmaps/stock_mail_attach.xpm"
4162 #include "pixmaps/stock_mail_compose.xpm"
4163 #include "pixmaps/linewrap.xpm"
4164 #include "pixmaps/tb_address_book.xpm"
4165
4166 #define CREATE_TOOLBAR_ICON(xpm_d) \
4167 { \
4168         icon = gdk_pixmap_create_from_xpm_d(container->window, &mask, \
4169                                             &container->style->white, \
4170                                             xpm_d); \
4171         icon_wid = gtk_pixmap_new(icon, mask); \
4172 }
4173
4174 static void compose_toolbar_create(Compose *compose, GtkWidget *container)
4175 {
4176         GtkWidget *toolbar;
4177         GdkPixmap *icon;
4178         GdkBitmap *mask;
4179         GtkWidget *icon_wid;
4180         GtkWidget *send_btn;
4181         GtkWidget *sendl_btn;
4182         GtkWidget *draft_btn;
4183         GtkWidget *insert_btn;
4184         GtkWidget *attach_btn;
4185         GtkWidget *sig_btn;
4186         GtkWidget *exteditor_btn;
4187         GtkWidget *linewrap_btn;
4188         GtkWidget *addrbook_btn;
4189
4190         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
4191                                   GTK_TOOLBAR_BOTH);
4192         gtk_container_add(GTK_CONTAINER(container), toolbar);
4193         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
4194         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
4195         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
4196                                     GTK_TOOLBAR_SPACE_LINE);
4197
4198         CREATE_TOOLBAR_ICON(stock_mail_send_xpm);
4199         send_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4200                                            _("Send"),
4201                                            _("Send message"),
4202                                            "Send",
4203                                            icon_wid, toolbar_send_cb, compose);
4204
4205         CREATE_TOOLBAR_ICON(stock_mail_send_queue_xpm);
4206         /* CREATE_TOOLBAR_ICON(tb_mail_queue_send_xpm); */
4207         sendl_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4208                                            _("Send later"),
4209                                            _("Put into queue folder and send later"),
4210                                            "Send later",
4211                                            icon_wid, toolbar_send_later_cb,
4212                                            compose);
4213
4214         CREATE_TOOLBAR_ICON(stock_mail_xpm);
4215         draft_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4216                                             _("Draft"),
4217                                             _("Save to draft folder"),
4218                                             "Draft",
4219                                             icon_wid, toolbar_draft_cb,
4220                                             compose);
4221
4222         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
4223
4224         CREATE_TOOLBAR_ICON(stock_paste_xpm);
4225         insert_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4226                                              _("Insert"),
4227                                              _("Insert file"),
4228                                              "Insert",
4229                                              icon_wid, toolbar_insert_cb,
4230                                              compose);
4231
4232         CREATE_TOOLBAR_ICON(stock_mail_attach_xpm);
4233         attach_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4234                                              _("Attach"),
4235                                              _("Attach file"),
4236                                              "Attach",
4237                                              icon_wid, toolbar_attach_cb,
4238                                              compose);
4239
4240         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
4241
4242         CREATE_TOOLBAR_ICON(stock_mail_xpm);
4243         sig_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4244                                           _("Signature"),
4245                                           _("Insert signature"),
4246                                           "Signature",
4247                                           icon_wid, toolbar_sig_cb, compose);
4248
4249         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
4250
4251         CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
4252         exteditor_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4253                                                 _("Editor"),
4254                                                 _("Edit with external editor"),
4255                                                 "Editor",
4256                                                 icon_wid,
4257                                                 toolbar_ext_editor_cb,
4258                                                 compose);
4259
4260         CREATE_TOOLBAR_ICON(linewrap_xpm);
4261         linewrap_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4262                                                _("Linewrap"),
4263                                                _("Wrap current paragraph"),
4264                                                "Linewrap",
4265                                                icon_wid,
4266                                                toolbar_linewrap_cb,
4267                                                compose);
4268
4269         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
4270
4271         CREATE_TOOLBAR_ICON(tb_address_book_xpm);
4272         addrbook_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
4273                                                _("Address"),
4274                                                _("Address book"),
4275                                                "Address",
4276                                                icon_wid, toolbar_address_cb,
4277                                                compose);
4278
4279         compose->toolbar       = toolbar;
4280         compose->send_btn      = send_btn;
4281         compose->sendl_btn     = sendl_btn;
4282         compose->draft_btn     = draft_btn;
4283         compose->insert_btn    = insert_btn;
4284         compose->attach_btn    = attach_btn;
4285         compose->sig_btn       = sig_btn;
4286         compose->exteditor_btn = exteditor_btn;
4287         compose->linewrap_btn  = linewrap_btn;
4288         compose->addrbook_btn  = addrbook_btn;
4289
4290         gtk_widget_show_all(toolbar);
4291 }
4292
4293 #undef CREATE_TOOLBAR_ICON
4294
4295 static GtkWidget *compose_account_option_menu_create(Compose *compose)
4296 {
4297         GList *accounts;
4298         GtkWidget *hbox;
4299         GtkWidget *optmenu;
4300         GtkWidget *menu;
4301         gint num = 0, def_menu = 0;
4302
4303         accounts = account_get_list();
4304         g_return_val_if_fail(accounts != NULL, NULL);
4305
4306         hbox = gtk_hbox_new(FALSE, 0);
4307         optmenu = gtk_option_menu_new();
4308         gtk_box_pack_start(GTK_BOX(hbox), optmenu, FALSE, FALSE, 0);
4309         menu = gtk_menu_new();
4310
4311         for (; accounts != NULL; accounts = accounts->next, num++) {
4312                 PrefsAccount *ac = (PrefsAccount *)accounts->data;
4313                 GtkWidget *menuitem;
4314                 gchar *name;
4315
4316                 if (ac == compose->account) def_menu = num;
4317
4318                 name = g_strdup_printf("%s: %s <%s>",
4319                                        ac->account_name, ac->name, ac->address);
4320                 MENUITEM_ADD(menu, menuitem, name, ac);
4321                 g_free(name);
4322                 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
4323                                    GTK_SIGNAL_FUNC(account_activated),
4324                                    compose);
4325         }
4326
4327         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), menu);
4328         gtk_option_menu_set_history(GTK_OPTION_MENU(optmenu), def_menu);
4329
4330         return hbox;
4331 }
4332
4333 static void compose_destroy(Compose *compose)
4334 {
4335         gint row;
4336         GtkCList *clist = GTK_CLIST(compose->attach_clist);
4337         AttachInfo *ainfo;
4338
4339         /* NOTE: address_completion_end() does nothing with the window
4340          * however this may change. */
4341         address_completion_end(compose->window);
4342
4343         slist_free_strings(compose->to_list);
4344         g_slist_free(compose->to_list);
4345         slist_free_strings(compose->newsgroup_list);
4346         g_slist_free(compose->newsgroup_list);
4347         slist_free_strings(compose->header_list);
4348         g_slist_free(compose->header_list);
4349
4350         procmsg_msginfo_free(compose->targetinfo);
4351
4352         g_free(compose->replyto);
4353         g_free(compose->cc);
4354         g_free(compose->bcc);
4355         g_free(compose->newsgroups);
4356         g_free(compose->followup_to);
4357
4358         g_free(compose->inreplyto);
4359         g_free(compose->references);
4360         g_free(compose->msgid);
4361         g_free(compose->boundary);
4362
4363         g_free(compose->exteditor_file);
4364
4365         for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
4366              row++)
4367                 compose_attach_info_free(ainfo);
4368
4369         if (addressbook_get_target_compose() == compose)
4370                 addressbook_set_target_compose(NULL);
4371
4372         prefs_common.compose_width = compose->scrolledwin->allocation.width;
4373         prefs_common.compose_height = compose->window->allocation.height;
4374
4375         gtk_widget_destroy(compose->paned);
4376
4377         g_free(compose);
4378
4379         compose_list = g_list_remove(compose_list, compose);
4380 }
4381
4382 static void compose_attach_info_free(AttachInfo *ainfo)
4383 {
4384         g_free(ainfo->file);
4385         g_free(ainfo->content_type);
4386         g_free(ainfo->name);
4387         g_free(ainfo);
4388 }
4389
4390 static void compose_attach_remove_selected(Compose *compose)
4391 {
4392         GtkCList *clist = GTK_CLIST(compose->attach_clist);
4393         AttachInfo *ainfo;
4394         gint row;
4395
4396         while (clist->selection != NULL) {
4397                 row = GPOINTER_TO_INT(clist->selection->data);
4398                 ainfo = gtk_clist_get_row_data(clist, row);
4399                 compose_attach_info_free(ainfo);
4400                 gtk_clist_remove(clist, row);
4401         }
4402 }
4403
4404 static struct _AttachProperty
4405 {
4406         GtkWidget *window;
4407         GtkWidget *mimetype_entry;
4408         GtkWidget *encoding_optmenu;
4409         GtkWidget *path_entry;
4410         GtkWidget *filename_entry;
4411         GtkWidget *ok_btn;
4412         GtkWidget *cancel_btn;
4413 } attach_prop;
4414
4415 static void compose_attach_property(Compose *compose)
4416 {
4417         GtkCList *clist = GTK_CLIST(compose->attach_clist);
4418         AttachInfo *ainfo;
4419         gint row;
4420         GtkOptionMenu *optmenu;
4421         static gboolean cancelled;
4422
4423         if (!clist->selection) return;
4424         row = GPOINTER_TO_INT(clist->selection->data);
4425
4426         ainfo = gtk_clist_get_row_data(clist, row);
4427         if (!ainfo) return;
4428
4429         if (!attach_prop.window)
4430                 compose_attach_property_create(&cancelled);
4431         gtk_widget_grab_focus(attach_prop.ok_btn);
4432         gtk_widget_show(attach_prop.window);
4433         manage_window_set_transient(GTK_WINDOW(attach_prop.window));
4434
4435         optmenu = GTK_OPTION_MENU(attach_prop.encoding_optmenu);
4436         if (ainfo->encoding == ENC_UNKNOWN)
4437                 gtk_option_menu_set_history(optmenu, ENC_BASE64);
4438         else
4439                 gtk_option_menu_set_history(optmenu, ainfo->encoding);
4440
4441         gtk_entry_set_text(GTK_ENTRY(attach_prop.mimetype_entry),
4442                            ainfo->content_type ? ainfo->content_type : "");
4443         gtk_entry_set_text(GTK_ENTRY(attach_prop.path_entry),
4444                            ainfo->file ? ainfo->file : "");
4445         gtk_entry_set_text(GTK_ENTRY(attach_prop.filename_entry),
4446                            ainfo->name ? ainfo->name : "");
4447
4448         for (;;) {
4449                 gchar *text;
4450                 gchar *cnttype = NULL;
4451                 gchar *file = NULL;
4452                 off_t size = 0;
4453                 GtkWidget *menu;
4454                 GtkWidget *menuitem;
4455
4456                 cancelled = FALSE;
4457                 gtk_main();
4458
4459                 if (cancelled == TRUE) {
4460                         gtk_widget_hide(attach_prop.window);
4461                         break;
4462                 }
4463
4464                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.mimetype_entry));
4465                 if (*text != '\0') {
4466                         gchar *p;
4467
4468                         text = g_strstrip(g_strdup(text));
4469                         if ((p = strchr(text, '/')) && !strchr(p + 1, '/')) {
4470                                 cnttype = g_strdup(text);
4471                                 g_free(text);
4472                         } else {
4473                                 alertpanel_error(_("Invalid MIME type."));
4474                                 g_free(text);
4475                                 continue;
4476                         }
4477                 }
4478
4479                 menu = gtk_option_menu_get_menu(optmenu);
4480                 menuitem = gtk_menu_get_active(GTK_MENU(menu));
4481                 ainfo->encoding = GPOINTER_TO_INT
4482                         (gtk_object_get_user_data(GTK_OBJECT(menuitem)));
4483
4484                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.path_entry));
4485                 if (*text != '\0') {
4486                         if (is_file_exist(text) &&
4487                             (size = get_file_size(text)) > 0)
4488                                 file = g_strdup(text);
4489                         else {
4490                                 alertpanel_error
4491                                         (_("File doesn't exist or is empty."));
4492                                 g_free(cnttype);
4493                                 continue;
4494                         }
4495                 }
4496
4497                 text = gtk_entry_get_text(GTK_ENTRY(attach_prop.filename_entry));
4498                 if (*text != '\0') {
4499                         g_free(ainfo->name);
4500                         ainfo->name = g_strdup(text);
4501                 }
4502
4503                 if (cnttype) {
4504                         g_free(ainfo->content_type);
4505                         ainfo->content_type = cnttype;
4506                 }
4507                 if (file) {
4508                         g_free(ainfo->file);
4509                         ainfo->file = file;
4510                 }
4511                 if (size)
4512                         ainfo->size = size;
4513
4514                 gtk_clist_set_text(clist, row, COL_MIMETYPE,
4515                                    ainfo->content_type);
4516                 gtk_clist_set_text(clist, row, COL_SIZE,
4517                                    to_human_readable(ainfo->size));
4518                 gtk_clist_set_text(clist, row, COL_NAME, ainfo->name);
4519
4520                 gtk_widget_hide(attach_prop.window);
4521                 break;
4522         }
4523 }
4524
4525 #define SET_LABEL_AND_ENTRY(str, entry, top) \
4526 { \
4527         label = gtk_label_new(str); \
4528         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), \
4529                          GTK_FILL, 0, 0, 0); \
4530         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); \
4531  \
4532         entry = gtk_entry_new(); \
4533         gtk_table_attach(GTK_TABLE(table), entry, 1, 2, top, (top + 1), \
4534                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); \
4535 }
4536
4537 static void compose_attach_property_create(gboolean *cancelled)
4538 {
4539         GtkWidget *window;
4540         GtkWidget *vbox;
4541         GtkWidget *table;
4542         GtkWidget *label;
4543         GtkWidget *mimetype_entry;
4544         GtkWidget *hbox;
4545         GtkWidget *optmenu;
4546         GtkWidget *optmenu_menu;
4547         GtkWidget *menuitem;
4548         GtkWidget *path_entry;
4549         GtkWidget *filename_entry;
4550         GtkWidget *hbbox;
4551         GtkWidget *ok_btn;
4552         GtkWidget *cancel_btn;
4553         GList     *mime_type_list, *strlist;
4554
4555         debug_print("Creating attach_property window...\n");
4556
4557         window = gtk_window_new(GTK_WINDOW_DIALOG);
4558         gtk_widget_set_usize(window, 480, -1);
4559         gtk_container_set_border_width(GTK_CONTAINER(window), 8);
4560         gtk_window_set_title(GTK_WINDOW(window), _("Property"));
4561         gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
4562         gtk_window_set_modal(GTK_WINDOW(window), TRUE);
4563         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
4564                            GTK_SIGNAL_FUNC(attach_property_delete_event),
4565                            cancelled);
4566         gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
4567                            GTK_SIGNAL_FUNC(attach_property_key_pressed),
4568                            cancelled);
4569
4570         vbox = gtk_vbox_new(FALSE, 8);
4571         gtk_container_add(GTK_CONTAINER(window), vbox);
4572
4573         table = gtk_table_new(4, 2, FALSE);
4574         gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
4575         gtk_table_set_row_spacings(GTK_TABLE(table), 8);
4576         gtk_table_set_col_spacings(GTK_TABLE(table), 8);
4577
4578         label = gtk_label_new(_("MIME type")); 
4579         gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, (0 + 1), 
4580                          GTK_FILL, 0, 0, 0); 
4581         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); 
4582         mimetype_entry = gtk_combo_new(); 
4583         gtk_table_attach(GTK_TABLE(table), mimetype_entry, 1, 2, 0, (0 + 1), 
4584                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
4585                          
4586         /* stuff with list */
4587         mime_type_list = procmime_get_mime_type_list();
4588         strlist = NULL;
4589         for (; mime_type_list != NULL; mime_type_list = mime_type_list->next) {
4590                 MimeType *type = (MimeType *) mime_type_list->data;
4591                 strlist = g_list_append(strlist, 
4592                                 g_strdup_printf("%s/%s",
4593                                         type->type, type->sub_type));
4594         }
4595         
4596         gtk_combo_set_popdown_strings(GTK_COMBO(mimetype_entry), strlist);
4597
4598         for (mime_type_list = strlist; mime_type_list != NULL; 
4599                 mime_type_list = mime_type_list->next)
4600                 g_free(mime_type_list->data);
4601         g_list_free(strlist);
4602                          
4603         mimetype_entry = GTK_COMBO(mimetype_entry)->entry;                       
4604
4605         label = gtk_label_new(_("Encoding"));
4606         gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
4607                          GTK_FILL, 0, 0, 0);
4608         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
4609
4610         hbox = gtk_hbox_new(FALSE, 0);
4611         gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 1, 2,
4612                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
4613
4614         optmenu = gtk_option_menu_new();
4615         gtk_box_pack_start(GTK_BOX(hbox), optmenu, FALSE, FALSE, 0);
4616
4617         optmenu_menu = gtk_menu_new();
4618         MENUITEM_ADD(optmenu_menu, menuitem, "7bit", ENC_7BIT);
4619         gtk_widget_set_sensitive(menuitem, FALSE);
4620         MENUITEM_ADD(optmenu_menu, menuitem, "8bit", ENC_8BIT);
4621         gtk_widget_set_sensitive(menuitem, FALSE);
4622         MENUITEM_ADD(optmenu_menu, menuitem, "quoted-printable", ENC_QUOTED_PRINTABLE);
4623         gtk_widget_set_sensitive(menuitem, FALSE);
4624         MENUITEM_ADD(optmenu_menu, menuitem, "base64", ENC_BASE64);
4625
4626         gtk_option_menu_set_menu(GTK_OPTION_MENU(optmenu), optmenu_menu);
4627
4628         SET_LABEL_AND_ENTRY(_("Path"),      path_entry,     2);
4629         SET_LABEL_AND_ENTRY(_("File name"), filename_entry, 3);
4630
4631         gtkut_button_set_create(&hbbox, &ok_btn, _("OK"),
4632                                 &cancel_btn, _("Cancel"), NULL, NULL);
4633         gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
4634         gtk_widget_grab_default(ok_btn);
4635
4636         gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
4637                            GTK_SIGNAL_FUNC(attach_property_ok),
4638                            cancelled);
4639         gtk_signal_connect(GTK_OBJECT(cancel_btn), "clicked",
4640                            GTK_SIGNAL_FUNC(attach_property_cancel),
4641                            cancelled);
4642
4643         gtk_widget_show_all(vbox);
4644
4645         attach_prop.window           = window;
4646         attach_prop.mimetype_entry   = mimetype_entry;
4647         attach_prop.encoding_optmenu = optmenu;
4648         attach_prop.path_entry       = path_entry;
4649         attach_prop.filename_entry   = filename_entry;
4650         attach_prop.ok_btn           = ok_btn;
4651         attach_prop.cancel_btn       = cancel_btn;
4652 }
4653
4654 #undef SET_LABEL_AND_ENTRY
4655
4656 static void attach_property_ok(GtkWidget *widget, gboolean *cancelled)
4657 {
4658         *cancelled = FALSE;
4659         gtk_main_quit();
4660 }
4661
4662 static void attach_property_cancel(GtkWidget *widget, gboolean *cancelled)
4663 {
4664         *cancelled = TRUE;
4665         gtk_main_quit();
4666 }
4667
4668 static gint attach_property_delete_event(GtkWidget *widget, GdkEventAny *event,
4669                                          gboolean *cancelled)
4670 {
4671         *cancelled = TRUE;
4672         gtk_main_quit();
4673
4674         return TRUE;
4675 }
4676
4677 static void attach_property_key_pressed(GtkWidget *widget, GdkEventKey *event,
4678                                         gboolean *cancelled)
4679 {
4680         if (event && event->keyval == GDK_Escape) {
4681                 *cancelled = TRUE;
4682                 gtk_main_quit();
4683         }
4684 }
4685
4686 static void compose_exec_ext_editor(Compose *compose)
4687 {
4688         gchar tmp[64];
4689         pid_t pid;
4690         gint pipe_fds[2];
4691
4692         g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg.%08x",
4693                    g_get_tmp_dir(), G_DIR_SEPARATOR, (gint)compose);
4694
4695         if (pipe(pipe_fds) < 0) {
4696                 perror("pipe");
4697                 return;
4698         }
4699
4700         if ((pid = fork()) < 0) {
4701                 perror("fork");
4702                 return;
4703         }
4704
4705         if (pid != 0) {
4706                 /* close the write side of the pipe */
4707                 close(pipe_fds[1]);
4708
4709                 compose->exteditor_file    = g_strdup(tmp);
4710                 compose->exteditor_pid     = pid;
4711                 compose->exteditor_readdes = pipe_fds[0];
4712
4713                 compose_set_ext_editor_sensitive(compose, FALSE);
4714
4715                 compose->exteditor_tag =
4716                         gdk_input_add(pipe_fds[0], GDK_INPUT_READ,
4717                                       compose_input_cb, compose);
4718         } else {        /* process-monitoring process */
4719                 pid_t pid_ed;
4720
4721                 if (setpgid(0, 0))
4722                         perror("setpgid");
4723
4724                 /* close the read side of the pipe */
4725                 close(pipe_fds[0]);
4726
4727                 if (compose_write_body_to_file(compose, tmp) < 0) {
4728                         fd_write(pipe_fds[1], "2\n", 2);
4729                         _exit(1);
4730                 }
4731
4732                 pid_ed = compose_exec_ext_editor_real(tmp);
4733                 if (pid_ed < 0) {
4734                         fd_write(pipe_fds[1], "1\n", 2);
4735                         _exit(1);
4736                 }
4737
4738                 /* wait until editor is terminated */
4739                 waitpid(pid_ed, NULL, 0);
4740
4741                 fd_write(pipe_fds[1], "0\n", 2);
4742
4743                 close(pipe_fds[1]);
4744                 _exit(0);
4745         }
4746 }
4747
4748 static gint compose_exec_ext_editor_real(const gchar *file)
4749 {
4750         static gchar *def_cmd = "emacs %s";
4751         gchar buf[1024];
4752         gchar *p;
4753         gchar **cmdline;
4754         pid_t pid;
4755
4756         g_return_val_if_fail(file != NULL, -1);
4757
4758         if ((pid = fork()) < 0) {
4759                 perror("fork");
4760                 return -1;
4761         }
4762
4763         if (pid != 0) return pid;
4764
4765         /* grandchild process */
4766
4767         if (setpgid(0, getppid()))
4768                 perror("setpgid");
4769
4770         if (prefs_common.ext_editor_cmd &&
4771             (p = strchr(prefs_common.ext_editor_cmd, '%')) &&
4772             *(p + 1) == 's' && !strchr(p + 2, '%')) {
4773                 g_snprintf(buf, sizeof(buf), prefs_common.ext_editor_cmd, file);
4774         } else {
4775                 if (prefs_common.ext_editor_cmd)
4776                         g_warning(_("External editor command line is invalid: `%s'\n"),
4777                                   prefs_common.ext_editor_cmd);
4778                 g_snprintf(buf, sizeof(buf), def_cmd, file);
4779         }
4780
4781         cmdline = g_strsplit(buf, " ", 1024);
4782         execvp(cmdline[0], cmdline);
4783
4784         perror("execvp");
4785         g_strfreev(cmdline);
4786
4787         _exit(1);
4788 }
4789
4790 static gboolean compose_ext_editor_kill(Compose *compose)
4791 {
4792         pid_t pgid = compose->exteditor_pid * -1;
4793         gint ret;
4794
4795         ret = kill(pgid, 0);
4796
4797         if (ret == 0 || (ret == -1 && EPERM == errno)) {
4798                 AlertValue val;
4799                 gchar *msg;
4800
4801                 msg = g_strdup_printf
4802                         (_("The external editor is still working.\n"
4803                            "Force terminating the process?\n"
4804                            "process group id: %d"), -pgid);
4805                 val = alertpanel(_("Notice"), msg, _("Yes"), _("+No"), NULL);
4806                 g_free(msg);
4807
4808                 if (val == G_ALERTDEFAULT) {
4809                         gdk_input_remove(compose->exteditor_tag);
4810                         close(compose->exteditor_readdes);
4811
4812                         if (kill(pgid, SIGTERM) < 0) perror("kill");
4813                         waitpid(compose->exteditor_pid, NULL, 0);
4814
4815                         g_warning(_("Terminated process group id: %d"), -pgid);
4816                         g_warning(_("Temporary file: %s"),
4817                                   compose->exteditor_file);
4818
4819                         compose_set_ext_editor_sensitive(compose, TRUE);
4820
4821                         g_free(compose->exteditor_file);
4822                         compose->exteditor_file    = NULL;
4823                         compose->exteditor_pid     = -1;
4824                         compose->exteditor_readdes = -1;
4825                         compose->exteditor_tag     = -1;
4826                 } else
4827                         return FALSE;
4828         }
4829
4830         return TRUE;
4831 }
4832
4833 static void compose_input_cb(gpointer data, gint source,
4834                              GdkInputCondition condition)
4835 {
4836         gchar buf[3];
4837         Compose *compose = (Compose *)data;
4838         gint i = 0;
4839
4840         debug_print(_("Compose: input from monitoring process\n"));
4841
4842         gdk_input_remove(compose->exteditor_tag);
4843
4844         for (;;) {
4845                 if (read(source, &buf[i], 1) < 1) {
4846                         buf[0] = '3';
4847                         break;
4848                 }
4849                 if (buf[i] == '\n') {
4850                         buf[i] = '\0';
4851                         break;
4852                 }
4853                 i++;
4854                 if (i == sizeof(buf) - 1)
4855                         break;
4856         }
4857
4858         waitpid(compose->exteditor_pid, NULL, 0);
4859
4860         if (buf[0] == '0') {            /* success */
4861                 GtkSText *text = GTK_STEXT(compose->text);
4862
4863                 gtk_stext_freeze(text);
4864                 gtk_stext_set_point(text, 0);
4865                 gtk_stext_forward_delete(text, gtk_stext_get_length(text));
4866                 compose_insert_file(compose, compose->exteditor_file);
4867                 compose_changed_cb(NULL, compose);
4868                 gtk_stext_thaw(text);
4869
4870                 if (unlink(compose->exteditor_file) < 0)
4871                         FILE_OP_ERROR(compose->exteditor_file, "unlink");
4872         } else if (buf[0] == '1') {     /* failed */
4873                 g_warning(_("Couldn't exec external editor\n"));
4874                 if (unlink(compose->exteditor_file) < 0)
4875                         FILE_OP_ERROR(compose->exteditor_file, "unlink");
4876         } else if (buf[0] == '2') {
4877                 g_warning(_("Couldn't write to file\n"));
4878         } else if (buf[0] == '3') {
4879                 g_warning(_("Pipe read failed\n"));
4880         }
4881
4882         close(source);
4883
4884         compose_set_ext_editor_sensitive(compose, TRUE);
4885
4886         g_free(compose->exteditor_file);
4887         compose->exteditor_file    = NULL;
4888         compose->exteditor_pid     = -1;
4889         compose->exteditor_readdes = -1;
4890         compose->exteditor_tag     = -1;
4891 }
4892
4893 static void compose_set_ext_editor_sensitive(Compose *compose,
4894                                              gboolean sensitive)
4895 {
4896         GtkItemFactory *ifactory;
4897
4898         ifactory = gtk_item_factory_from_widget(compose->menubar);
4899
4900         menu_set_sensitive(ifactory, "/Message/Send", sensitive);
4901         menu_set_sensitive(ifactory, "/Message/Send later", sensitive);
4902         menu_set_sensitive(ifactory, "/Message/Save to draft folder",
4903                            sensitive);
4904         menu_set_sensitive(ifactory, "/File/Insert file", sensitive);
4905         menu_set_sensitive(ifactory, "/File/Insert signature", sensitive);
4906         menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", sensitive);
4907         menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", sensitive);
4908         menu_set_sensitive(ifactory, "/Edit/Edit with external editor",
4909                            sensitive);
4910
4911         gtk_widget_set_sensitive(compose->text,          sensitive);
4912         gtk_widget_set_sensitive(compose->send_btn,      sensitive);
4913         gtk_widget_set_sensitive(compose->sendl_btn,     sensitive);
4914         gtk_widget_set_sensitive(compose->draft_btn,     sensitive);
4915         gtk_widget_set_sensitive(compose->insert_btn,    sensitive);
4916         gtk_widget_set_sensitive(compose->sig_btn,       sensitive);
4917         gtk_widget_set_sensitive(compose->exteditor_btn, sensitive);
4918         gtk_widget_set_sensitive(compose->linewrap_btn,  sensitive);
4919 }
4920
4921 static gint calc_cursor_xpos(GtkSText *text, gint extra, gint char_width)
4922 {
4923         gint cursor_pos;
4924
4925         cursor_pos = (text->cursor_pos_x - extra) / char_width;
4926         cursor_pos = MAX(cursor_pos, 0);
4927
4928         return cursor_pos;
4929 }
4930
4931 /* callback functions */
4932
4933 /* compose_edit_size_alloc() - called when resized. don't know whether Gtk
4934  * includes "non-client" (windows-izm) in calculation, so this calculation
4935  * may not be accurate.
4936  */
4937 static gboolean compose_edit_size_alloc(GtkEditable *widget,
4938                                         GtkAllocation *allocation,
4939                                         GtkSHRuler *shruler)
4940 {
4941         if (prefs_common.show_ruler) {
4942                 gint char_width;
4943                 gint line_width_in_chars;
4944
4945                 char_width = gtkut_get_font_width
4946                         (GTK_WIDGET(widget)->style->font);
4947                 line_width_in_chars =
4948                         (allocation->width - allocation->x) / char_width;
4949
4950                 /* got the maximum */
4951                 gtk_ruler_set_range(GTK_RULER(shruler),
4952                                     0.0, line_width_in_chars,
4953                                     calc_cursor_xpos(GTK_STEXT(widget),
4954                                                      allocation->x,
4955                                                      char_width),
4956                                     /*line_width_in_chars*/ char_width);
4957         }
4958
4959         return TRUE;
4960 }
4961
4962 static void toolbar_send_cb(GtkWidget *widget, gpointer data)
4963 {
4964         compose_send_cb(data, 0, NULL);
4965 }
4966
4967 static void toolbar_send_later_cb(GtkWidget *widget, gpointer data)
4968 {
4969         compose_send_later_cb(data, 0, NULL);
4970 }
4971
4972 static void toolbar_draft_cb(GtkWidget *widget, gpointer data)
4973 {
4974         compose_draft_cb(data, 0, NULL);
4975 }
4976
4977 static void toolbar_insert_cb(GtkWidget *widget, gpointer data)
4978 {
4979         compose_insert_file_cb(data, 0, NULL);
4980 }
4981
4982 static void toolbar_attach_cb(GtkWidget *widget, gpointer data)
4983 {
4984         compose_attach_cb(data, 0, NULL);
4985 }
4986
4987 static void toolbar_sig_cb(GtkWidget *widget, gpointer data)
4988 {
4989         Compose *compose = (Compose *)data;
4990
4991         compose_insert_sig(compose);
4992 }
4993
4994 static void toolbar_ext_editor_cb(GtkWidget *widget, gpointer data)
4995 {
4996         Compose *compose = (Compose *)data;
4997
4998         compose_exec_ext_editor(compose);
4999 }
5000
5001 static void toolbar_linewrap_cb(GtkWidget *widget, gpointer data)
5002 {
5003         Compose *compose = (Compose *)data;
5004
5005         compose_wrap_line(compose);
5006 }
5007
5008 static void toolbar_address_cb(GtkWidget *widget, gpointer data)
5009 {
5010         compose_address_cb(data, 0, NULL);
5011 }
5012
5013 static void select_account(Compose * compose, PrefsAccount * ac)
5014 {
5015         compose->account = ac;
5016         compose_set_title(compose);
5017
5018 #if 0 /* NEW COMPOSE GUI */
5019                 if (ac->protocol == A_NNTP) {
5020                         GtkItemFactory *ifactory;
5021                         GtkWidget *menuitem;
5022
5023                         ifactory = gtk_item_factory_from_widget(compose->menubar);
5024                         menu_set_sensitive(ifactory,
5025                                            "/Message/Followup to", TRUE);
5026                         gtk_widget_show(compose->newsgroups_hbox);
5027                         gtk_widget_show(compose->newsgroups_entry);
5028                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5029                                                   1, 4);
5030
5031                         compose->use_to = FALSE;
5032                         compose->use_cc = FALSE;
5033
5034                         menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
5035                         gtk_check_menu_item_set_active
5036                                 (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
5037
5038                         menu_set_sensitive(ifactory,
5039                                            "/Message/To", TRUE);
5040                         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
5041                         gtk_check_menu_item_set_active
5042                                 (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
5043
5044                         gtk_widget_hide(compose->to_hbox);
5045                         gtk_widget_hide(compose->to_entry);
5046                         gtk_widget_hide(compose->cc_hbox);
5047                         gtk_widget_hide(compose->cc_entry);
5048                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5049                                                   0, 0);
5050                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5051                                                   3, 0);
5052                 }
5053                 else {
5054                         GtkItemFactory *ifactory;
5055                         GtkWidget *menuitem;
5056
5057                         ifactory = gtk_item_factory_from_widget(compose->menubar);
5058                         menu_set_sensitive(ifactory,
5059                                            "/Message/Followup to", FALSE);
5060                         gtk_entry_set_text(GTK_ENTRY(compose->newsgroups_entry), "");
5061                         gtk_widget_hide(compose->newsgroups_hbox);
5062                         gtk_widget_hide(compose->newsgroups_entry);
5063                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5064                                                   1, 0);
5065
5066                         compose->use_to = TRUE;
5067                         compose->use_cc = TRUE;
5068
5069                         menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
5070                         gtk_check_menu_item_set_active
5071                                 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
5072                         menu_set_sensitive(ifactory,
5073                                            "/Message/To", FALSE);
5074                         menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
5075                         gtk_check_menu_item_set_active
5076                                 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
5077                         gtk_widget_show(compose->to_hbox);
5078                         gtk_widget_show(compose->to_entry);
5079                         gtk_widget_show(compose->cc_hbox);
5080                         gtk_widget_show(compose->cc_entry);
5081
5082                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5083                                                   0, 4);
5084                         gtk_table_set_row_spacing(GTK_TABLE(compose->table),
5085                                                   3, 4);
5086                 }
5087                 gtk_widget_queue_resize(compose->table_vbox);
5088 #endif
5089 }
5090
5091 static void account_activated(GtkMenuItem *menuitem, gpointer data)
5092 {
5093         Compose *compose = (Compose *)data;
5094
5095         PrefsAccount *ac;
5096
5097         ac = (PrefsAccount *)gtk_object_get_user_data(GTK_OBJECT(menuitem));
5098         g_return_if_fail(ac != NULL);
5099
5100         if (ac != compose->account)
5101                 select_account(compose, ac);
5102 }
5103
5104 static void attach_selected(GtkCList *clist, gint row, gint column,
5105                             GdkEvent *event, gpointer data)
5106 {
5107         Compose *compose = (Compose *)data;
5108
5109         if (event && event->type == GDK_2BUTTON_PRESS)
5110                 compose_attach_property(compose);
5111 }
5112
5113 static void attach_button_pressed(GtkWidget *widget, GdkEventButton *event,
5114                                   gpointer data)
5115 {
5116         Compose *compose = (Compose *)data;
5117         GtkCList *clist = GTK_CLIST(compose->attach_clist);
5118         gint row, column;
5119
5120         if (!event) return;
5121
5122         if (event->button == 3) {
5123                 if ((clist->selection && !clist->selection->next) ||
5124                     !clist->selection) {
5125                         gtk_clist_unselect_all(clist);
5126                         if (gtk_clist_get_selection_info(clist,
5127                                                          event->x, event->y,
5128                                                          &row, &column)) {
5129                                 gtk_clist_select_row(clist, row, column);
5130                                 gtkut_clist_set_focus_row(clist, row);
5131                         }
5132                 }
5133                 gtk_menu_popup(GTK_MENU(compose->popupmenu), NULL, NULL,
5134                                NULL, NULL, event->button, event->time);
5135         }
5136 }
5137
5138 static void attach_key_pressed(GtkWidget *widget, GdkEventKey *event,
5139                                gpointer data)
5140 {
5141         Compose *compose = (Compose *)data;
5142
5143         if (!event) return;
5144
5145         switch (event->keyval) {
5146         case GDK_Delete:
5147                 compose_attach_remove_selected(compose);
5148                 break;
5149         }
5150 }
5151
5152 static void compose_send_cb(gpointer data, guint action, GtkWidget *widget)
5153 {
5154         Compose *compose = (Compose *)data;
5155         gint val;
5156
5157         val = compose_send(compose);
5158
5159         if (val == 0) gtk_widget_destroy(compose->window);
5160 }
5161
5162 static void compose_send_later_cb(gpointer data, guint action,
5163                                   GtkWidget *widget)
5164 {
5165         Compose *compose = (Compose *)data;
5166         gchar tmp[22];
5167         gboolean recipient_found;
5168         GSList *list;
5169
5170         if(!compose_check_for_valid_recipient(compose)) {
5171                 alertpanel_error(_("Recipient is not specified."));
5172                 return;
5173         }
5174
5175         g_snprintf(tmp, 22, "%s%ctmpmsg%d",
5176                    g_get_tmp_dir(), G_DIR_SEPARATOR, (gint)compose);
5177
5178         if (prefs_common.linewrap_at_send)
5179                 compose_wrap_line_all(compose);
5180
5181         if (compose_write_to_file(compose, tmp, FALSE) < 0 ||
5182             compose_queue(compose, tmp) < 0) {
5183                 alertpanel_error(_("Can't queue the message."));
5184                 return;
5185         }
5186
5187         if (prefs_common.savemsg) {
5188                 if (compose_save_to_outbox(compose, tmp) < 0)
5189                         alertpanel_error
5190                                 (_("Can't save the message to outbox."));
5191         }
5192
5193         if (unlink(tmp) < 0)
5194                 FILE_OP_ERROR(tmp, "unlink");
5195
5196         gtk_widget_destroy(compose->window);
5197 }
5198
5199 static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
5200 {
5201         Compose *compose = (Compose *)data;
5202         FolderItem *draft;
5203         gchar *tmp;
5204
5205         draft = folder_get_default_draft();
5206
5207         tmp = g_strdup_printf("%s%cdraft.%d", g_get_tmp_dir(),
5208                               G_DIR_SEPARATOR, (gint)compose);
5209
5210         if (compose_write_to_file(compose, tmp, TRUE) < 0) {
5211                 g_free(tmp);
5212                 return;
5213         }
5214
5215         folder_item_scan(draft);
5216         if (folder_item_add_msg(draft, tmp, TRUE) < 0) {
5217                 unlink(tmp);
5218                 g_free(tmp);
5219                 return;
5220         }
5221         g_free(tmp);
5222
5223         if (compose->mode == COMPOSE_REEDIT) {
5224                 compose_remove_reedit_target(compose);
5225                 if (compose->targetinfo &&
5226                     compose->targetinfo->folder != draft)
5227                         folderview_update_item(compose->targetinfo->folder,
5228                                                TRUE);
5229         }
5230
5231         folder_item_scan(draft);
5232         folderview_update_item(draft, TRUE);
5233
5234         gtk_widget_destroy(compose->window);
5235 }
5236
5237 static void compose_attach_cb(gpointer data, guint action, GtkWidget *widget)
5238 {
5239         Compose *compose = (Compose *)data;
5240         GList *file_list;
5241
5242         file_list = filesel_select_multiple_files(_("Select file"), NULL);
5243
5244         if (file_list) {
5245                 GList *tmp;
5246
5247                 for ( tmp = file_list; tmp; tmp = tmp->next) {
5248                         gchar *file = (gchar *) tmp->data;
5249                         compose_attach_append(compose, file, MIME_UNKNOWN);
5250                         g_free(file);
5251                 }
5252                 g_list_free(file_list);
5253         }               
5254 }
5255
5256 static void compose_insert_file_cb(gpointer data, guint action,
5257                                    GtkWidget *widget)
5258 {
5259         Compose *compose = (Compose *)data;
5260         GList *file_list;
5261
5262         file_list = filesel_select_multiple_files(_("Select file"), NULL);
5263
5264         if (file_list) {
5265                 GList *tmp;
5266
5267                 for ( tmp = file_list; tmp; tmp = tmp->next) {
5268                         gchar *file = (gchar *) tmp->data;
5269                         compose_insert_file(compose, file);
5270                         g_free(file);
5271                 }
5272                 g_list_free(file_list);
5273         }
5274 }
5275
5276 static gint compose_delete_cb(GtkWidget *widget, GdkEventAny *event,
5277                               gpointer data)
5278 {
5279         compose_close_cb(data, 0, NULL);
5280         return TRUE;
5281 }
5282
5283 static void compose_close_cb(gpointer data, guint action, GtkWidget *widget)
5284 {
5285         Compose *compose = (Compose *)data;
5286         AlertValue val;
5287
5288         if (compose->exteditor_tag != -1) {
5289                 if (!compose_ext_editor_kill(compose))
5290                         return;
5291         }
5292
5293         if (compose->modified) {
5294                 val = alertpanel(_("Discard message"),
5295                                  _("This message has been modified. discard it?"),
5296                                  _("Discard"), _("to Draft"), _("Cancel"));
5297
5298                 switch (val) {
5299                 case G_ALERTDEFAULT:
5300                         break;
5301                 case G_ALERTALTERNATE:
5302                         compose_draft_cb(data, 0, NULL);
5303                         return;
5304                 default:
5305                         return;
5306                 }
5307         }
5308 #if USE_PSPELL
5309         if (compose->gtkpspell) {
5310                 gtkpspell_detach(compose->gtkpspell);
5311                 compose->gtkpspell = gtkpspell_delete(compose->gtkpspell);
5312         }
5313 #endif
5314         gtk_widget_destroy(compose->window);
5315 }
5316
5317 static void compose_address_cb(gpointer data, guint action, GtkWidget *widget)
5318 {
5319         Compose *compose = (Compose *)data;
5320
5321         addressbook_open(compose);
5322 }
5323
5324 static void compose_ext_editor_cb(gpointer data, guint action,
5325                                   GtkWidget *widget)
5326 {
5327         Compose *compose = (Compose *)data;
5328
5329         compose_exec_ext_editor(compose);
5330 }
5331
5332 static void compose_destroy_cb(GtkWidget *widget, Compose *compose)
5333 {
5334         compose_destroy(compose);
5335 }
5336
5337 static void compose_cut_cb(Compose *compose)
5338 {
5339         if (compose->focused_editable &&
5340             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
5341                 gtk_editable_cut_clipboard
5342                         (GTK_EDITABLE(compose->focused_editable));
5343 }
5344
5345 static void compose_copy_cb(Compose *compose)
5346 {
5347         if (compose->focused_editable &&
5348             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
5349                 gtk_editable_copy_clipboard
5350                         (GTK_EDITABLE(compose->focused_editable));
5351 }
5352
5353 static void compose_paste_cb(Compose *compose)
5354 {
5355         if (compose->focused_editable &&
5356             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
5357                 gtk_editable_paste_clipboard
5358                         (GTK_EDITABLE(compose->focused_editable));
5359 }
5360
5361 static void compose_allsel_cb(Compose *compose)
5362 {
5363         if (compose->focused_editable &&
5364             GTK_WIDGET_HAS_FOCUS(compose->focused_editable))
5365                 gtk_editable_select_region
5366                         (GTK_EDITABLE(compose->focused_editable), 0, -1);
5367 }
5368
5369 static void compose_grab_focus_cb(GtkWidget *widget, Compose *compose)
5370 {
5371         if (GTK_IS_EDITABLE(widget))
5372                 compose->focused_editable = widget;
5373 }
5374
5375 static void compose_changed_cb(GtkEditable *editable, Compose *compose)
5376 {
5377         if (compose->modified == FALSE) {
5378                 compose->modified = TRUE;
5379                 compose_set_title(compose);
5380         }
5381 }
5382
5383 static void compose_button_press_cb(GtkWidget *widget, GdkEventButton *event,
5384                                     Compose *compose)
5385 {
5386         gtk_stext_set_point(GTK_STEXT(widget),
5387                            gtk_editable_get_position(GTK_EDITABLE(widget)));
5388 }
5389
5390 #if 0
5391 static void compose_key_press_cb(GtkWidget *widget, GdkEventKey *event,
5392                                  Compose *compose)
5393 {
5394         gtk_stext_set_point(GTK_STEXT(widget),
5395                            gtk_editable_get_position(GTK_EDITABLE(widget)));
5396 }
5397 #endif
5398
5399 #if 0 /* NEW COMPOSE GUI */
5400 static void compose_toggle_to_cb(gpointer data, guint action,
5401                                  GtkWidget *widget)
5402 {
5403         Compose *compose = (Compose *)data;
5404
5405         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5406                 gtk_widget_show(compose->to_hbox);
5407                 gtk_widget_show(compose->to_entry);
5408                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
5409                 compose->use_to = TRUE;
5410         } else {
5411                 gtk_widget_hide(compose->to_hbox);
5412                 gtk_widget_hide(compose->to_entry);
5413                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 0);
5414                 gtk_widget_queue_resize(compose->table_vbox);
5415                 compose->use_to = FALSE;
5416         }
5417
5418         if (addressbook_get_target_compose() == compose)
5419                 addressbook_set_target_compose(compose);
5420 }
5421
5422 static void compose_toggle_cc_cb(gpointer data, guint action,
5423                                  GtkWidget *widget)
5424 {
5425         Compose *compose = (Compose *)data;
5426
5427         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5428                 gtk_widget_show(compose->cc_hbox);
5429                 gtk_widget_show(compose->cc_entry);
5430                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 3, 4);
5431                 compose->use_cc = TRUE;
5432         } else {
5433                 gtk_widget_hide(compose->cc_hbox);
5434                 gtk_widget_hide(compose->cc_entry);
5435                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 3, 0);
5436                 gtk_widget_queue_resize(compose->table_vbox);
5437                 compose->use_cc = FALSE;
5438         }
5439
5440         if (addressbook_get_target_compose() == compose)
5441                 addressbook_set_target_compose(compose);
5442 }
5443
5444 static void compose_toggle_bcc_cb(gpointer data, guint action,
5445                                   GtkWidget *widget)
5446 {
5447         Compose *compose = (Compose *)data;
5448
5449         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5450                 gtk_widget_show(compose->bcc_hbox);
5451                 gtk_widget_show(compose->bcc_entry);
5452                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 4, 4);
5453                 compose->use_bcc = TRUE;
5454         } else {
5455                 gtk_widget_hide(compose->bcc_hbox);
5456                 gtk_widget_hide(compose->bcc_entry);
5457                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 4, 0);
5458                 gtk_widget_queue_resize(compose->table_vbox);
5459                 compose->use_bcc = FALSE;
5460         }
5461
5462         if (addressbook_get_target_compose() == compose)
5463                 addressbook_set_target_compose(compose);
5464 }
5465
5466 static void compose_toggle_replyto_cb(gpointer data, guint action,
5467                                       GtkWidget *widget)
5468 {
5469         Compose *compose = (Compose *)data;
5470
5471         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5472                 gtk_widget_show(compose->reply_hbox);
5473                 gtk_widget_show(compose->reply_entry);
5474                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 5, 4);
5475                 compose->use_replyto = TRUE;
5476         } else {
5477                 gtk_widget_hide(compose->reply_hbox);
5478                 gtk_widget_hide(compose->reply_entry);
5479                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 5, 0);
5480                 gtk_widget_queue_resize(compose->table_vbox);
5481                 compose->use_replyto = FALSE;
5482         }
5483 }
5484
5485 static void compose_toggle_followupto_cb(gpointer data, guint action,
5486                                          GtkWidget *widget)
5487 {
5488         Compose *compose = (Compose *)data;
5489
5490         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5491                 gtk_widget_show(compose->followup_hbox);
5492                 gtk_widget_show(compose->followup_entry);
5493                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 6, 4);
5494                 compose->use_followupto = TRUE;
5495         } else {
5496                 gtk_widget_hide(compose->followup_hbox);
5497                 gtk_widget_hide(compose->followup_entry);
5498                 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 6, 0);
5499                 gtk_widget_queue_resize(compose->table_vbox);
5500                 compose->use_followupto = FALSE;
5501         }
5502 }
5503
5504 static void compose_toggle_attach_cb(gpointer data, guint action,
5505                                      GtkWidget *widget)
5506 {
5507         Compose *compose = (Compose *)data;
5508
5509         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5510                 gtk_widget_ref(compose->edit_vbox);
5511
5512                 gtk_container_remove(GTK_CONTAINER(compose->vbox2),
5513                                      compose->edit_vbox);
5514                 gtk_paned_add2(GTK_PANED(compose->paned), compose->edit_vbox);
5515                 gtk_box_pack_start(GTK_BOX(compose->vbox2), compose->paned,
5516                                    TRUE, TRUE, 0);
5517                 gtk_widget_show(compose->paned);
5518
5519                 gtk_widget_unref(compose->edit_vbox);
5520                 gtk_widget_unref(compose->paned);
5521
5522                 compose->use_attach = TRUE;
5523         } else {
5524                 gtk_widget_ref(compose->paned);
5525                 gtk_widget_ref(compose->edit_vbox);
5526
5527                 gtk_container_remove(GTK_CONTAINER(compose->vbox2),
5528                                      compose->paned);
5529                 gtk_container_remove(GTK_CONTAINER(compose->paned),
5530                                      compose->edit_vbox);
5531                 gtk_box_pack_start(GTK_BOX(compose->vbox2),
5532                                    compose->edit_vbox, TRUE, TRUE, 0);
5533
5534                 gtk_widget_unref(compose->edit_vbox);
5535
5536                 compose->use_attach = FALSE;
5537         }
5538 }
5539 #endif
5540
5541 #if USE_GPGME
5542 static void compose_toggle_sign_cb(gpointer data, guint action,
5543                                    GtkWidget *widget)
5544 {
5545         Compose *compose = (Compose *)data;
5546
5547         if (GTK_CHECK_MENU_ITEM(widget)->active)
5548                 compose->use_signing = TRUE;
5549         else
5550                 compose->use_signing = FALSE;
5551 }
5552
5553 static void compose_toggle_encrypt_cb(gpointer data, guint action,
5554                                       GtkWidget *widget)
5555 {
5556         Compose *compose = (Compose *)data;
5557
5558         if (GTK_CHECK_MENU_ITEM(widget)->active)
5559                 compose->use_encryption = TRUE;
5560         else
5561                 compose->use_encryption = FALSE;
5562 }
5563 #endif /* USE_GPGME */
5564
5565 static void compose_toggle_ruler_cb(gpointer data, guint action,
5566                                     GtkWidget *widget)
5567 {
5568         Compose *compose = (Compose *)data;
5569
5570         if (GTK_CHECK_MENU_ITEM(widget)->active) {
5571                 gtk_widget_show(compose->ruler_hbox);
5572                 prefs_common.show_ruler = TRUE;
5573         } else {
5574                 gtk_widget_hide(compose->ruler_hbox);
5575                 gtk_widget_queue_resize(compose->edit_vbox);
5576                 prefs_common.show_ruler = FALSE;
5577         }
5578 }
5579
5580 static void compose_attach_drag_received_cb (GtkWidget          *widget,
5581                                              GdkDragContext     *drag_context,
5582                                              gint                x,
5583                                              gint                y,
5584                                              GtkSelectionData   *data,
5585                                              guint               info,
5586                                              guint               time,
5587                                              gpointer            user_data)
5588 {
5589         Compose *compose = (Compose *)user_data;
5590         GList *list, *tmp;
5591
5592         list = uri_list_extract_filenames((const gchar *)data->data);
5593         for (tmp = list; tmp != NULL; tmp = tmp->next)
5594                 compose_attach_append(compose, (const gchar *)tmp->data,
5595                                       MIME_UNKNOWN);
5596         list_free_strings(list);
5597         g_list_free(list);
5598 }
5599
5600 static void compose_insert_drag_received_cb (GtkWidget          *widget,
5601                                              GdkDragContext     *drag_context,
5602                                              gint                x,
5603                                              gint                y,
5604                                              GtkSelectionData   *data,
5605                                              guint               info,
5606                                              guint               time,
5607                                              gpointer            user_data)
5608 {
5609         Compose *compose = (Compose *)user_data;
5610         GList *list, *tmp;
5611
5612         list = uri_list_extract_filenames((const gchar *)data->data);
5613         for (tmp = list; tmp != NULL; tmp = tmp->next)
5614                 compose_insert_file(compose, (const gchar *)tmp->data);
5615         list_free_strings(list);
5616         g_list_free(list);
5617 }
5618
5619 #if 0 /* NEW COMPOSE GUI */
5620 static void to_activated(GtkWidget *widget, Compose *compose)
5621 {
5622         if (GTK_WIDGET_VISIBLE(compose->newsgroups_entry))
5623                 gtk_widget_grab_focus(compose->newsgroups_entry);
5624         else
5625                 gtk_widget_grab_focus(compose->subject_entry);
5626 }
5627
5628 static void newsgroups_activated(GtkWidget *widget, Compose *compose)
5629 {
5630         gtk_widget_grab_focus(compose->subject_entry);
5631 }
5632
5633 static void subject_activated(GtkWidget *widget, Compose *compose)
5634 {
5635         if (GTK_WIDGET_VISIBLE(compose->cc_entry))
5636                 gtk_widget_grab_focus(compose->cc_entry);
5637         else if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
5638                 gtk_widget_grab_focus(compose->bcc_entry);
5639         else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
5640                 gtk_widget_grab_focus(compose->reply_entry);
5641         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
5642                 gtk_widget_grab_focus(compose->followup_entry);
5643         else
5644                 gtk_widget_grab_focus(compose->text);
5645 }
5646
5647 static void cc_activated(GtkWidget *widget, Compose *compose)
5648 {
5649         if (GTK_WIDGET_VISIBLE(compose->bcc_entry))
5650                 gtk_widget_grab_focus(compose->bcc_entry);
5651         else if (GTK_WIDGET_VISIBLE(compose->reply_entry))
5652                 gtk_widget_grab_focus(compose->reply_entry);
5653         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
5654                 gtk_widget_grab_focus(compose->followup_entry);
5655         else
5656                 gtk_widget_grab_focus(compose->text);
5657 }
5658
5659 static void bcc_activated(GtkWidget *widget, Compose *compose)
5660 {
5661         if (GTK_WIDGET_VISIBLE(compose->reply_entry))
5662                 gtk_widget_grab_focus(compose->reply_entry);
5663         else if (GTK_WIDGET_VISIBLE(compose->followup_entry))
5664                 gtk_widget_grab_focus(compose->followup_entry);
5665         else
5666                 gtk_widget_grab_focus(compose->text);
5667 }
5668
5669 static void replyto_activated(GtkWidget *widget, Compose *compose)
5670 {
5671         if (GTK_WIDGET_VISIBLE(compose->followup_entry))
5672                 gtk_widget_grab_focus(compose->followup_entry);
5673         else
5674                 gtk_widget_grab_focus(compose->text);
5675 }
5676
5677 static void followupto_activated(GtkWidget *widget, Compose *compose)
5678 {
5679         gtk_widget_grab_focus(compose->text);
5680 }
5681 #endif
5682
5683 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
5684                                              GtkWidget *widget)
5685 {
5686         Compose *compose = (Compose *)data;
5687
5688         if (GTK_CHECK_MENU_ITEM(widget)->active)
5689                 compose->return_receipt = TRUE;
5690         else
5691                 compose->return_receipt = FALSE;
5692 }
5693
5694 static gchar *compose_quote_fmt         (Compose        *compose,
5695                                          MsgInfo        *msginfo,
5696                                          const gchar    *fmt,
5697                                          const gchar    *qmark)
5698 {
5699         gchar * quote_str = NULL;
5700
5701         if (qmark != NULL) {
5702                 gchar * p;
5703
5704                 quote_fmt_init(msginfo, NULL);
5705                 quote_fmt_scan_string(qmark);
5706                 quote_fmtparse();
5707
5708                 p = quote_fmt_get_buffer();
5709                 if (p == NULL) {
5710                         alertpanel_error
5711                                 (_("Quote mark format error."));
5712                 }
5713                 else {
5714                         quote_str = alloca(strlen(p) + 1);
5715                         strcpy(quote_str, p);
5716                 }
5717         }
5718
5719         quote_fmt_init(msginfo, quote_str);
5720         quote_fmt_scan_string(fmt);
5721         quote_fmtparse();
5722
5723         if (quote_fmt_get_buffer() == NULL)
5724                 alertpanel_error
5725                         (_("Message reply/forward format error."));
5726
5727         return quote_fmt_get_buffer();
5728 }
5729
5730 static void template_apply_cb(gchar *s, gpointer data)
5731 {
5732         Compose *compose = (Compose*)data;
5733         GtkSText *text = GTK_STEXT(compose->text);
5734         gchar *quote_str;
5735         gchar *qmark;
5736         gchar *parsed_text;
5737         gchar *tmpl;
5738         gchar *old_tmpl = s;
5739
5740         if(!s) return;
5741         
5742         if(compose->replyinfo == NULL) {
5743                 gtk_stext_freeze(text);
5744                 gtk_stext_set_point(text, 0);
5745                 gtk_stext_forward_delete(text, gtk_stext_get_length(text));
5746                 gtk_stext_insert(text, NULL, NULL, NULL, s, -1);
5747                 gtk_stext_thaw(text);
5748                 g_free(old_tmpl);
5749                 return;
5750         }
5751
5752         parsed_text = g_new(gchar, strlen(s)*2 + 1);
5753         tmpl = parsed_text;
5754         while(*s) {
5755                 if (*s == '\n') {
5756                         *parsed_text++ = '\\';
5757                         *parsed_text++ = 'n';
5758                         s++;
5759                 } else {
5760                         *parsed_text++ = *s++;
5761                 }
5762         }
5763         *parsed_text = '\0';
5764
5765         if (prefs_common.quotemark && *prefs_common.quotemark)
5766                 qmark = prefs_common.quotemark;
5767         else
5768                 qmark = "> ";
5769
5770         quote_str = compose_quote_fmt(compose, compose->replyinfo, tmpl, qmark);
5771         if (quote_str != NULL) {
5772                 gtk_stext_freeze(text);
5773                 gtk_stext_set_point(text, 0);
5774                 gtk_stext_forward_delete(text, gtk_stext_get_length(text));
5775                 gtk_stext_insert(text, NULL, NULL, NULL, quote_str, -1);
5776                 gtk_stext_thaw(text);
5777         }
5778
5779         g_free(old_tmpl);
5780         g_free(tmpl);
5781 }
5782
5783 static void template_select_cb(gpointer data, guint action,
5784                                GtkWidget *widget)
5785 {
5786         template_select(&template_apply_cb, data);
5787 }
5788
5789 void compose_headerentry_key_press_event_cb(GtkWidget *entry, GdkEventKey *event, compose_headerentry *headerentry) {
5790         if((g_slist_length(headerentry->compose->header_list) > 0) &&
5791             ((headerentry->headernum + 1) != headerentry->compose->header_nextrow) &&
5792             !(event->state & GDK_MODIFIER_MASK) &&
5793             (event->keyval == GDK_BackSpace) &&
5794             (strlen(gtk_entry_get_text(GTK_ENTRY(entry))) == 0)) {
5795                 gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->combo);
5796                 gtk_container_remove(GTK_CONTAINER(headerentry->compose->header_table), headerentry->entry);
5797                 headerentry->compose->header_list = g_slist_remove(headerentry->compose->header_list, headerentry);
5798                 g_free(headerentry);
5799         }
5800 }
5801
5802 void compose_headerentry_changed_cb(GtkWidget *entry, compose_headerentry *headerentry) {
5803         if(strlen(gtk_entry_get_text(GTK_ENTRY(entry))) != 0) {
5804                 headerentry->compose->header_list = g_slist_append(headerentry->compose->header_list, headerentry);
5805                 compose_create_header_entry(headerentry->compose);
5806                 gtk_signal_disconnect_by_func(GTK_OBJECT(entry), GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
5807         }
5808 }