2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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.
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.
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.
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>
56 #include <sys/types.h>
60 /* #include <sys/utsname.h> */
66 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
73 #include "mainwindow.h"
76 #include "addressbook.h"
77 #include "folderview.h"
80 #include "stock_pixmap.h"
84 #include "customheader.h"
85 #include "prefs_common.h"
86 #include "prefs_account.h"
89 #include "procheader.h"
91 #include "statusbar.h"
98 #include "alertpanel.h"
99 #include "manage_window.h"
100 #include "gtkshruler.h"
102 #include "addr_compl.h"
103 #include "quote_fmt.h"
104 #include "template.h"
106 #include "foldersel.h"
107 #include "prefs_actions.h"
110 # include "rfc2015.h"
120 #define N_ATTACH_COLS 3
124 COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
125 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
126 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
127 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
128 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
129 COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
130 COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
131 COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
132 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
133 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
134 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
135 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
136 COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
137 COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
138 COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END
139 } ComposeCallGtkSTextAction;
143 PRIORITY_HIGHEST = 1,
150 #define B64_LINE_SIZE 57
151 #define B64_BUFFSIZE 77
153 #define MAX_REFERENCES_LEN 999
155 static GdkColor quote_color = {0, 0, 0, 0xbfff};
157 static GList *compose_list = NULL;
159 Compose *compose_generic_new (PrefsAccount *account,
163 static Compose *compose_create (PrefsAccount *account,
165 static void compose_toolbar_create (Compose *compose,
166 GtkWidget *container);
167 static GtkWidget *compose_account_option_menu_create
169 static void compose_set_template_menu (Compose *compose);
170 static void compose_template_apply (Compose *compose,
173 static void compose_destroy (Compose *compose);
175 static void compose_entries_set (Compose *compose,
176 const gchar *mailto);
177 static gint compose_parse_header (Compose *compose,
179 static gchar *compose_parse_references (const gchar *ref,
182 static gchar *compose_quote_fmt (Compose *compose,
188 static void compose_reply_set_entry (Compose *compose,
193 followup_and_reply_to);
194 static void compose_reedit_set_entry (Compose *compose,
196 static void compose_insert_sig (Compose *compose);
197 static void compose_insert_file (Compose *compose,
199 static void compose_attach_append (Compose *compose,
202 const gchar *content_type);
203 static void compose_attach_parts (Compose *compose,
205 static void compose_wrap_line (Compose *compose);
206 static void compose_wrap_line_all (Compose *compose);
207 static void compose_set_title (Compose *compose);
209 static PrefsAccount *compose_current_mail_account(void);
210 /* static gint compose_send (Compose *compose); */
211 static gboolean compose_check_for_valid_recipient
213 static gboolean compose_check_entries (Compose *compose,
214 gboolean check_subject);
215 static gint compose_write_to_file (Compose *compose,
218 static gint compose_write_body_to_file (Compose *compose,
220 static gint compose_remove_reedit_target (Compose *compose);
221 static gint compose_queue (Compose *compose,
224 static gint compose_queue_sub (Compose *compose,
227 gboolean check_subject);
228 static void compose_write_attach (Compose *compose,
230 static gint compose_write_headers (Compose *compose,
232 const gchar *charset,
233 EncodingType encoding,
236 static void compose_convert_header (gchar *dest,
240 static void compose_generate_msgid (Compose *compose,
244 static void compose_attach_info_free (AttachInfo *ainfo);
245 static void compose_attach_remove_selected (Compose *compose);
247 static void compose_attach_property (Compose *compose);
248 static void compose_attach_property_create (gboolean *cancelled);
249 static void attach_property_ok (GtkWidget *widget,
250 gboolean *cancelled);
251 static void attach_property_cancel (GtkWidget *widget,
252 gboolean *cancelled);
253 static gint attach_property_delete_event (GtkWidget *widget,
255 gboolean *cancelled);
256 static void attach_property_key_pressed (GtkWidget *widget,
258 gboolean *cancelled);
260 static void compose_exec_ext_editor (Compose *compose);
261 static gint compose_exec_ext_editor_real (const gchar *file);
262 static gboolean compose_ext_editor_kill (Compose *compose);
263 static void compose_input_cb (gpointer data,
265 GdkInputCondition condition);
266 static void compose_set_ext_editor_sensitive (Compose *compose,
269 static void compose_undo_state_changed (UndoMain *undostruct,
274 static gint calc_cursor_xpos (GtkSText *text,
278 static void compose_create_header_entry (Compose *compose);
279 static void compose_add_header_entry (Compose *compose, gchar *header, gchar *text);
280 static void compose_update_priority_menu_item(Compose * compose);
282 /* callback functions */
284 static gboolean compose_edit_size_alloc (GtkEditable *widget,
285 GtkAllocation *allocation,
286 GtkSHRuler *shruler);
288 static void toolbar_send_cb (GtkWidget *widget,
290 static void toolbar_send_later_cb (GtkWidget *widget,
292 static void toolbar_draft_cb (GtkWidget *widget,
294 static void toolbar_insert_cb (GtkWidget *widget,
296 static void toolbar_attach_cb (GtkWidget *widget,
298 static void toolbar_sig_cb (GtkWidget *widget,
300 static void toolbar_ext_editor_cb (GtkWidget *widget,
302 static void toolbar_linewrap_cb (GtkWidget *widget,
304 static void toolbar_address_cb (GtkWidget *widget,
307 static void select_account (Compose *compose,
310 static void account_activated (GtkMenuItem *menuitem,
313 static void attach_selected (GtkCList *clist,
318 static void attach_button_pressed (GtkWidget *widget,
319 GdkEventButton *event,
321 static void attach_key_pressed (GtkWidget *widget,
325 static void compose_send_cb (gpointer data,
328 static void compose_send_later_cb (gpointer data,
332 static void compose_draft_cb (gpointer data,
336 static void compose_attach_cb (gpointer data,
339 static void compose_insert_file_cb (gpointer data,
343 static void compose_close_cb (gpointer data,
347 static void compose_address_cb (gpointer data,
350 static void compose_template_activate_cb(GtkWidget *widget,
353 static void compose_ext_editor_cb (gpointer data,
357 static gint compose_delete_cb (GtkWidget *widget,
360 static void compose_destroy_cb (GtkWidget *widget,
363 static void compose_undo_cb (Compose *compose);
364 static void compose_redo_cb (Compose *compose);
365 static void compose_cut_cb (Compose *compose);
366 static void compose_copy_cb (Compose *compose);
367 static void compose_paste_cb (Compose *compose);
368 static void compose_allsel_cb (Compose *compose);
370 static void compose_gtk_stext_action_cb (Compose *compose,
371 ComposeCallGtkSTextAction action);
373 static void compose_grab_focus_cb (GtkWidget *widget,
376 static void compose_changed_cb (GtkEditable *editable,
378 static void compose_button_press_cb (GtkWidget *widget,
379 GdkEventButton *event,
382 static void compose_key_press_cb (GtkWidget *widget,
388 static void compose_toggle_to_cb (gpointer data,
391 static void compose_toggle_cc_cb (gpointer data,
394 static void compose_toggle_bcc_cb (gpointer data,
397 static void compose_toggle_replyto_cb (gpointer data,
400 static void compose_toggle_followupto_cb(gpointer data,
403 static void compose_toggle_attach_cb (gpointer data,
407 static void compose_toggle_ruler_cb (gpointer data,
411 static void compose_toggle_sign_cb (gpointer data,
414 static void compose_toggle_encrypt_cb (gpointer data,
418 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
420 static void compose_set_priority_cb (gpointer data,
424 static void compose_attach_drag_received_cb (GtkWidget *widget,
425 GdkDragContext *drag_context,
428 GtkSelectionData *data,
432 static void compose_insert_drag_received_cb (GtkWidget *widget,
433 GdkDragContext *drag_context,
436 GtkSelectionData *data,
442 static void to_activated (GtkWidget *widget,
444 static void newsgroups_activated (GtkWidget *widget,
446 static void subject_activated (GtkWidget *widget,
448 static void cc_activated (GtkWidget *widget,
450 static void bcc_activated (GtkWidget *widget,
452 static void replyto_activated (GtkWidget *widget,
454 static void followupto_activated (GtkWidget *widget,
458 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
460 gboolean ignore_replyto,
461 gboolean followup_and_reply_to,
464 void compose_headerentry_changed_cb (GtkWidget *entry,
465 ComposeHeaderEntry *headerentry);
466 void compose_headerentry_key_press_event_cb(GtkWidget *entry,
468 ComposeHeaderEntry *headerentry);
470 static void compose_show_first_last_header (Compose *compose, gboolean show_first);
473 static void compose_check_all (Compose *compose);
474 static void compose_highlight_all (Compose *compose);
475 static void compose_check_backwards (Compose *compose);
476 static void compose_check_forwards_go (Compose *compose);
479 static gboolean compose_send_control_enter (Compose *compose);
480 static void text_activated (GtkWidget *widget,
483 static GtkItemFactoryEntry compose_popup_entries[] =
485 {N_("/_Add..."), NULL, compose_attach_cb, 0, NULL},
486 {N_("/_Remove"), NULL, compose_attach_remove_selected, 0, NULL},
487 {N_("/---"), NULL, NULL, 0, "<Separator>"},
488 {N_("/_Property..."), NULL, compose_attach_property, 0, NULL}
491 static GtkItemFactoryEntry compose_entries[] =
493 {N_("/_File"), NULL, NULL, 0, "<Branch>"},
494 {N_("/_File/_Attach file"), "<control>M", compose_attach_cb, 0, NULL},
495 {N_("/_File/_Insert file"), "<control>I", compose_insert_file_cb, 0, NULL},
496 {N_("/_File/Insert si_gnature"), "<control>G", compose_insert_sig, 0, NULL},
497 {N_("/_File/---"), NULL, NULL, 0, "<Separator>"},
498 {N_("/_File/_Close"), "<control>W", compose_close_cb, 0, NULL},
500 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
501 {N_("/_Edit/_Undo"), "<control>Z", compose_undo_cb, 0, NULL},
502 {N_("/_Edit/_Redo"), "<control>Y", compose_redo_cb, 0, NULL},
503 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
504 {N_("/_Edit/Cu_t"), "<control>X", compose_cut_cb, 0, NULL},
505 {N_("/_Edit/_Copy"), "<control>C", compose_copy_cb, 0, NULL},
506 {N_("/_Edit/_Paste"), "<control>V", compose_paste_cb, 0, NULL},
507 {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
508 {N_("/_Edit/A_dvanced"), NULL, NULL, 0, "<Branch>"},
509 {N_("/_Edit/A_dvanced/Move a character backward"),
511 compose_gtk_stext_action_cb,
512 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
514 {N_("/_Edit/A_dvanced/Move a character forward"),
516 compose_gtk_stext_action_cb,
517 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
519 {N_("/_Edit/A_dvanced/Move a word backward"),
521 compose_gtk_stext_action_cb,
522 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
524 {N_("/_Edit/A_dvanced/Move a word forward"),
526 compose_gtk_stext_action_cb,
527 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
529 {N_("/_Edit/A_dvanced/Move to beginning of line"),
530 NULL, /* "<control>A" */
531 compose_gtk_stext_action_cb,
532 COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
534 {N_("/_Edit/A_dvanced/Move to end of line"),
536 compose_gtk_stext_action_cb,
537 COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
539 {N_("/_Edit/A_dvanced/Move to previous line"),
541 compose_gtk_stext_action_cb,
542 COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
544 {N_("/_Edit/A_dvanced/Move to next line"),
546 compose_gtk_stext_action_cb,
547 COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
549 {N_("/_Edit/A_dvanced/Delete a character backward"),
551 compose_gtk_stext_action_cb,
552 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
554 {N_("/_Edit/A_dvanced/Delete a character forward"),
556 compose_gtk_stext_action_cb,
557 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
559 {N_("/_Edit/A_dvanced/Delete a word backward"),
560 NULL, /* "<control>W" */
561 compose_gtk_stext_action_cb,
562 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
564 {N_("/_Edit/A_dvanced/Delete a word forward"),
565 NULL, /* "<alt>D", */
566 compose_gtk_stext_action_cb,
567 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
569 {N_("/_Edit/A_dvanced/Delete line"),
571 compose_gtk_stext_action_cb,
572 COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
574 {N_("/_Edit/A_dvanced/Delete entire line"),
576 compose_gtk_stext_action_cb,
577 COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
579 {N_("/_Edit/A_dvanced/Delete to end of line"),
581 compose_gtk_stext_action_cb,
582 COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END,
584 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
585 {N_("/_Edit/_Wrap current paragraph"),
586 "<control>L", compose_wrap_line, 0, NULL},
587 {N_("/_Edit/Wrap all long _lines"),
588 "<control><alt>L", compose_wrap_line_all, 0, NULL},
589 {N_("/_Edit/Edit with e_xternal editor"),
590 "<shift><control>X", compose_ext_editor_cb, 0, NULL},
592 {N_("/_Spelling"), NULL, NULL, 0, "<Branch>"},
593 {N_("/_Spelling/_Check all or check selection"),
594 NULL, compose_check_all, 0, NULL},
595 {N_("/_Spelling/_Highlight all misspelled words"),
596 NULL, compose_highlight_all, 0, NULL},
597 {N_("/_Spelling/Check _backwards misspelled word"),
598 NULL, compose_check_backwards , 0, NULL},
599 {N_("/_Spelling/_Forward to next misspelled word"),
600 NULL, compose_check_forwards_go, 0, NULL},
601 {N_("/_Spelling/---"), NULL, NULL, 0, "<Separator>"},
602 {N_("/_Spelling/_Spelling Configuration"),
603 NULL, NULL, 0, "<Branch>"},
605 #if 0 /* NEW COMPOSE GUI */
606 {N_("/_View"), NULL, NULL, 0, "<Branch>"},
607 {N_("/_View/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
608 {N_("/_View/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
609 {N_("/_View/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
610 {N_("/_View/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
611 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
612 {N_("/_View/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
613 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
614 {N_("/_View/R_uler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
615 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
616 {N_("/_View/_Attachment"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
618 {N_("/_Message"), NULL, NULL, 0, "<Branch>"},
619 {N_("/_Message/_Send"), "<control>Return",
620 compose_send_cb, 0, NULL},
621 {N_("/_Message/Send _later"), "<shift><control>S",
622 compose_send_later_cb, 0, NULL},
623 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
624 {N_("/_Message/Save to _draft folder"),
625 "<shift><control>D", compose_draft_cb, 0, NULL},
626 {N_("/_Message/Save and _keep editing"),
627 "<control>S", compose_draft_cb, 1, NULL},
628 #if 0 /* NEW COMPOSE GUI */
629 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
630 {N_("/_Message/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
631 {N_("/_Message/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
632 {N_("/_Message/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
633 {N_("/_Message/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
634 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
635 {N_("/_Message/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
636 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
637 {N_("/_Message/_Attach"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
640 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
641 {N_("/_Message/Si_gn"), NULL, compose_toggle_sign_cb , 0, "<ToggleItem>"},
642 {N_("/_Message/_Encrypt"), NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
643 #endif /* USE_GPGME */
644 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
645 {N_("/_Message/Priority"), NULL, NULL, 0, "<Branch>"},
646 {N_("/_Message/Priority/Highest"), NULL, compose_set_priority_cb, PRIORITY_HIGHEST, "<RadioItem>"},
647 {N_("/_Message/Priority/High"), NULL, compose_set_priority_cb, PRIORITY_HIGH, "/Message/Priority/Highest"},
648 {N_("/_Message/Priority/Normal"), NULL, compose_set_priority_cb, PRIORITY_NORMAL, "/Message/Priority/Highest"},
649 {N_("/_Message/Priority/Low"), NULL, compose_set_priority_cb, PRIORITY_LOW, "/Message/Priority/Highest"},
650 {N_("/_Message/Priority/Lowest"), NULL, compose_set_priority_cb, PRIORITY_LOWEST, "/Message/Priority/Highest"},
651 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
652 {N_("/_Message/_Request Return Receipt"), NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
653 {N_("/_Tools"), NULL, NULL, 0, "<Branch>"},
654 {N_("/_Tools/Show _ruler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
655 {N_("/_Tools/_Address book"), "<shift><control>A", compose_address_cb , 0, NULL},
656 {N_("/_Tools/_Template"), NULL, NULL, 0, "<Branch>"},
657 {N_("/_Tools/Actio_ns"), NULL, NULL, 0, "<Branch>"},
658 {N_("/_Help"), NULL, NULL, 0, "<Branch>"},
659 {N_("/_Help/_About"), NULL, about_show, 0, NULL}
662 static GtkTargetEntry compose_mime_types[] =
664 {"text/uri-list", 0, 0}
667 Compose *compose_new(PrefsAccount *account)
669 return compose_generic_new(account, NULL, NULL);
672 Compose *compose_bounce(PrefsAccount *account, MsgInfo *msginfo)
676 GtkItemFactory *ifactory;
678 c = compose_generic_new(account, NULL, NULL);
680 filename = procmsg_get_message_file(msginfo);
681 if (filename == NULL)
684 c->bounce_filename = filename;
686 if (msginfo->subject)
687 gtk_entry_set_text(GTK_ENTRY(c->subject_entry),
689 gtk_editable_set_editable(GTK_EDITABLE(c->subject_entry), FALSE);
691 compose_quote_fmt(c, msginfo, "%M", NULL, NULL);
692 gtk_editable_set_editable(GTK_EDITABLE(c->text), FALSE);
694 ifactory = gtk_item_factory_from_widget(c->popupmenu);
695 menu_set_sensitive(ifactory, "/Add...", FALSE);
696 menu_set_sensitive(ifactory, "/Remove", FALSE);
697 menu_set_sensitive(ifactory, "/Property...", FALSE);
699 ifactory = gtk_item_factory_from_widget(c->menubar);
700 menu_set_sensitive(ifactory, "/File/Insert file", FALSE);
701 menu_set_sensitive(ifactory, "/File/Attach file", FALSE);
702 menu_set_sensitive(ifactory, "/File/Insert signature", FALSE);
703 menu_set_sensitive(ifactory, "/Edit/Paste", FALSE);
704 menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", FALSE);
705 menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", FALSE);
706 menu_set_sensitive(ifactory, "/Edit/Edit with external editor", FALSE);
707 menu_set_sensitive(ifactory, "/Message/Attach", FALSE);
709 menu_set_sensitive(ifactory, "/Message/Sign", FALSE);
710 menu_set_sensitive(ifactory, "/Message/Encrypt", FALSE);
712 menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
713 menu_set_sensitive(ifactory, "/Tools/Template", FALSE);
715 gtk_widget_set_sensitive(c->insert_btn, FALSE);
716 gtk_widget_set_sensitive(c->attach_btn, FALSE);
717 gtk_widget_set_sensitive(c->sig_btn, FALSE);
718 gtk_widget_set_sensitive(c->exteditor_btn, FALSE);
719 gtk_widget_set_sensitive(c->linewrap_btn, FALSE);
724 Compose *compose_new_with_recipient(PrefsAccount *account, const gchar *mailto)
726 return compose_generic_new(account, mailto, NULL);
729 Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
731 return compose_generic_new(account, NULL, item);
734 Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item)
738 if (item && item->prefs && item->prefs->enable_default_account)
739 account = account_find_from_id(item->prefs->default_account);
741 if (!account) account = cur_account;
742 g_return_val_if_fail(account != NULL, NULL);
744 compose = compose_create(account, COMPOSE_NEW);
745 compose->replyinfo = NULL;
747 if (prefs_common.auto_sig)
748 compose_insert_sig(compose);
749 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
750 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
752 if (account->protocol != A_NNTP) {
754 compose_entries_set(compose, mailto);
756 } else if(item && item->prefs->enable_default_to) {
757 compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
759 if (item && item->ret_rcpt) {
760 GtkItemFactory *ifactory;
762 ifactory = gtk_item_factory_from_widget(compose->menubar);
763 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
767 compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
770 compose_show_first_last_header(compose, TRUE);
772 /* Set save folder */
773 if(item && item->prefs && item->prefs->save_copy_to_folder) {
774 gchar *folderidentifier;
776 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), prefs_common.savemsg);
777 folderidentifier = folder_item_get_identifier(item);
778 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
779 g_free(folderidentifier);
782 gtk_widget_grab_focus(compose->header_last->entry);
784 if (prefs_common.auto_exteditor)
785 compose_exec_ext_editor(compose);
790 #define CHANGE_FLAGS(msginfo) \
792 if (msginfo->folder->folder->change_flags != NULL) \
793 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
799 Compose *compose_new_followup_and_replyto(PrefsAccount *account,
800 const gchar *followupto, gchar * to)
804 if (!account) account = cur_account;
805 g_return_val_if_fail(account != NULL, NULL);
806 g_return_val_if_fail(account->protocol != A_NNTP, NULL);
808 compose = compose_create(account, COMPOSE_NEW);
810 if (prefs_common.auto_sig)
811 compose_insert_sig(compose);
812 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
813 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
815 compose_entry_append(compose, to, COMPOSE_TO);
816 compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
817 gtk_widget_grab_focus(compose->subject_entry);
823 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
824 gboolean ignore_replyto, const gchar *body)
826 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE,
830 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
832 gboolean ignore_replyto,
835 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE,
839 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
841 gboolean ignore_replyto,
842 gboolean followup_and_reply_to,
846 PrefsAccount *account;
847 PrefsAccount *reply_account;
850 g_return_if_fail(msginfo != NULL);
851 g_return_if_fail(msginfo->folder != NULL);
854 /* select the account set in folderitem's property (if enabled) */
855 if (msginfo->folder->prefs && msginfo->folder->prefs->enable_default_account)
856 account = account_find_from_id(msginfo->folder->prefs->default_account);
858 /* select the account for the whole folder (IMAP / NNTP) */
860 /* FIXME: this is not right, because folder may be nested. we should
861 * ascend the tree until we find a parent with proper account
863 account = msginfo->folder->folder->account;
865 /* select account by to: and cc: header if enabled */
866 if (prefs_common.reply_account_autosel) {
867 if (!account && msginfo->to) {
869 Xstrdup_a(to, msginfo->to, return);
871 account = account_find_from_address(to);
875 if(!get_header_from_msginfo(msginfo, cc, sizeof(cc), "CC:")) { /* Found a CC header */
877 account = account_find_from_address(cc);
882 /* select current account */
883 if (!account) account = cur_account;
884 g_return_if_fail(account != NULL);
886 if (ignore_replyto && account->protocol == A_NNTP &&
887 !followup_and_reply_to) {
889 account_find_from_address(account->address);
891 reply_account = compose_current_mail_account();
895 reply_account = account;
897 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
898 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
899 if (MSG_IS_IMAP(msginfo->flags))
900 imap_msg_set_perm_flags(msginfo, MSG_REPLIED);
901 CHANGE_FLAGS(msginfo);
903 compose = compose_create(account, COMPOSE_REPLY);
904 compose->replyinfo = procmsg_msginfo_copy(msginfo);
906 #if 0 /* NEW COMPOSE GUI */
907 if (followup_and_reply_to) {
908 gtk_widget_show(compose->to_hbox);
909 gtk_widget_show(compose->to_entry);
910 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
911 compose->use_to = TRUE;
914 if (msginfo->folder && msginfo->folder->ret_rcpt) {
915 GtkItemFactory *ifactory;
917 ifactory = gtk_item_factory_from_widget(compose->menubar);
918 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
921 /* Set save folder */
922 if(msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
923 gchar *folderidentifier;
925 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
926 folderidentifier = folder_item_get_identifier(msginfo->folder);
927 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
928 g_free(folderidentifier);
931 if (compose_parse_header(compose, msginfo) < 0) return;
932 compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
933 followup_and_reply_to);
934 compose_show_first_last_header(compose, TRUE);
936 text = GTK_STEXT(compose->text);
937 gtk_stext_freeze(text);
943 if (prefs_common.quotemark && *prefs_common.quotemark)
944 qmark = prefs_common.quotemark;
948 quote_str = compose_quote_fmt(compose, msginfo,
949 prefs_common.quotefmt,
953 if (prefs_common.auto_sig)
954 compose_insert_sig(compose);
956 if (quote && prefs_common.linewrap_quote)
957 compose_wrap_line_all(compose);
959 gtk_editable_set_position(GTK_EDITABLE(text), 0);
960 gtk_stext_set_point(text, 0);
962 gtk_stext_thaw(text);
963 gtk_widget_grab_focus(compose->text);
965 if (prefs_common.auto_exteditor)
966 compose_exec_ext_editor(compose);
969 static void set_toolbar_style(Compose *compose);
971 static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
976 g_return_val_if_fail(mimeinfo != NULL, NULL);
978 base = mimeinfo->filename ? mimeinfo->filename
979 : mimeinfo->name ? mimeinfo->name : NULL;
981 if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
982 filename = g_strdup_printf("%s%smimetmp.%08x.html",
989 base = base ? base : "";
990 base = g_basename(base);
992 filename = g_strdup_printf("%s%smimetmp.%08x",
1000 filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
1006 static gchar *mime_extract_file(gchar *source, MimeInfo *partinfo)
1010 if (!partinfo) return NULL;
1012 filename = procmime_get_file_name(partinfo);
1014 if (procmime_get_part(filename, source, partinfo) < 0)
1016 (_("Can't get the part of multipart message."));
1023 #define INSERT_FW_HEADER(var, hdr) \
1024 if (msginfo->var && *msginfo->var) { \
1025 gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
1026 gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
1027 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
1030 Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
1031 gboolean as_attach, const gchar *body)
1034 /* PrefsAccount *account; */
1037 g_return_val_if_fail(msginfo != NULL, NULL);
1038 g_return_val_if_fail(msginfo->folder != NULL, NULL);
1040 account = msginfo->folder->folder->account;
1041 if (!account && msginfo->to && prefs_common.forward_account_autosel) {
1043 Xstrdup_a(to, msginfo->to, return NULL);
1044 extract_address(to);
1045 account = account_find_from_address(to);
1048 if(!account && prefs_common.forward_account_autosel) {
1050 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
1051 extract_address(cc);
1052 account = account_find_from_address(cc);
1056 if (account == NULL) {
1057 account = cur_account;
1059 account = msginfo->folder->folder->account;
1060 if (!account) account = cur_account;
1063 g_return_val_if_fail(account != NULL, NULL);
1065 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
1066 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
1067 if (MSG_IS_IMAP(msginfo->flags))
1068 imap_msg_unset_perm_flags(msginfo, MSG_REPLIED);
1069 CHANGE_FLAGS(msginfo);
1071 compose = compose_create(account, COMPOSE_FORWARD);
1073 if (msginfo->subject && *msginfo->subject) {
1074 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
1075 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
1079 text = GTK_STEXT(compose->text);
1080 gtk_stext_freeze(text);
1086 msgfile = procmsg_get_message_file_path(msginfo);
1087 if (!is_file_exist(msgfile))
1088 g_warning(_("%s: file not exist\n"), msgfile);
1090 compose_attach_append(compose, msgfile, msgfile,
1098 if (prefs_common.fw_quotemark &&
1099 *prefs_common.fw_quotemark)
1100 qmark = prefs_common.fw_quotemark;
1104 quote_str = compose_quote_fmt(compose, msginfo,
1105 prefs_common.fw_quotefmt,
1107 compose_attach_parts(compose, msginfo);
1110 if (prefs_common.auto_sig)
1111 compose_insert_sig(compose);
1113 if (prefs_common.linewrap_quote)
1114 compose_wrap_line_all(compose);
1116 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1117 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1119 gtk_stext_thaw(text);
1120 #if 0 /* NEW COMPOSE GUI */
1121 if (account->protocol != A_NNTP)
1122 gtk_widget_grab_focus(compose->to_entry);
1124 gtk_widget_grab_focus(compose->newsgroups_entry);
1126 gtk_widget_grab_focus(compose->header_last->entry);
1128 if (prefs_common.auto_exteditor)
1129 compose_exec_ext_editor(compose);
1134 #undef INSERT_FW_HEADER
1136 Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
1143 g_return_val_if_fail(msginfo_list != NULL, NULL);
1145 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1146 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1150 if (account == NULL) {
1151 account = cur_account;
1153 account = msginfo->folder->folder->account;
1154 if (!account) account = cur_account;
1157 g_return_val_if_fail(account != NULL, NULL);
1159 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1160 MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
1161 MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
1162 CHANGE_FLAGS(((MsgInfo *)msginfo->data));
1165 compose = compose_create(account, COMPOSE_FORWARD);
1167 text = GTK_STEXT(compose->text);
1168 gtk_stext_freeze(text);
1170 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1171 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1172 if (!is_file_exist(msgfile))
1173 g_warning(_("%s: file not exist\n"), msgfile);
1175 compose_attach_append(compose, msgfile, msgfile,
1180 if (prefs_common.auto_sig)
1181 compose_insert_sig(compose);
1183 if (prefs_common.linewrap_quote)
1184 compose_wrap_line_all(compose);
1186 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1187 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1189 gtk_stext_thaw(text);
1190 #if 0 /* NEW COMPOSE GUI */
1191 if (account->protocol != A_NNTP)
1192 gtk_widget_grab_focus(compose->to_entry);
1194 gtk_widget_grab_focus(compose->newsgroups_entry);
1200 void compose_reedit(MsgInfo *msginfo)
1203 PrefsAccount *account = NULL;
1206 gchar buf[BUFFSIZE];
1208 g_return_if_fail(msginfo != NULL);
1209 g_return_if_fail(msginfo->folder != NULL);
1211 if (msginfo->folder->stype == F_QUEUE) {
1212 gchar queueheader_buf[BUFFSIZE];
1215 /* Select Account from queue headers */
1216 if (!get_header_from_msginfo(msginfo, queueheader_buf,
1217 sizeof(queueheader_buf), "NAID:")) {
1218 id = atoi(&queueheader_buf[5]);
1219 account = account_find_from_id(id);
1221 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1222 sizeof(queueheader_buf), "MAID:")) {
1223 id = atoi(&queueheader_buf[5]);
1224 account = account_find_from_id(id);
1226 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1227 sizeof(queueheader_buf), "S:")) {
1228 account = account_find_from_address(queueheader_buf);
1231 account = msginfo->folder->folder->account;
1233 if (!account && prefs_common.reedit_account_autosel) {
1234 gchar from[BUFFSIZE];
1235 if (!get_header_from_msginfo(msginfo, from, sizeof(from), "FROM:")){
1236 extract_address(from);
1237 account = account_find_from_address(from);
1240 if (!account) account = cur_account;
1241 g_return_if_fail(account != NULL);
1243 compose = compose_create(account, COMPOSE_REEDIT);
1244 compose->targetinfo = procmsg_msginfo_copy(msginfo);
1246 if (msginfo->folder->stype == F_QUEUE) {
1247 gchar queueheader_buf[BUFFSIZE];
1249 /* Set message save folder */
1250 if (!get_header_from_msginfo(msginfo, queueheader_buf, sizeof(queueheader_buf), "SCF:")) {
1253 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1254 gtk_editable_delete_text(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
1255 gtk_editable_insert_text(GTK_EDITABLE(compose->savemsg_entry), &queueheader_buf[4], strlen(&queueheader_buf[4]), &startpos);
1259 if (compose_parse_header(compose, msginfo) < 0) return;
1260 compose_reedit_set_entry(compose, msginfo);
1262 text = GTK_STEXT(compose->text);
1263 gtk_stext_freeze(text);
1265 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1266 g_warning(_("Can't get text part\n"));
1268 while (fgets(buf, sizeof(buf), fp) != NULL)
1269 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1272 compose_attach_parts(compose, msginfo);
1274 gtk_stext_thaw(text);
1275 gtk_widget_grab_focus(compose->text);
1277 if (prefs_common.auto_exteditor)
1278 compose_exec_ext_editor(compose);
1281 GList *compose_get_compose_list(void)
1283 return compose_list;
1286 void compose_entry_append(Compose *compose, const gchar *address,
1287 ComposeEntryType type)
1293 if (!address || *address == '\0') return;
1295 #if 0 /* NEW COMPOSE GUI */
1298 entry = GTK_ENTRY(compose->cc_entry);
1301 entry = GTK_ENTRY(compose->bcc_entry);
1303 case COMPOSE_NEWSGROUPS:
1304 entry = GTK_ENTRY(compose->newsgroups_entry);
1308 entry = GTK_ENTRY(compose->to_entry);
1312 text = gtk_entry_get_text(entry);
1314 gtk_entry_append_text(entry, ", ");
1315 gtk_entry_append_text(entry, address);
1323 header = N_("Bcc:");
1325 case COMPOSE_REPLYTO:
1326 header = N_("Reply-To:");
1328 case COMPOSE_NEWSGROUPS:
1329 header = N_("Newsgroups:");
1331 case COMPOSE_FOLLOWUPTO:
1332 header = N_( "Followup-To:");
1339 header = prefs_common.trans_hdr ? gettext(header) : header;
1341 compose_add_header_entry(compose, header, (gchar *)address);
1344 static void compose_entries_set(Compose *compose, const gchar *mailto)
1346 gchar *subject = NULL;
1354 Xstrdup_a(tmp_mailto, mailto, return);
1358 p = strchr(tmp_mailto, '?');
1365 gchar *field, *value;
1382 if (*value == '\0') continue;
1384 if (!g_strcasecmp(field, "subject")) {
1385 Xalloca(subject, strlen(value) + 1, return);
1386 decode_uri(subject, value);
1387 } else if (!g_strcasecmp(field, "cc")) {
1389 } else if (!g_strcasecmp(field, "bcc")) {
1391 } else if (!g_strcasecmp(field, "body")) {
1392 Xalloca(body, strlen(value) + 1, return);
1393 decode_uri(body, value);
1398 compose_entry_append(compose, to, COMPOSE_TO);
1400 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
1402 compose_entry_append(compose, cc, COMPOSE_CC);
1404 compose_entry_append(compose, bcc, COMPOSE_BCC);
1406 gtk_stext_insert(GTK_STEXT(compose->text),
1407 NULL, NULL, NULL, body, -1);
1408 gtk_stext_insert(GTK_STEXT(compose->text),
1409 NULL, NULL, NULL, "\n", 1);
1413 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1415 static HeaderEntry hentry[] = {{"Reply-To:", NULL, TRUE},
1416 {"Cc:", NULL, FALSE},
1417 {"References:", NULL, FALSE},
1418 {"Bcc:", NULL, FALSE},
1419 {"Newsgroups:", NULL, FALSE},
1420 {"Followup-To:", NULL, FALSE},
1421 {"X-Mailing-List:", NULL, FALSE},
1422 {"X-BeenThere:", NULL, FALSE},
1423 {"X-Priority:", NULL, FALSE},
1424 {NULL, NULL, FALSE}};
1434 H_X_MAILING_LIST = 6,
1441 g_return_val_if_fail(msginfo != NULL, -1);
1443 if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1444 procheader_get_header_fields(fp, hentry);
1447 if (hentry[H_REPLY_TO].body != NULL) {
1448 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1449 compose->replyto = hentry[H_REPLY_TO].body;
1450 hentry[H_REPLY_TO].body = NULL;
1452 if (hentry[H_CC].body != NULL) {
1453 conv_unmime_header_overwrite(hentry[H_CC].body);
1454 compose->cc = hentry[H_CC].body;
1455 hentry[H_CC].body = NULL;
1457 if (hentry[H_X_MAILING_LIST].body != NULL) {
1458 /* this is good enough to parse debian-devel */
1459 gchar *buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
1460 g_return_val_if_fail(buf != NULL, -1 );
1461 if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
1462 compose->mailinglist = g_strdup(buf);
1464 g_free(hentry[H_X_MAILING_LIST].body);
1465 hentry[H_X_MAILING_LIST].body = NULL ;
1467 if (hentry[H_X_BEENTHERE].body != NULL) {
1468 /* this is good enough to parse the sylpheed-claws lists */
1469 gchar *buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
1470 g_return_val_if_fail(buf != NULL, -1 );
1471 if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
1472 compose->mailinglist = g_strdup(buf);
1474 g_free(hentry[H_X_BEENTHERE].body);
1475 hentry[H_X_BEENTHERE].body = NULL ;
1477 if (hentry[H_REFERENCES].body != NULL) {
1478 if (compose->mode == COMPOSE_REEDIT)
1479 compose->references = hentry[H_REFERENCES].body;
1481 compose->references = compose_parse_references
1482 (hentry[H_REFERENCES].body, msginfo->msgid);
1483 g_free(hentry[H_REFERENCES].body);
1485 hentry[H_REFERENCES].body = NULL;
1487 if (hentry[H_BCC].body != NULL) {
1488 if (compose->mode == COMPOSE_REEDIT) {
1489 conv_unmime_header_overwrite(hentry[H_BCC].body);
1490 compose->bcc = hentry[H_BCC].body;
1492 g_free(hentry[H_BCC].body);
1493 hentry[H_BCC].body = NULL;
1495 if (hentry[H_NEWSGROUPS].body != NULL) {
1496 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1497 hentry[H_NEWSGROUPS].body = NULL;
1499 if (hentry[H_FOLLOWUP_TO].body != NULL) {
1500 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1501 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1502 hentry[H_FOLLOWUP_TO].body = NULL;
1505 if (compose->mode == COMPOSE_REEDIT)
1506 if (hentry[H_X_PRIORITY].body != NULL) {
1509 priority = atoi(hentry[H_X_PRIORITY].body);
1510 g_free(hentry[H_X_PRIORITY].body);
1512 hentry[H_X_PRIORITY].body = NULL;
1514 if (priority < PRIORITY_HIGHEST ||
1515 priority > PRIORITY_LOWEST)
1516 priority = PRIORITY_NORMAL;
1518 compose->priority = priority;
1521 if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1522 compose->inreplyto = g_strdup(msginfo->inreplyto);
1523 else if (compose->mode != COMPOSE_REEDIT &&
1524 msginfo->msgid && *msginfo->msgid) {
1525 compose->inreplyto = g_strdup(msginfo->msgid);
1527 if (!compose->references) {
1528 if (msginfo->inreplyto && *msginfo->inreplyto)
1529 compose->references =
1530 g_strdup_printf("<%s>\n\t<%s>",
1534 compose->references =
1535 g_strconcat("<", msginfo->msgid, ">",
1543 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1545 GSList *ref_id_list, *cur;
1549 ref_id_list = references_list_append(NULL, ref);
1550 if (!ref_id_list) return NULL;
1551 if (msgid && *msgid)
1552 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1557 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1558 /* "<" + Message-ID + ">" + CR+LF+TAB */
1559 len += strlen((gchar *)cur->data) + 5;
1561 if (len > MAX_REFERENCES_LEN) {
1562 /* remove second message-ID */
1563 if (ref_id_list && ref_id_list->next &&
1564 ref_id_list->next->next) {
1565 g_free(ref_id_list->next->data);
1566 ref_id_list = g_slist_remove
1567 (ref_id_list, ref_id_list->next->data);
1569 slist_free_strings(ref_id_list);
1570 g_slist_free(ref_id_list);
1577 new_ref = g_string_new("");
1578 for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1579 if (new_ref->len > 0)
1580 g_string_append(new_ref, "\n\t");
1581 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1584 slist_free_strings(ref_id_list);
1585 g_slist_free(ref_id_list);
1587 new_ref_str = new_ref->str;
1588 g_string_free(new_ref, FALSE);
1593 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
1594 const gchar *fmt, const gchar *qmark,
1597 GtkSText *text = GTK_STEXT(compose->text);
1598 gchar *quote_str = NULL;
1603 if (qmark != NULL) {
1604 quote_fmt_init(msginfo, NULL, NULL);
1605 quote_fmt_scan_string(qmark);
1608 buf = quote_fmt_get_buffer();
1610 alertpanel_error(_("Quote mark format error."));
1612 Xstrdup_a(quote_str, buf, return NULL)
1615 if (fmt && *fmt != '\0') {
1616 quote_fmt_init(msginfo, quote_str, body);
1617 quote_fmt_scan_string(fmt);
1620 buf = quote_fmt_get_buffer();
1622 alertpanel_error(_("Message reply/forward format error."));
1628 gtk_stext_freeze(text);
1630 for (p = buf; *p != '\0'; ) {
1631 lastp = strchr(p, '\n');
1632 len = lastp ? lastp - p + 1 : -1;
1633 gtk_stext_insert(text, NULL, NULL, NULL, p, len);
1640 gtk_stext_thaw(text);
1645 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1646 gboolean to_all, gboolean ignore_replyto,
1647 gboolean followup_and_reply_to)
1649 GSList *cc_list = NULL;
1652 gchar *replyto = NULL;
1653 GHashTable *to_table;
1655 g_return_if_fail(compose->account != NULL);
1656 g_return_if_fail(msginfo != NULL);
1658 if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
1659 compose_entry_append(compose,
1660 ((compose->replyto && !ignore_replyto)
1662 : (compose->mailinglist && !ignore_replyto)
1663 ? compose->mailinglist
1664 : msginfo->from ? msginfo->from : ""),
1667 if (compose->account->protocol == A_NNTP) {
1669 compose_entry_append
1670 (compose, msginfo->from ? msginfo->from : "",
1673 compose_entry_append
1675 compose->followup_to ? compose->followup_to
1676 : compose->newsgroups ? compose->newsgroups
1678 COMPOSE_NEWSGROUPS);
1681 if (msginfo->subject && *msginfo->subject) {
1682 gchar *buf, *buf2, *p;
1684 buf = g_strdup(msginfo->subject);
1685 while (!strncasecmp(buf, "Re:", 3)) {
1687 while (isspace(*p)) p++;
1688 memmove(buf, p, strlen(p) + 1);
1691 buf2 = g_strdup_printf("Re: %s", buf);
1692 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1696 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1698 if (!to_all || compose->account->protocol == A_NNTP) return;
1700 if (compose->replyto) {
1701 Xstrdup_a(replyto, compose->replyto, return);
1702 extract_address(replyto);
1704 if (msginfo->from) {
1705 Xstrdup_a(from, msginfo->from, return);
1706 extract_address(from);
1709 if (compose->mailinglist && from) {
1710 cc_list = address_list_append(cc_list, from);
1713 if (replyto && from)
1714 cc_list = address_list_append(cc_list, from);
1716 if (!compose->mailinglist)
1717 cc_list = address_list_append(cc_list, msginfo->to);
1719 cc_list = address_list_append(cc_list, compose->cc);
1721 to_table = g_hash_table_new(g_str_hash, g_str_equal);
1723 g_hash_table_insert(to_table, replyto, GINT_TO_POINTER(1));
1724 if (compose->account)
1725 g_hash_table_insert(to_table, compose->account->address,
1726 GINT_TO_POINTER(1));
1728 /* remove address on To: and that of current account */
1729 for (cur = cc_list; cur != NULL; ) {
1730 GSList *next = cur->next;
1732 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1733 cc_list = g_slist_remove(cc_list, cur->data);
1735 g_hash_table_insert(to_table, cur->data, cur);
1739 g_hash_table_destroy(to_table);
1742 for (cur = cc_list; cur != NULL; cur = cur->next)
1743 compose_entry_append(compose, (gchar *)cur->data,
1745 slist_free_strings(cc_list);
1746 g_slist_free(cc_list);
1750 #define SET_ENTRY(entry, str) \
1753 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1756 #define SET_ADDRESS(type, str) \
1759 compose_entry_append(compose, str, type); \
1762 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1764 g_return_if_fail(msginfo != NULL);
1766 SET_ENTRY(subject_entry, msginfo->subject);
1767 SET_ADDRESS(COMPOSE_TO, msginfo->to);
1768 SET_ADDRESS(COMPOSE_CC, compose->cc);
1769 SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1770 SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1772 compose_update_priority_menu_item(compose);
1774 compose_show_first_last_header(compose, TRUE);
1776 #if 0 /* NEW COMPOSE GUI */
1778 GtkItemFactory *ifactory;
1779 GtkWidget *menuitem;
1781 ifactory = gtk_item_factory_from_widget(compose->menubar);
1782 menuitem = gtk_item_factory_get_item(ifactory, "/View/Bcc");
1783 gtk_check_menu_item_set_active
1784 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1786 if (compose->replyto) {
1787 GtkItemFactory *ifactory;
1788 GtkWidget *menuitem;
1790 ifactory = gtk_item_factory_from_widget(compose->menubar);
1791 menuitem = gtk_item_factory_get_item
1792 (ifactory, "/View/Reply to");
1793 gtk_check_menu_item_set_active
1794 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1802 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1809 size_t buf_len = 128;
1811 if (strlen(sigfile) < 2)
1814 sigprg = popen(sigfile+1, "r");
1817 buf = g_malloc(buf_len);
1820 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1821 "Unable to insert signature (malloc failed)\n", -1);
1827 while (!feof(sigprg)) {
1828 bzero(buf, buf_len);
1829 fread(buf, buf_len-1, 1, sigprg);
1830 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1838 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1839 "Can't exec file: ", -1);
1840 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1845 static void compose_insert_sig(Compose *compose)
1849 if (compose->account && compose->account->sig_path)
1850 sigfile = g_strdup(compose->account->sig_path);
1852 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1853 DEFAULT_SIGNATURE, NULL);
1855 if (!is_file_or_fifo_exist(sigfile) && sigfile[0] != '|') {
1860 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1861 if (prefs_common.sig_sep) {
1862 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1863 prefs_common.sig_sep, -1);
1864 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1868 if (sigfile[0] == '|')
1869 compose_exec_sig(compose, sigfile);
1871 compose_insert_file(compose, sigfile);
1875 static void compose_insert_file(Compose *compose, const gchar *file)
1877 GtkSText *text = GTK_STEXT(compose->text);
1878 gchar buf[BUFFSIZE];
1882 g_return_if_fail(file != NULL);
1884 if ((fp = fopen(file, "rb")) == NULL) {
1885 FILE_OP_ERROR(file, "fopen");
1889 gtk_stext_freeze(text);
1891 while (fgets(buf, sizeof(buf), fp) != NULL) {
1892 /* strip <CR> if DOS/Windows file,
1893 replace <CR> with <LF> if Macintosh file. */
1896 if (len > 0 && buf[len - 1] != '\n') {
1898 if (buf[len] == '\r') buf[len] = '\n';
1900 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1903 gtk_stext_thaw(text);
1908 static void compose_attach_append(Compose *compose, const gchar *file,
1909 const gchar *filename,
1910 const gchar *content_type)
1913 gchar *text[N_ATTACH_COLS];
1918 if (!is_file_exist(file)) {
1919 g_warning(_("File %s doesn't exist\n"), file);
1922 if ((size = get_file_size(file)) < 0) {
1923 g_warning(_("Can't get file size of %s\n"), file);
1927 alertpanel_notice(_("File %s is empty."), file);
1930 if ((fp = fopen(file, "rb")) == NULL) {
1931 alertpanel_error(_("Can't read %s."), file);
1936 #if 0 /* NEW COMPOSE GUI */
1937 if (!compose->use_attach) {
1938 GtkItemFactory *ifactory;
1939 GtkWidget *menuitem;
1941 ifactory = gtk_item_factory_from_widget(compose->menubar);
1942 menuitem = gtk_item_factory_get_item(ifactory,
1943 "/View/Attachment");
1944 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1948 ainfo = g_new0(AttachInfo, 1);
1949 ainfo->file = g_strdup(file);
1952 ainfo->content_type = g_strdup(content_type);
1953 if (!strcasecmp(content_type, "message/rfc822")) {
1954 ainfo->encoding = ENC_7BIT;
1955 ainfo->name = g_strdup_printf
1957 g_basename(filename ? filename : file));
1959 ainfo->encoding = ENC_BASE64;
1960 ainfo->name = g_strdup
1961 (g_basename(filename ? filename : file));
1964 ainfo->content_type = procmime_get_mime_type(file);
1965 if (!ainfo->content_type)
1966 ainfo->content_type =
1967 g_strdup("application/octet-stream");
1968 ainfo->encoding = ENC_BASE64;
1969 ainfo->name = g_strdup(g_basename(filename ? filename : file));
1973 text[COL_MIMETYPE] = ainfo->content_type;
1974 text[COL_SIZE] = to_human_readable(size);
1975 text[COL_NAME] = ainfo->name;
1977 row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1978 gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1981 #define IS_FIRST_PART_TEXT(info) \
1982 ((info->mime_type == MIME_TEXT || info->mime_type == MIME_TEXT_HTML || \
1983 info->mime_type == MIME_TEXT_ENRICHED) || \
1984 (info->mime_type == MIME_MULTIPART && info->content_type && \
1985 !strcasecmp(info->content_type, "multipart/alternative") && \
1986 (info->children && \
1987 (info->children->mime_type == MIME_TEXT || \
1988 info->children->mime_type == MIME_TEXT_HTML || \
1989 info->children->mime_type == MIME_TEXT_ENRICHED))))
1991 static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
1998 mimeinfo = procmime_scan_message(msginfo);
1999 if (!mimeinfo) return;
2001 /* skip first text (presumably message body) */
2002 child = mimeinfo->children;
2003 if (!child || IS_FIRST_PART_TEXT(mimeinfo)) {
2004 procmime_mimeinfo_free_all(mimeinfo);
2007 if (IS_FIRST_PART_TEXT(child))
2008 child = child->next;
2010 infile = procmsg_get_message_file_path(msginfo);
2012 while (child != NULL) {
2013 if (child->children || child->mime_type == MIME_MULTIPART) {
2014 child = procmime_mimeinfo_next(child);
2018 outfile = procmime_get_tmp_file_name(child);
2019 if (procmime_get_part(outfile, infile, child) < 0)
2020 g_warning(_("Can't get the part of multipart message."));
2022 compose_attach_append
2024 child->filename ? child->filename : child->name,
2025 child->content_type);
2027 child = child->next;
2031 procmime_mimeinfo_free_all(mimeinfo);
2034 #undef IS_FIRST_PART_TEXT
2036 #define GET_CHAR(pos, buf, len) \
2038 if (text->use_wchar) \
2039 len = wctomb(buf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
2041 buf[0] = GTK_STEXT_INDEX(text, (pos)); \
2046 #define INDENT_CHARS ">|#"
2047 #define SPACE_CHARS " \t"
2049 static void compose_wrap_line(Compose *compose)
2051 GtkSText *text = GTK_STEXT(compose->text);
2052 gint ch_len, last_ch_len;
2053 gchar cbuf[MB_LEN_MAX], last_ch;
2057 gint p_start, p_end;
2058 gint line_pos, cur_pos;
2059 gint line_len, cur_len;
2061 gtk_stext_freeze(text);
2063 text_len = gtk_stext_get_length(text);
2065 /* check to see if the point is on the paragraph mark (empty line). */
2066 cur_pos = gtk_stext_get_point(text);
2067 GET_CHAR(cur_pos, cbuf, ch_len);
2068 if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
2070 goto compose_end; /* on the paragraph mark */
2071 GET_CHAR(cur_pos - 1, cbuf, ch_len);
2072 if (ch_len == 1 && *cbuf == '\n')
2073 goto compose_end; /* on the paragraph mark */
2076 /* find paragraph start. */
2077 line_end = quoted = 0;
2078 for (p_start = cur_pos; p_start >= 0; --p_start) {
2079 GET_CHAR(p_start, cbuf, ch_len);
2080 if (ch_len == 1 && *cbuf == '\n') {
2082 goto compose_end; /* quoted part */
2090 && strchr(prefs_common.quote_chars, *cbuf))
2092 else if (ch_len != 1 || !isspace(*cbuf))
2101 /* find paragraph end. */
2103 for (p_end = cur_pos; p_end < text_len; p_end++) {
2104 GET_CHAR(p_end, cbuf, ch_len);
2105 if (ch_len == 1 && *cbuf == '\n') {
2112 if (line_end && ch_len == 1 &&
2113 strchr(prefs_common.quote_chars, *cbuf))
2114 goto compose_end; /* quoted part */
2119 if (p_end >= text_len)
2122 if (p_start >= p_end)
2125 line_len = cur_len = 0;
2129 for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2132 GET_CHAR(cur_pos, cbuf, ch_len);
2139 if (ch_len == 1 && isspace(*cbuf))
2142 if (ch_len == 1 && *cbuf == '\n') {
2144 if (last_ch_len == 1 && !isspace(last_ch)) {
2145 if (cur_pos + 1 < p_end) {
2146 GET_CHAR(cur_pos + 1, cbuf, ch_len);
2147 if (ch_len == 1 && !isspace(*cbuf))
2151 gtk_stext_set_point(text, cur_pos + 1);
2152 gtk_stext_backward_delete(text, 1);
2154 gtk_stext_set_point(text, cur_pos);
2155 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2165 last_ch_len = ch_len;
2169 line_pos = cur_pos + 1;
2170 line_len = cur_len + ch_len;
2173 if (cur_len + ch_len > prefs_common.linewrap_len &&
2177 GET_CHAR(line_pos - 1, cbuf, ch_len);
2178 if (ch_len == 1 && isspace(*cbuf)) {
2179 gtk_stext_set_point(text, line_pos);
2180 gtk_stext_backward_delete(text, 1);
2189 gtk_stext_set_point(text, line_pos);
2190 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2194 cur_len = cur_len - line_len + ch_len;
2200 line_pos = cur_pos + 1;
2201 line_len = cur_len + ch_len;
2207 gtk_stext_thaw(text);
2212 /* Darko: used when I debug wrapping */
2213 void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
2218 printf("%d [", pos);
2219 for (i = pos; i < tlen; i++) {
2220 ch = GTK_STEXT_INDEX(text, i);
2221 if (breakoncr && ch == '\n')
2231 WAIT_FOR_INDENT_CHAR,
2232 WAIT_FOR_INDENT_CHAR_OR_SPACE
2235 /* return indent length, we allow:
2236 > followed by spaces/tabs
2237 | followed by spaces/tabs
2238 uppercase characters immediately followed by >,
2239 and the repeating sequences of the above */
2240 /* return indent length */
2241 static guint get_indent_length(GtkSText *text, guint start_pos, guint text_len)
2244 guint i, ch_len, alnum_cnt = 0;
2245 IndentState state = WAIT_FOR_INDENT_CHAR;
2246 gchar cbuf[MB_LEN_MAX];
2250 for (i = start_pos; i < text_len; i++) {
2251 GET_CHAR(i, cbuf, ch_len);
2255 if (cbuf[0] == '\n')
2258 is_indent = strchr(prefs_common.quote_chars, cbuf[0]) ? TRUE : FALSE;
2259 is_space = strchr(SPACE_CHARS, cbuf[0]) ? TRUE : FALSE;
2262 case WAIT_FOR_SPACE:
2263 if (is_space == FALSE)
2265 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2267 case WAIT_FOR_INDENT_CHAR_OR_SPACE:
2268 if (is_indent == FALSE && is_space == FALSE &&
2271 if (is_space == TRUE) {
2273 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2274 } else if (is_indent == TRUE) {
2276 state = WAIT_FOR_SPACE;
2279 state = WAIT_FOR_INDENT_CHAR;
2282 case WAIT_FOR_INDENT_CHAR:
2283 if (is_indent == FALSE && !isupper(cbuf[0]))
2285 if (is_indent == TRUE) {
2287 && !strchr(prefs_common.quote_chars, cbuf[0]))
2290 state = WAIT_FOR_SPACE;
2301 if ((i_len > 0) && (state == WAIT_FOR_INDENT_CHAR))
2307 /* insert quotation string when line was wrapped */
2308 static guint ins_quote(GtkSText *text, guint indent_len,
2309 guint prev_line_pos, guint text_len,
2316 for (i = 0; i < indent_len; i++) {
2317 ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2318 gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2320 ins_len = indent_len;
2326 /* check if we should join the next line */
2327 static gboolean join_next_line(GtkSText *text, guint start_pos, guint tlen,
2330 guint indent_len, ch_len;
2331 gboolean do_join = FALSE;
2332 gchar cbuf[MB_LEN_MAX];
2334 indent_len = get_indent_length(text, start_pos, tlen);
2336 if ((indent_len > 0) && (indent_len == prev_ilen)) {
2337 GET_CHAR(start_pos + indent_len, cbuf, ch_len);
2338 if (ch_len > 0 && (cbuf[0] != '\n'))
2345 static void compose_wrap_line_all(Compose *compose)
2347 GtkSText *text = GTK_STEXT(compose->text);
2349 guint line_pos = 0, cur_pos = 0, p_pos = 0;
2350 gint line_len = 0, cur_len = 0;
2352 gboolean is_new_line = TRUE, do_delete = FALSE;
2354 gboolean linewrap_quote = TRUE;
2355 guint linewrap_len = prefs_common.linewrap_len;
2356 gchar *qfmt = prefs_common.quotemark;
2357 gchar cbuf[MB_LEN_MAX];
2359 gtk_stext_freeze(text);
2361 /* make text buffer contiguous */
2362 /* gtk_stext_compact_buffer(text); */
2364 tlen = gtk_stext_get_length(text);
2366 for (; cur_pos < tlen; cur_pos++) {
2367 /* mark position of new line - needed for quotation wrap */
2370 i_len = get_indent_length(text, cur_pos, tlen);
2372 is_new_line = FALSE;
2375 printf("new line i_len=%d p_pos=", i_len);
2376 dump_text(text, p_pos, tlen, 1);
2380 GET_CHAR(cur_pos, cbuf, ch_len);
2382 /* fix line length for tabs */
2383 if (ch_len == 1 && *cbuf == '\t') {
2384 guint tab_width = text->default_tab_width;
2385 guint tab_offset = line_len % tab_width;
2388 printf("found tab at pos=%d line_len=%d ", cur_pos,
2392 line_len += tab_width - tab_offset - 1;
2396 printf("new_len=%d\n", line_len);
2400 /* we have encountered line break */
2401 if (ch_len == 1 && *cbuf == '\n') {
2403 gchar cb[MB_CUR_MAX];
2405 /* should we join the next line */
2406 if ((i_len != cur_len) && do_delete &&
2407 join_next_line(text, cur_pos + 1, tlen, i_len))
2413 printf("found CR at %d do_del is %d next line is ",
2414 cur_pos, do_delete);
2415 dump_text(text, cur_pos + 1, tlen, 1);
2418 /* skip delete if it is continuous URL */
2419 if (do_delete && (line_pos - p_pos <= i_len) &&
2420 gtkut_stext_is_uri_string(text, line_pos, tlen))
2424 printf("l_len=%d wrap_len=%d do_del=%d\n",
2425 line_len, linewrap_len, do_delete);
2427 /* should we delete to perform smart wrapping */
2428 if (line_len < linewrap_len && do_delete) {
2429 /* get rid of newline */
2430 gtk_stext_set_point(text, cur_pos);
2431 gtk_stext_forward_delete(text, 1);
2434 /* if text starts with quote fmt or with
2435 indent string, delete them */
2438 ilen = gtkut_stext_str_compare_n
2439 (text, cur_pos, p_pos, i_len,
2442 gtk_stext_forward_delete
2448 GET_CHAR(cur_pos, cb, clen);
2450 /* insert space if it's alphanumeric */
2451 if ((cur_pos != line_pos) &&
2452 ((clen > 1) || isalnum(cb[0]))) {
2453 gtk_stext_insert(text, NULL, NULL,
2455 /* gtk_stext_compact_buffer(text); */
2459 /* and start over with current line */
2460 cur_pos = p_pos - 1;
2462 line_len = cur_len = 0;
2466 printf("after delete l_pos=");
2467 dump_text(text, line_pos, tlen, 1);
2472 /* mark new line beginning */
2473 line_pos = cur_pos + 1;
2474 line_len = cur_len = 0;
2485 /* possible line break */
2486 if (ch_len == 1 && isspace(*cbuf)) {
2487 line_pos = cur_pos + 1;
2488 line_len = cur_len + ch_len;
2491 /* are we over wrapping length set in preferences ? */
2492 if (cur_len + ch_len > linewrap_len) {
2496 printf("should wrap cur_pos=%d ", cur_pos);
2497 dump_text(text, p_pos, tlen, 1);
2498 dump_text(text, line_pos, tlen, 1);
2500 /* force wrapping if it is one long word but not URL */
2501 if (line_pos - p_pos <= i_len)
2502 if (!gtkut_stext_is_uri_string
2503 (text, line_pos, tlen))
2504 line_pos = cur_pos - 1;
2506 printf("new line_pos=%d\n", line_pos);
2509 GET_CHAR(line_pos - 1, cbuf, clen);
2511 /* if next character is space delete it */
2512 if (clen == 1 && isspace(*cbuf)) {
2513 if (p_pos + i_len != line_pos ||
2514 !gtkut_stext_is_uri_string
2515 (text, line_pos, tlen)) {
2516 gtk_stext_set_point(text, line_pos);
2517 gtk_stext_backward_delete(text, 1);
2526 /* if it is URL at beginning of line don't wrap */
2527 if (p_pos + i_len == line_pos &&
2528 gtkut_stext_is_uri_string(text, line_pos, tlen)) {
2530 printf("found URL at ");
2531 dump_text(text, line_pos, tlen, 1);
2537 gtk_stext_set_point(text, line_pos);
2538 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2539 /* gtk_stext_compact_buffer(text); */
2542 /* for loop will increase it */
2543 cur_pos = line_pos - 1;
2544 /* start over with current line */
2553 printf("after CR insert ");
2554 dump_text(text, line_pos, tlen, 1);
2555 dump_text(text, cur_pos, tlen, 1);
2558 /* should we insert quotation ? */
2559 if (linewrap_quote && i_len) {
2560 /* only if line is not already quoted */
2561 if (!gtkut_stext_str_compare
2562 (text, line_pos, tlen, qfmt)) {
2565 if (line_pos - p_pos > i_len) {
2567 (text, i_len, p_pos,
2570 /* gtk_stext_compact_buffer(text); */
2574 printf("after quote insert ");
2575 dump_text(text, line_pos, tlen, 1);
2583 line_pos = cur_pos + 1;
2584 line_len = cur_len + ch_len;
2586 /* advance to next character in buffer */
2590 gtk_stext_thaw(text);
2595 static void compose_set_title(Compose *compose)
2600 edited = compose->modified ? _(" [Edited]") : "";
2601 if (compose->account && compose->account->address)
2602 str = g_strdup_printf(_("%s - Compose message%s"),
2603 compose->account->address, edited);
2605 str = g_strdup_printf(_("Compose message%s"), edited);
2606 gtk_window_set_title(GTK_WINDOW(compose->window), str);
2611 * compose_current_mail_account:
2613 * Find a current mail account (the currently selected account, or the
2614 * default account, if a news account is currently selected). If a
2615 * mail account cannot be found, display an error message.
2617 * Return value: Mail account, or NULL if not found.
2619 static PrefsAccount *
2620 compose_current_mail_account(void)
2624 if (cur_account && cur_account->protocol != A_NNTP)
2627 ac = account_get_default();
2628 if (!ac || ac->protocol == A_NNTP) {
2629 alertpanel_error(_("Account for sending mail is not specified.\n"
2630 "Please select a mail account before sending."));
2637 gboolean compose_check_for_valid_recipient(Compose *compose) {
2638 gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
2639 gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
2640 gboolean recipient_found = FALSE;
2644 /* free to and newsgroup list */
2645 slist_free_strings(compose->to_list);
2646 g_slist_free(compose->to_list);
2647 compose->to_list = NULL;
2649 slist_free_strings(compose->newsgroup_list);
2650 g_slist_free(compose->newsgroup_list);
2651 compose->newsgroup_list = NULL;
2653 /* search header entries for to and newsgroup entries */
2654 for(list = compose->header_list; list; list = list->next) {
2657 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry));
2658 entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
2660 if(entry[0] != '\0') {
2661 for(strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
2662 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2663 compose->to_list = address_list_append(compose->to_list, entry);
2664 recipient_found = TRUE;
2667 for(strptr = recipient_headers_news; *strptr != NULL; strptr++) {
2668 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2669 compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
2670 recipient_found = TRUE;
2676 return recipient_found;
2679 static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
2683 if (compose_check_for_valid_recipient(compose) == FALSE) {
2684 alertpanel_error(_("Recipient is not specified."));
2688 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
2689 if (*str == '\0' && check_subject == TRUE) {
2692 aval = alertpanel(_("Send"),
2693 _("Subject is empty. Send it anyway?"),
2694 _("Yes"), _("No"), NULL);
2695 if (aval != G_ALERTDEFAULT)
2702 gint compose_send(Compose *compose)
2708 if (compose_check_entries(compose, TRUE) == FALSE)
2711 val = compose_queue(compose, &msgnum, &folder);
2713 alertpanel_error(_("Could not queue message for sending"));
2717 val = procmsg_send_message_queue(folder_item_fetch_msg(folder, msgnum));
2719 folder_item_remove_msg(folder, msgnum);
2720 folderview_update_item(folder, TRUE);
2725 #if 0 /* compose restructure */
2726 gint compose_send(Compose *compose)
2728 gchar tmp[MAXPATHLEN + 1];
2730 static gboolean lock = FALSE;
2734 g_return_val_if_fail(compose->account != NULL, -1);
2735 g_return_val_if_fail(compose->orig_account != NULL, -1);
2739 if (compose_check_entries(compose, TRUE) == FALSE) {
2744 /* write to temporary file */
2745 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%d",
2746 get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
2748 if (prefs_common.linewrap_at_send)
2749 compose_wrap_line_all(compose);
2751 if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2756 if (!compose->to_list && !compose->newsgroup_list) {
2757 g_warning(_("can't get recipient list."));
2763 if (compose->to_list) {
2766 #if 0 /* NEW COMPOSE GUI */
2767 if (compose->account->protocol != A_NNTP)
2768 ac = compose->account;
2769 else if (compose->orig_account->protocol != A_NNTP)
2770 ac = compose->orig_account;
2771 else if (cur_account && cur_account->protocol != A_NNTP)
2774 ac = compose_current_mail_account();
2782 ac = compose->account;
2784 ok = send_message(tmp, ac, compose->to_list);
2785 statusbar_pop_all();
2788 if (ok == 0 && compose->newsgroup_list) {
2791 if (compose->account->protocol == A_NNTP)
2792 folder = FOLDER(compose->account->folder);
2794 folder = FOLDER(compose->orig_account->folder);
2796 ok = news_post(folder, tmp);
2798 alertpanel_error(_("Error occurred while posting the message to %s ."),
2799 compose->account->nntp_server);
2806 /* queue message if failed to send */
2808 if (prefs_common.queue_msg) {
2813 _("Error occurred while sending the message.\n"
2814 "Put this message into queue folder?"),
2815 _("OK"), _("Cancel"), NULL);
2816 if (G_ALERTDEFAULT == val) {
2817 ok = compose_queue(compose, tmp);
2819 alertpanel_error(_("Can't queue the message."));
2822 alertpanel_error(_("Error occurred while sending the message."));
2824 if (compose->mode == COMPOSE_REEDIT) {
2825 compose_remove_reedit_target(compose);
2826 if (compose->targetinfo)
2827 folderview_update_item
2828 (compose->targetinfo->folder, TRUE);
2830 /* save message to outbox */
2831 if (prefs_common.savemsg) {
2834 outbox = account_get_special_folder
2835 (compose->account, F_OUTBOX);
2836 if (procmsg_save_to_outbox(outbox, tmp, FALSE) < 0)
2838 (_("Can't save the message to Sent."));
2840 folderview_update_item(outbox, TRUE);
2850 static gboolean compose_use_attach(Compose *compose) {
2851 return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2854 static gint compose_bounce_write_headers_from_headerlist(Compose *compose,
2857 gchar buf[BUFFSIZE];
2859 gboolean first_address;
2861 ComposeHeaderEntry *headerentry;
2862 gchar *headerentryname;
2863 gchar *header_w_colon;
2867 debug_print(_("Writing bounce header\n"));
2869 header_w_colon = g_strconcat("To:", NULL);
2870 to_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
2871 header_w_colon = g_strconcat("Cc:", NULL);
2872 cc_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
2874 first_address = TRUE;
2875 for(list = compose->header_list; list; list = list->next) {
2876 headerentry = ((ComposeHeaderEntry *)list->data);
2877 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
2879 if(g_strcasecmp(headerentryname, cc_hdr) == 0
2880 || g_strcasecmp(headerentryname, to_hdr) == 0) {
2881 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
2882 Xstrdup_a(str, str, return -1);
2884 if(str[0] != '\0') {
2885 compose_convert_header
2886 (buf, sizeof(buf), str,
2887 strlen("Resent-To") + 2);
2889 fprintf(fp, "Resent-To: ");
2890 first_address = FALSE;
2894 fprintf(fp, "%s", buf);
2898 /* if(!first_address) { */
2905 static gint compose_bounce_write_headers(Compose *compose, FILE *fp)
2907 gchar buf[BUFFSIZE];
2909 /* struct utsname utsbuf; */
2911 g_return_val_if_fail(fp != NULL, -1);
2912 g_return_val_if_fail(compose->account != NULL, -1);
2913 g_return_val_if_fail(compose->account->address != NULL, -1);
2916 get_rfc822_date(buf, sizeof(buf));
2917 fprintf(fp, "Resent-Date: %s\n", buf);
2920 if (compose->account->name && *compose->account->name) {
2921 compose_convert_header
2922 (buf, sizeof(buf), compose->account->name,
2924 fprintf(fp, "Resent-From: %s <%s>\n",
2925 buf, compose->account->address);
2927 fprintf(fp, "Resent-From: %s\n", compose->account->address);
2930 compose_bounce_write_headers_from_headerlist(compose, fp);
2932 /* separator between header and body */
2938 static gint compose_bounce_write_to_file(Compose *compose, const gchar *file)
2943 gchar buf[BUFFSIZE];
2945 if ((fp = fopen(compose->bounce_filename, "rb")) == NULL) {
2946 FILE_OP_ERROR(file, "fopen");
2950 if ((fdest = fopen(file, "wb")) == NULL) {
2951 FILE_OP_ERROR(file, "fopen");
2956 /* chmod for security */
2957 if (change_file_mode_rw(fdest, file) < 0) {
2958 FILE_OP_ERROR(file, "chmod");
2959 g_warning(_("can't change file mode\n"));
2962 while (procheader_get_unfolded_line(buf, sizeof(buf), fp)) {
2963 /* should filter returnpath, delivered-to */
2964 if ((g_strncasecmp(buf, "Return-Path:",
2965 strlen("Return-Path:")) == 0)
2966 || (g_strncasecmp(buf, "Delivered-To:",
2967 strlen("Delivered-To:")) == 0))
2970 if (fputs(buf, fdest) == -1)
2973 if (!prefs_common.bounce_keep_from) {
2974 if (g_strncasecmp(buf, "From:",
2975 strlen("From:")) == 0) {
2976 fputs(" (by way of ", fdest);
2977 if (compose->account->name
2978 && *compose->account->name) {
2979 compose_convert_header
2981 compose->account->name,
2983 fprintf(fdest, "%s <%s>",
2985 compose->account->address);
2987 fprintf(fdest, "%s",
2988 compose->account->address);
2993 if (fputs("\n", fdest) == -1)
2997 compose_bounce_write_headers(compose, fdest);
2999 while ((len = fread(buf, sizeof(gchar), BUFFSIZE, fp)) > 0) {
3000 if (fwrite(buf, sizeof(gchar), len, fdest) == -1)
3018 * interfaces to rfc2015 to keep out the prefs stuff there.
3019 * returns 0 on success and -1 on error. */
3020 static int compose_create_signers_list (Compose *compose, GSList **pkey_list)
3022 const char *keyid = NULL;
3025 switch (compose->account->sign_key) {
3026 case SIGN_KEY_DEFAULT:
3028 return 0; /* nothing to do */
3030 case SIGN_KEY_BY_FROM:
3031 keyid = compose->account->address;
3034 case SIGN_KEY_CUSTOM:
3035 keyid = compose->account->sign_key_id;
3039 g_assert_not_reached ();
3042 key_list = rfc2015_create_signers_list(keyid);
3045 alertpanel_error("Could not find any key associated with currently "
3046 "selected keyid `%s'!", keyid);
3050 *pkey_list = key_list;
3053 #endif /* USE_GPGME */
3055 static gint compose_write_to_file(Compose *compose, const gchar *file,
3062 const gchar *out_codeset;
3063 EncodingType encoding;
3065 if ((fp = fopen(file, "wb")) == NULL) {
3066 FILE_OP_ERROR(file, "fopen");
3070 /* chmod for security */
3071 if (change_file_mode_rw(fp, file) < 0) {
3072 FILE_OP_ERROR(file, "chmod");
3073 g_warning(_("can't change file mode\n"));
3076 /* get all composed text */
3077 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3078 len = strlen(chars);
3079 if (is_ascii_str(chars)) {
3080 buf = g_strdup(chars);
3081 out_codeset = CS_US_ASCII;
3082 encoding = ENC_7BIT;
3084 const gchar *src_codeset;
3086 out_codeset = conv_get_outgoing_charset_str();
3087 if (!strcasecmp(out_codeset, CS_US_ASCII))
3088 out_codeset = CS_ISO_8859_1;
3089 encoding = procmime_get_encoding_for_charset(out_codeset);
3091 src_codeset = conv_get_current_charset_str();
3092 /* if current encoding is US-ASCII, set it the same as
3093 outgoing one to prevent code conversion failure */
3094 if (!strcasecmp(src_codeset, CS_US_ASCII))
3095 src_codeset = out_codeset;
3097 debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
3098 src_codeset, out_codeset, procmime_get_encoding_str(encoding));
3100 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
3106 _("Can't convert the character encoding of the message.\n"
3107 "Send it anyway?"), _("Yes"), _("+No"), NULL);
3108 if (aval != G_ALERTDEFAULT) {
3114 buf = g_strdup(chars);
3121 if (compose_write_headers
3122 (compose, fp, out_codeset, encoding, is_draft) < 0) {
3123 g_warning(_("can't write headers\n"));
3130 if (compose_use_attach(compose)) {
3132 /* This prolog message is ignored by mime software and
3133 * because it would make our signing/encryption task
3134 * tougher, we don't emit it in that case */
3135 if (!compose->use_signing && !compose->use_encryption)
3137 fputs("This is a multi-part message in MIME format.\n", fp);
3139 fprintf(fp, "\n--%s\n", compose->boundary);
3140 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
3142 fprintf(fp, "Content-Transfer-Encoding: %s\n",
3143 procmime_get_encoding_str(encoding));
3149 if (encoding == ENC_BASE64) {
3150 gchar outbuf[B64_BUFFSIZE];
3153 for (i = 0; i < len; i += B64_LINE_SIZE) {
3154 l = MIN(B64_LINE_SIZE, len - i);
3155 to64frombits(outbuf, buf + i, l);
3159 } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
3160 FILE_OP_ERROR(file, "fwrite");
3168 if (compose_use_attach(compose))
3169 compose_write_attach(compose, fp);
3171 if (fclose(fp) == EOF) {
3172 FILE_OP_ERROR(file, "fclose");
3178 if (compose->use_signing) {
3181 if (compose_create_signers_list(compose, &key_list) == -1 ||
3182 rfc2015_sign(file, key_list) < 0) {
3188 if (compose->use_encryption) {
3189 if (rfc2015_encrypt(file, compose->to_list, compose->account->ascii_armored) < 0) {
3194 #endif /* USE_GPGME */
3199 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
3205 if ((fp = fopen(file, "wb")) == NULL) {
3206 FILE_OP_ERROR(file, "fopen");
3210 /* chmod for security */
3211 if (change_file_mode_rw(fp, file) < 0) {
3212 FILE_OP_ERROR(file, "chmod");
3213 g_warning(_("can't change file mode\n"));
3216 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3219 len = strlen(chars);
3220 if (fwrite(chars, sizeof(gchar), len, fp) != len) {
3221 FILE_OP_ERROR(file, "fwrite");
3230 if (fclose(fp) == EOF) {
3231 FILE_OP_ERROR(file, "fclose");
3238 static gint compose_remove_reedit_target(Compose *compose)
3241 MsgInfo *msginfo = compose->targetinfo;
3243 g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
3244 if (!msginfo) return -1;
3246 item = msginfo->folder;
3247 g_return_val_if_fail(item != NULL, -1);
3249 folder_item_scan(item);
3250 if (procmsg_msg_exist(msginfo) &&
3251 (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
3252 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
3253 g_warning(_("can't remove the old message\n"));
3261 static gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item)
3263 return compose_queue_sub (compose, msgnum, item, FALSE);
3265 static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item, gboolean check_subject)
3271 gchar buf[BUFFSIZE];
3273 MsgFlags flag = {0, 0};
3274 static gboolean lock = FALSE;
3275 PrefsAccount *mailac = NULL, *newsac = NULL;
3277 debug_print(_("queueing message...\n"));
3278 g_return_val_if_fail(compose->account != NULL, -1);
3279 g_return_val_if_fail(compose->orig_account != NULL, -1);
3283 if (compose_check_entries(compose, check_subject) == FALSE) {
3288 if (!compose->to_list && !compose->newsgroup_list) {
3289 g_warning(_("can't get recipient list."));
3294 if(compose->to_list) {
3295 if (compose->account->protocol != A_NNTP)
3296 mailac = compose->account;
3297 else if (compose->orig_account->protocol != A_NNTP)
3298 mailac = compose->orig_account;
3299 else if (cur_account && cur_account->protocol != A_NNTP)
3300 mailac = cur_account;
3301 else if (!(mailac = compose_current_mail_account())) {
3303 alertpanel_error(_("No account for sending mails available!"));
3308 if(compose->newsgroup_list) {
3309 if (compose->account->protocol == A_NNTP)
3310 newsac = compose->account;
3311 else if(!(newsac = compose->orig_account) || (newsac->protocol != A_NNTP)) {
3313 alertpanel_error(_("No account for posting news available!"));
3318 if (prefs_common.linewrap_at_send)
3319 compose_wrap_line_all(compose);
3321 /* write to temporary file */
3322 tmp2 = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
3323 G_DIR_SEPARATOR, (gint)compose);
3325 if (compose->bounce_filename != NULL) {
3326 if (compose_bounce_write_to_file(compose, tmp2) < 0) {
3333 if (compose_write_to_file(compose, tmp2, FALSE) < 0) {
3340 /* add queue header */
3341 tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
3342 G_DIR_SEPARATOR, (gint)compose);
3343 if ((fp = fopen(tmp, "wb")) == NULL) {
3344 FILE_OP_ERROR(tmp, "fopen");
3348 if ((src_fp = fopen(tmp2, "rb")) == NULL) {
3349 FILE_OP_ERROR(tmp2, "fopen");
3357 if (change_file_mode_rw(fp, tmp) < 0) {
3358 FILE_OP_ERROR(tmp, "chmod");
3359 g_warning(_("can't change file mode\n"));
3362 /* queueing variables */
3363 fprintf(fp, "AF:\n");
3364 fprintf(fp, "NF:0\n");
3365 fprintf(fp, "PS:10\n");
3366 fprintf(fp, "SRH:1\n");
3367 fprintf(fp, "SFN:\n");
3368 fprintf(fp, "DSR:\n");
3370 fprintf(fp, "MID:<%s>\n", compose->msgid);
3372 fprintf(fp, "MID:\n");
3373 fprintf(fp, "CFG:\n");
3374 fprintf(fp, "PT:0\n");
3375 fprintf(fp, "S:%s\n", compose->account->address);
3376 fprintf(fp, "RQ:\n");
3378 fprintf(fp, "SSV:%s\n", mailac->smtp_server);
3380 fprintf(fp, "SSV:\n");
3382 fprintf(fp, "NSV:%s\n", newsac->nntp_server);
3384 fprintf(fp, "NSV:\n");
3385 fprintf(fp, "SSH:\n");
3386 /* write recepient list */
3388 if(compose->to_list) {
3389 fprintf(fp, "<%s>", (gchar *)compose->to_list->data);
3390 for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
3391 fprintf(fp, ",<%s>", (gchar *)cur->data);
3394 /* write newsgroup list */
3396 if(compose->newsgroup_list) {
3397 fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
3398 for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
3399 fprintf(fp, ",%s", (gchar *)cur->data);
3402 /* Sylpheed account IDs */
3404 fprintf(fp, "MAID:%d\n", mailac->account_id);
3407 fprintf(fp, "NAID:%d\n", newsac->account_id);
3409 /* Save copy folder */
3410 if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
3413 str = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
3414 fprintf(fp, "SCF:%s\n", str);
3419 while (fgets(buf, sizeof(buf), src_fp) != NULL) {
3420 if (fputs(buf, fp) == EOF) {
3421 FILE_OP_ERROR(tmp, "fputs");
3432 if (fclose(fp) == EOF) {
3433 FILE_OP_ERROR(tmp, "fclose");
3441 queue = account_get_special_folder(compose->account, F_QUEUE);
3443 g_warning(_("can't find queue folder\n"));
3448 folder_item_scan(queue);
3449 if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
3450 g_warning(_("can't queue the message\n"));
3460 if (compose->mode == COMPOSE_REEDIT) {
3461 compose_remove_reedit_target(compose);
3462 if (compose->targetinfo &&
3463 compose->targetinfo->folder != queue)
3464 folderview_update_item
3465 (compose->targetinfo->folder, TRUE);
3468 procmsg_add_flags(queue, num, flag);
3469 folder_item_scan(queue);
3470 folderview_update_item(queue, TRUE);
3472 if((msgnum != NULL) && (item != NULL)) {
3480 static void compose_write_attach(Compose *compose, FILE *fp)
3483 GtkCList *clist = GTK_CLIST(compose->attach_clist);
3486 gchar filename[BUFFSIZE];
3489 for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
3491 gchar buf[BUFFSIZE];
3492 gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3494 if ((attach_fp = fopen(ainfo->file, "rb")) == NULL) {
3495 g_warning(_("Can't open file %s\n"), ainfo->file);
3499 fprintf(fp, "\n--%s\n", compose->boundary);
3501 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
3502 fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
3503 fprintf(fp, "Content-Disposition: inline\n");
3505 conv_encode_header(filename, sizeof(filename),
3507 fprintf(fp, "Content-Type: %s;\n"
3509 ainfo->content_type, filename);
3510 fprintf(fp, "Content-Disposition: attachment;\n"
3511 " filename=\"%s\"\n", filename);
3514 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
3515 procmime_get_encoding_str(ainfo->encoding));
3517 switch (ainfo->encoding) {
3521 /* if (ainfo->encoding == ENC_7BIT) { */
3523 while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
3531 while ((len = fread(inbuf, sizeof(gchar),
3532 B64_LINE_SIZE, attach_fp))
3534 to64frombits(outbuf, inbuf, B64_LINE_SIZE);
3538 if (len > 0 && feof(attach_fp)) {
3539 to64frombits(outbuf, inbuf, len);
3549 fprintf(fp, "\n--%s--\n", compose->boundary);
3552 #define QUOTE_IF_REQUIRED(out, str) \
3554 if (*str != '"' && strchr(str, ',')) { \
3558 len = strlen(str) + 3; \
3559 Xalloca(__tmp, len, return -1); \
3560 g_snprintf(__tmp, len, "\"%s\"", str); \
3563 Xstrdup_a(out, str, return -1); \
3567 #define PUT_RECIPIENT_HEADER(header, str) \
3569 if (*str != '\0') { \
3570 Xstrdup_a(str, str, return -1); \
3572 if (*str != '\0') { \
3573 compose->to_list = address_list_append \
3574 (compose->to_list, str); \
3575 compose_convert_header \
3576 (buf, sizeof(buf), str, strlen(header) + 2); \
3577 fprintf(fp, "%s: %s\n", header, buf); \
3582 #define IS_IN_CUSTOM_HEADER(header) \
3583 (compose->account->add_customhdr && \
3584 custom_header_find(compose->account->customhdr_list, header) != NULL)
3586 static gint compose_write_headers_from_headerlist(Compose *compose,
3590 gchar buf[BUFFSIZE];
3591 gchar *str, *header_w_colon, *trans_hdr;
3592 gboolean first_address;
3594 ComposeHeaderEntry *headerentry;
3595 gchar * headerentryname;
3597 if (IS_IN_CUSTOM_HEADER(header)) {
3601 debug_print(_("Writing %s-header\n"), header);
3603 header_w_colon = g_strconcat(header, ":", NULL);
3604 trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
3606 first_address = TRUE;
3607 for(list = compose->header_list; list; list = list->next) {
3608 headerentry = ((ComposeHeaderEntry *)list->data);
3609 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
3611 if(!g_strcasecmp(trans_hdr, headerentryname)) {
3612 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
3613 Xstrdup_a(str, str, return -1);
3615 if(str[0] != '\0') {
3616 compose_convert_header
3617 (buf, sizeof(buf), str,
3618 strlen(header) + 2);
3620 fprintf(fp, "%s: ", header);
3621 first_address = FALSE;
3625 fprintf(fp, "%s", buf);
3629 if(!first_address) {
3633 g_free(header_w_colon);
3638 static gint compose_write_headers(Compose *compose, FILE *fp,
3639 const gchar *charset, EncodingType encoding,
3642 gchar buf[BUFFSIZE];
3645 /* struct utsname utsbuf; */
3647 g_return_val_if_fail(fp != NULL, -1);
3648 g_return_val_if_fail(charset != NULL, -1);
3649 g_return_val_if_fail(compose->account != NULL, -1);
3650 g_return_val_if_fail(compose->account->address != NULL, -1);
3653 if (compose->account->add_date) {
3654 get_rfc822_date(buf, sizeof(buf));
3655 fprintf(fp, "Date: %s\n", buf);
3659 if (!IS_IN_CUSTOM_HEADER("From")) {
3660 if (compose->account->name && *compose->account->name) {
3661 compose_convert_header
3662 (buf, sizeof(buf), compose->account->name,
3664 QUOTE_IF_REQUIRED(name, buf);
3665 fprintf(fp, "From: %s <%s>\n",
3666 name, compose->account->address);
3668 fprintf(fp, "From: %s\n", compose->account->address);
3672 compose_write_headers_from_headerlist(compose, fp, "To");
3673 #if 0 /* NEW COMPOSE GUI */
3674 if (compose->use_to) {
3675 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
3676 PUT_RECIPIENT_HEADER("To", str);
3681 compose_write_headers_from_headerlist(compose, fp, "Newsgroups");
3682 #if 0 /* NEW COMPOSE GUI */
3683 str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
3685 Xstrdup_a(str, str, return -1);
3689 compose->newsgroup_list =
3690 newsgroup_list_append(compose->newsgroup_list,
3692 compose_convert_header(buf, sizeof(buf), str,
3693 strlen("Newsgroups: "));
3694 fprintf(fp, "Newsgroups: %s\n", buf);
3699 compose_write_headers_from_headerlist(compose, fp, "Cc");
3700 #if 0 /* NEW COMPOSE GUI */
3701 if (compose->use_cc) {
3702 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
3703 PUT_RECIPIENT_HEADER("Cc", str);
3707 compose_write_headers_from_headerlist(compose, fp, "Bcc");
3708 #if 0 /* NEW COMPOSE GUI */
3709 if (compose->use_bcc) {
3710 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
3711 PUT_RECIPIENT_HEADER("Bcc", str);
3716 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3717 if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
3718 Xstrdup_a(str, str, return -1);
3721 compose_convert_header(buf, sizeof(buf), str,
3722 strlen("Subject: "));
3723 fprintf(fp, "Subject: %s\n", buf);
3728 if (compose->account->gen_msgid) {
3729 compose_generate_msgid(compose, buf, sizeof(buf));
3730 fprintf(fp, "Message-Id: <%s>\n", buf);
3731 compose->msgid = g_strdup(buf);
3735 if (compose->inreplyto && compose->to_list)
3736 fprintf(fp, "In-Reply-To: <%s>\n", compose->inreplyto);
3739 if (compose->references)
3740 fprintf(fp, "References: %s\n", compose->references);
3743 compose_write_headers_from_headerlist(compose, fp, "Followup-To");
3744 #if 0 /* NEW COMPOSE GUI */
3745 if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
3746 str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
3748 Xstrdup_a(str, str, return -1);
3752 compose_convert_header(buf, sizeof(buf), str,