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