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