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