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