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"
87 #include "prefs_actions.h"
90 #include "procheader.h"
92 #include "statusbar.h"
99 #include "alertpanel.h"
100 #include "manage_window.h"
101 #include "gtkshruler.h"
103 #include "addr_compl.h"
104 #include "quote_fmt.h"
105 #include "template.h"
107 #include "foldersel.h"
111 # include "rfc2015.h"
121 #define N_ATTACH_COLS 3
125 COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
126 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
127 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
128 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
129 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
130 COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
131 COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
132 COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
133 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
134 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
135 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
136 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
137 COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
138 COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
139 COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END
140 } ComposeCallGtkSTextAction;
144 PRIORITY_HIGHEST = 1,
151 #define B64_LINE_SIZE 57
152 #define B64_BUFFSIZE 77
154 #define MAX_REFERENCES_LEN 999
156 static GdkColor quote_color = {0, 0, 0, 0xbfff};
158 static GList *compose_list = NULL;
160 Compose *compose_generic_new (PrefsAccount *account,
163 GPtrArray *attach_files);
165 static Compose *compose_create (PrefsAccount *account,
167 static void compose_toolbar_create (Compose *compose,
168 GtkWidget *container);
169 static void compose_toolbar_update (Compose *compose);
170 static void compose_toolbar_set_sensitive (Compose *compose,
173 static GtkWidget *compose_account_option_menu_create
175 static void compose_set_template_menu (Compose *compose);
176 static void compose_template_apply (Compose *compose,
179 static void compose_destroy (Compose *compose);
181 static void compose_entries_set (Compose *compose,
182 const gchar *mailto);
183 static gint compose_parse_header (Compose *compose,
185 static gchar *compose_parse_references (const gchar *ref,
188 static gchar *compose_quote_fmt (Compose *compose,
194 static void compose_reply_set_entry (Compose *compose,
200 followup_and_reply_to);
201 static void compose_reedit_set_entry (Compose *compose,
203 static void compose_insert_sig (Compose *compose);
204 static void compose_insert_file (Compose *compose,
206 static void compose_attach_append (Compose *compose,
209 const gchar *content_type);
210 static void compose_attach_parts (Compose *compose,
212 static void compose_wrap_line (Compose *compose);
213 static void compose_wrap_line_all (Compose *compose);
214 static void compose_wrap_line_all_full (Compose *compose,
216 static void compose_set_title (Compose *compose);
217 static void compose_select_account (Compose *compose,
218 PrefsAccount *account);
220 static PrefsAccount *compose_current_mail_account(void);
221 /* static gint compose_send (Compose *compose); */
222 static gboolean compose_check_for_valid_recipient
224 static gboolean compose_check_entries (Compose *compose,
225 gboolean check_subject);
226 static gint compose_write_to_file (Compose *compose,
229 static gint compose_write_body_to_file (Compose *compose,
231 static gint compose_remove_reedit_target (Compose *compose);
232 void compose_remove_draft (Compose *compose);
233 static gint compose_queue (Compose *compose,
236 static gint compose_queue_sub (Compose *compose,
239 gboolean check_subject);
240 static void compose_write_attach (Compose *compose,
242 static gint compose_write_headers (Compose *compose,
244 const gchar *charset,
245 EncodingType encoding,
248 static void compose_convert_header (gchar *dest,
252 static void compose_generate_msgid (Compose *compose,
256 static void compose_attach_info_free (AttachInfo *ainfo);
257 static void compose_attach_remove_selected (Compose *compose);
259 static void compose_attach_property (Compose *compose);
260 static void compose_attach_property_create (gboolean *cancelled);
261 static void attach_property_ok (GtkWidget *widget,
262 gboolean *cancelled);
263 static void attach_property_cancel (GtkWidget *widget,
264 gboolean *cancelled);
265 static gint attach_property_delete_event (GtkWidget *widget,
267 gboolean *cancelled);
268 static void attach_property_key_pressed (GtkWidget *widget,
270 gboolean *cancelled);
272 static void compose_exec_ext_editor (Compose *compose);
273 static gint compose_exec_ext_editor_real (const gchar *file);
274 static gboolean compose_ext_editor_kill (Compose *compose);
275 static void compose_input_cb (gpointer data,
277 GdkInputCondition condition);
278 static void compose_set_ext_editor_sensitive (Compose *compose,
281 static void compose_undo_state_changed (UndoMain *undostruct,
286 static gint calc_cursor_xpos (GtkSText *text,
290 static void compose_create_header_entry (Compose *compose);
291 static void compose_add_header_entry (Compose *compose, gchar *header, gchar *text);
292 static void compose_update_priority_menu_item(Compose * compose);
294 /* callback functions */
296 static gboolean compose_edit_size_alloc (GtkEditable *widget,
297 GtkAllocation *allocation,
298 GtkSHRuler *shruler);
300 static void toolbar_send_cb (GtkWidget *widget,
302 static void toolbar_send_later_cb (GtkWidget *widget,
304 static void toolbar_draft_cb (GtkWidget *widget,
306 static void toolbar_insert_cb (GtkWidget *widget,
308 static void toolbar_attach_cb (GtkWidget *widget,
310 static void toolbar_sig_cb (GtkWidget *widget,
312 static void toolbar_ext_editor_cb (GtkWidget *widget,
314 static void toolbar_linewrap_cb (GtkWidget *widget,
316 static void toolbar_address_cb (GtkWidget *widget,
318 static void toolbar_compose_buttons_cb (GtkWidget *widget,
321 static void account_activated (GtkMenuItem *menuitem,
324 static void attach_selected (GtkCList *clist,
329 static void attach_button_pressed (GtkWidget *widget,
330 GdkEventButton *event,
332 static void attach_key_pressed (GtkWidget *widget,
336 static void compose_send_cb (gpointer data,
339 static void compose_send_later_cb (gpointer data,
343 static void compose_draft_cb (gpointer data,
347 static void compose_attach_cb (gpointer data,
350 static void compose_insert_file_cb (gpointer data,
354 static void compose_close_cb (gpointer data,
358 static void compose_address_cb (gpointer data,
361 static void compose_template_activate_cb(GtkWidget *widget,
364 static void compose_ext_editor_cb (gpointer data,
368 static gint compose_delete_cb (GtkWidget *widget,
371 static void compose_destroy_cb (GtkWidget *widget,
374 static void compose_undo_cb (Compose *compose);
375 static void compose_redo_cb (Compose *compose);
376 static void compose_cut_cb (Compose *compose);
377 static void compose_copy_cb (Compose *compose);
378 static void compose_paste_cb (Compose *compose);
379 static void compose_paste_as_quote_cb (Compose *compose);
380 static void compose_allsel_cb (Compose *compose);
382 static void compose_gtk_stext_action_cb (Compose *compose,
383 ComposeCallGtkSTextAction action);
385 static void compose_grab_focus_cb (GtkWidget *widget,
388 static void compose_changed_cb (GtkEditable *editable,
390 static void compose_button_press_cb (GtkWidget *widget,
391 GdkEventButton *event,
394 static void compose_key_press_cb (GtkWidget *widget,
400 static void compose_toggle_to_cb (gpointer data,
403 static void compose_toggle_cc_cb (gpointer data,
406 static void compose_toggle_bcc_cb (gpointer data,
409 static void compose_toggle_replyto_cb (gpointer data,
412 static void compose_toggle_followupto_cb(gpointer data,
415 static void compose_toggle_attach_cb (gpointer data,
419 static void compose_toggle_ruler_cb (gpointer data,
423 static void compose_toggle_sign_cb (gpointer data,
426 static void compose_toggle_encrypt_cb (gpointer data,
429 static void compose_set_gnupg_mode_cb (gpointer data,
432 static void compose_update_gnupg_mode_menu_item(Compose * compose);
433 static void activate_gnupg_mode (Compose *compose,
434 PrefsAccount *account);
436 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
438 static void compose_set_priority_cb (gpointer data,
442 static void compose_attach_drag_received_cb (GtkWidget *widget,
443 GdkDragContext *drag_context,
446 GtkSelectionData *data,
450 static void compose_insert_drag_received_cb (GtkWidget *widget,
451 GdkDragContext *drag_context,
454 GtkSelectionData *data,
460 static void to_activated (GtkWidget *widget,
462 static void newsgroups_activated (GtkWidget *widget,
464 static void cc_activated (GtkWidget *widget,
466 static void bcc_activated (GtkWidget *widget,
468 static void replyto_activated (GtkWidget *widget,
470 static void followupto_activated (GtkWidget *widget,
472 static void subject_activated (GtkWidget *widget,
476 static void text_activated (GtkWidget *widget,
478 static void text_inserted (GtkWidget *widget,
483 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
484 gboolean to_all, gboolean to_ml,
485 gboolean ignore_replyto,
486 gboolean followup_and_reply_to,
489 void compose_headerentry_changed_cb (GtkWidget *entry,
490 ComposeHeaderEntry *headerentry);
491 void compose_headerentry_key_press_event_cb(GtkWidget *entry,
493 ComposeHeaderEntry *headerentry);
495 static void compose_show_first_last_header (Compose *compose, gboolean show_first);
498 static void compose_check_all (Compose *compose);
499 static void compose_highlight_all (Compose *compose);
500 static void compose_check_backwards (Compose *compose);
501 static void compose_check_forwards_go (Compose *compose);
504 static gboolean compose_send_control_enter (Compose *compose);
506 static GtkItemFactoryEntry compose_popup_entries[] =
508 {N_("/_Add..."), NULL, compose_attach_cb, 0, NULL},
509 {N_("/_Remove"), NULL, compose_attach_remove_selected, 0, NULL},
510 {N_("/---"), NULL, NULL, 0, "<Separator>"},
511 {N_("/_Property..."), NULL, compose_attach_property, 0, NULL}
514 static GtkItemFactoryEntry compose_entries[] =
516 {N_("/_File"), NULL, NULL, 0, "<Branch>"},
517 {N_("/_File/_Attach file"), "<control>M", compose_attach_cb, 0, NULL},
518 {N_("/_File/_Insert file"), "<control>I", compose_insert_file_cb, 0, NULL},
519 {N_("/_File/Insert si_gnature"), "<control>G", compose_insert_sig, 0, NULL},
520 {N_("/_File/---"), NULL, NULL, 0, "<Separator>"},
521 {N_("/_File/_Close"), "<control>W", compose_close_cb, 0, NULL},
523 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
524 {N_("/_Edit/_Undo"), "<control>Z", compose_undo_cb, 0, NULL},
525 {N_("/_Edit/_Redo"), "<control>Y", compose_redo_cb, 0, NULL},
526 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
527 {N_("/_Edit/Cu_t"), "<control>X", compose_cut_cb, 0, NULL},
528 {N_("/_Edit/_Copy"), "<control>C", compose_copy_cb, 0, NULL},
529 {N_("/_Edit/_Paste"), "<control>V", compose_paste_cb, 0, NULL},
530 {N_("/_Edit/Paste as _quotation"),
531 NULL, compose_paste_as_quote_cb, 0, NULL},
532 {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
533 {N_("/_Edit/A_dvanced"), NULL, NULL, 0, "<Branch>"},
534 {N_("/_Edit/A_dvanced/Move a character backward"),
536 compose_gtk_stext_action_cb,
537 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
539 {N_("/_Edit/A_dvanced/Move a character forward"),
541 compose_gtk_stext_action_cb,
542 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
544 {N_("/_Edit/A_dvanced/Move a word backward"),
546 compose_gtk_stext_action_cb,
547 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
549 {N_("/_Edit/A_dvanced/Move a word forward"),
551 compose_gtk_stext_action_cb,
552 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
554 {N_("/_Edit/A_dvanced/Move to beginning of line"),
555 NULL, /* "<control>A" */
556 compose_gtk_stext_action_cb,
557 COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
559 {N_("/_Edit/A_dvanced/Move to end of line"),
561 compose_gtk_stext_action_cb,
562 COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
564 {N_("/_Edit/A_dvanced/Move to previous line"),
566 compose_gtk_stext_action_cb,
567 COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
569 {N_("/_Edit/A_dvanced/Move to next line"),
571 compose_gtk_stext_action_cb,
572 COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
574 {N_("/_Edit/A_dvanced/Delete a character backward"),
576 compose_gtk_stext_action_cb,
577 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
579 {N_("/_Edit/A_dvanced/Delete a character forward"),
581 compose_gtk_stext_action_cb,
582 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
584 {N_("/_Edit/A_dvanced/Delete a word backward"),
585 NULL, /* "<control>W" */
586 compose_gtk_stext_action_cb,
587 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
589 {N_("/_Edit/A_dvanced/Delete a word forward"),
590 NULL, /* "<alt>D", */
591 compose_gtk_stext_action_cb,
592 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
594 {N_("/_Edit/A_dvanced/Delete line"),
596 compose_gtk_stext_action_cb,
597 COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
599 {N_("/_Edit/A_dvanced/Delete entire line"),
601 compose_gtk_stext_action_cb,
602 COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
604 {N_("/_Edit/A_dvanced/Delete to end of line"),
606 compose_gtk_stext_action_cb,
607 COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END,
609 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
610 {N_("/_Edit/_Wrap current paragraph"),
611 "<control>L", compose_wrap_line, 0, NULL},
612 {N_("/_Edit/Wrap all long _lines"),
613 "<control><alt>L", compose_wrap_line_all, 0, NULL},
614 {N_("/_Edit/Edit with e_xternal editor"),
615 "<shift><control>X", compose_ext_editor_cb, 0, NULL},
617 {N_("/_Spelling"), NULL, NULL, 0, "<Branch>"},
618 {N_("/_Spelling/_Check all or check selection"),
619 NULL, compose_check_all, 0, NULL},
620 {N_("/_Spelling/_Highlight all misspelled words"),
621 NULL, compose_highlight_all, 0, NULL},
622 {N_("/_Spelling/Check _backwards misspelled word"),
623 NULL, compose_check_backwards , 0, NULL},
624 {N_("/_Spelling/_Forward to next misspelled word"),
625 NULL, compose_check_forwards_go, 0, NULL},
626 {N_("/_Spelling/---"), NULL, NULL, 0, "<Separator>"},
627 {N_("/_Spelling/_Spelling Configuration"),
628 NULL, NULL, 0, "<Branch>"},
630 #if 0 /* NEW COMPOSE GUI */
631 {N_("/_View"), NULL, NULL, 0, "<Branch>"},
632 {N_("/_View/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
633 {N_("/_View/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
634 {N_("/_View/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
635 {N_("/_View/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
636 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
637 {N_("/_View/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
638 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
639 {N_("/_View/R_uler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
640 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
641 {N_("/_View/_Attachment"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
643 {N_("/_Message"), NULL, NULL, 0, "<Branch>"},
644 {N_("/_Message/_Send"), "<control>Return",
645 compose_send_cb, 0, NULL},
646 {N_("/_Message/Send _later"), "<shift><control>S",
647 compose_send_later_cb, 0, NULL},
648 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
649 {N_("/_Message/Save to _draft folder"),
650 "<shift><control>D", compose_draft_cb, 0, NULL},
651 {N_("/_Message/Save and _keep editing"),
652 "<control>S", compose_draft_cb, 1, NULL},
653 #if 0 /* NEW COMPOSE GUI */
654 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
655 {N_("/_Message/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
656 {N_("/_Message/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
657 {N_("/_Message/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
658 {N_("/_Message/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
659 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
660 {N_("/_Message/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
661 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
662 {N_("/_Message/_Attach"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
665 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
666 {N_("/_Message/Si_gn"), NULL, compose_toggle_sign_cb , 0, "<ToggleItem>"},
667 {N_("/_Message/_Encrypt"), NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
668 {N_("/_Message/Mode/MIME"), NULL, compose_set_gnupg_mode_cb, GNUPG_MODE_DETACH, "<RadioItem>"},
669 {N_("/_Message/Mode/Inline"), NULL, compose_set_gnupg_mode_cb, GNUPG_MODE_INLINE, "/Message/Mode/MIME"},
670 #endif /* USE_GPGME */
671 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
672 {N_("/_Message/_Priority"), NULL, NULL, 0, "<Branch>"},
673 {N_("/_Message/Priority/_Highest"), NULL, compose_set_priority_cb, PRIORITY_HIGHEST, "<RadioItem>"},
674 {N_("/_Message/Priority/Hi_gh"), NULL, compose_set_priority_cb, PRIORITY_HIGH, "/Message/Priority/Highest"},
675 {N_("/_Message/Priority/_Normal"), NULL, compose_set_priority_cb, PRIORITY_NORMAL, "/Message/Priority/Highest"},
676 {N_("/_Message/Priority/Lo_w"), NULL, compose_set_priority_cb, PRIORITY_LOW, "/Message/Priority/Highest"},
677 {N_("/_Message/Priority/_Lowest"), NULL, compose_set_priority_cb, PRIORITY_LOWEST, "/Message/Priority/Highest"},
678 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
679 {N_("/_Message/_Request Return Receipt"), NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
680 {N_("/_Tools"), NULL, NULL, 0, "<Branch>"},
681 {N_("/_Tools/Show _ruler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
682 {N_("/_Tools/_Address book"), "<shift><control>A", compose_address_cb , 0, NULL},
683 {N_("/_Tools/_Template"), NULL, NULL, 0, "<Branch>"},
684 {N_("/_Tools/Actio_ns"), NULL, NULL, 0, "<Branch>"},
685 {N_("/_Help"), NULL, NULL, 0, "<Branch>"},
686 {N_("/_Help/_About"), NULL, about_show, 0, NULL}
689 static GtkTargetEntry compose_mime_types[] =
691 {"text/uri-list", 0, 0}
694 Compose *compose_new(PrefsAccount *account, const gchar *mailto,
695 GPtrArray *attach_files)
697 return compose_generic_new(account, mailto, NULL, attach_files);
700 Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
702 return compose_generic_new(account, NULL, item, NULL);
705 Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item,
706 GPtrArray *attach_files)
710 GtkItemFactory *ifactory;
711 gboolean grab_focus_on_last = TRUE;
713 if (item && item->prefs && item->prefs->enable_default_account)
714 account = account_find_from_id(item->prefs->default_account);
716 if (!account) account = cur_account;
717 g_return_val_if_fail(account != NULL, NULL);
719 compose = compose_create(account, COMPOSE_NEW);
720 ifactory = gtk_item_factory_from_widget(compose->menubar);
722 compose->replyinfo = NULL;
724 text = GTK_STEXT(compose->text);
725 gtk_stext_freeze(text);
727 if (prefs_common.auto_sig)
728 compose_insert_sig(compose);
729 gtk_editable_set_position(GTK_EDITABLE(text), 0);
730 gtk_stext_set_point(text, 0);
732 gtk_stext_thaw(text);
734 if (account->protocol != A_NNTP) {
735 if (mailto && *mailto != '\0') {
736 compose_entries_set(compose, mailto);
738 } else if (item && item->prefs->enable_default_to) {
739 compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
740 compose_entry_select(compose, item->prefs->default_to);
741 grab_focus_on_last = FALSE;
743 if (item && item->ret_rcpt) {
744 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
748 compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
751 * CLAWS: just don't allow return receipt request, even if the user
752 * may want to send an email. simple but foolproof.
754 menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
761 for (i = 0; i < attach_files->len; i++) {
762 file = g_ptr_array_index(attach_files, i);
763 compose_attach_append(compose, file, file, NULL);
767 compose_show_first_last_header(compose, TRUE);
769 /* Set save folder */
770 if (item && item->prefs && item->prefs->save_copy_to_folder) {
771 gchar *folderidentifier;
773 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), prefs_common.savemsg);
774 folderidentifier = folder_item_get_identifier(item);
775 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
776 g_free(folderidentifier);
779 /* Grab focus on last header only if no default_to was set */
780 if (grab_focus_on_last)
781 gtk_widget_grab_focus(compose->header_last->entry);
783 if (prefs_common.auto_exteditor)
784 compose_exec_ext_editor(compose);
790 Compose *compose_new_followup_and_replyto(PrefsAccount *account,
791 const gchar *followupto, gchar * to)
795 if (!account) account = cur_account;
796 g_return_val_if_fail(account != NULL, NULL);
797 g_return_val_if_fail(account->protocol != A_NNTP, NULL);
799 compose = compose_create(account, COMPOSE_NEW);
801 if (prefs_common.auto_sig)
802 compose_insert_sig(compose);
803 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
804 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
806 compose_entry_append(compose, to, COMPOSE_TO);
807 compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
808 gtk_widget_grab_focus(compose->subject_entry);
814 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
815 gboolean to_ml, gboolean ignore_replyto,
818 compose_generic_reply(msginfo, quote, to_all, to_ml,
819 ignore_replyto, FALSE, body);
822 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
824 gboolean ignore_replyto,
827 compose_generic_reply(msginfo, quote, to_all, FALSE,
828 ignore_replyto, TRUE, body);
831 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
832 gboolean to_all, gboolean to_ml,
833 gboolean ignore_replyto,
834 gboolean followup_and_reply_to,
838 PrefsAccount *account;
839 PrefsAccount *reply_account;
842 g_return_if_fail(msginfo != NULL);
843 g_return_if_fail(msginfo->folder != NULL);
846 /* select the account set in folderitem's property (if enabled) */
847 if (msginfo->folder->prefs && msginfo->folder->prefs->enable_default_account)
848 account = account_find_from_id(msginfo->folder->prefs->default_account);
850 /* select the account for the whole folder (IMAP / NNTP) */
852 /* FIXME: this is not right, because folder may be nested. we should
853 * ascend the tree until we find a parent with proper account
855 account = msginfo->folder->folder->account;
857 /* select account by to: and cc: header if enabled */
858 if (prefs_common.reply_account_autosel) {
859 if (!account && msginfo->to) {
861 Xstrdup_a(to, msginfo->to, return);
863 account = account_find_from_address(to);
867 if (!get_header_from_msginfo(msginfo, cc, sizeof(cc), "CC:")) { /* Found a CC header */
869 account = account_find_from_address(cc);
874 /* select current account */
875 if (!account) account = cur_account;
876 g_return_if_fail(account != NULL);
878 if (ignore_replyto && account->protocol == A_NNTP &&
879 !followup_and_reply_to) {
881 account_find_from_address(account->address);
883 reply_account = compose_current_mail_account();
887 reply_account = account;
889 compose = compose_create(account, COMPOSE_REPLY);
891 compose->replyinfo = procmsg_msginfo_get_full_info(msginfo);
892 if (!compose->replyinfo)
893 compose->replyinfo = procmsg_msginfo_copy(msginfo);
895 if (msginfo->folder && msginfo->folder->ret_rcpt) {
896 GtkItemFactory *ifactory;
898 ifactory = gtk_item_factory_from_widget(compose->menubar);
899 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
902 /* Set save folder */
903 if (msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
904 gchar *folderidentifier;
906 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
907 folderidentifier = folder_item_get_identifier(msginfo->folder);
908 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
909 g_free(folderidentifier);
912 if (compose_parse_header(compose, msginfo) < 0) return;
913 compose_reply_set_entry(compose, msginfo, to_all, to_ml,
914 ignore_replyto, followup_and_reply_to);
915 compose_show_first_last_header(compose, TRUE);
917 text = GTK_STEXT(compose->text);
918 gtk_stext_freeze(text);
924 if (prefs_common.quotemark && *prefs_common.quotemark)
925 qmark = prefs_common.quotemark;
929 quote_str = compose_quote_fmt(compose, compose->replyinfo,
930 prefs_common.quotefmt,
934 if (prefs_common.auto_sig)
935 compose_insert_sig(compose);
937 if (quote && prefs_common.linewrap_quote)
938 compose_wrap_line_all(compose);
940 gtk_editable_set_position(GTK_EDITABLE(text), 0);
941 gtk_stext_set_point(text, 0);
943 gtk_stext_thaw(text);
944 gtk_widget_grab_focus(compose->text);
946 if (prefs_common.auto_exteditor)
947 compose_exec_ext_editor(compose);
950 #define INSERT_FW_HEADER(var, hdr) \
951 if (msginfo->var && *msginfo->var) { \
952 gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
953 gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
954 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
957 Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
958 gboolean as_attach, const gchar *body)
963 g_return_val_if_fail(msginfo != NULL, NULL);
964 g_return_val_if_fail(msginfo->folder != NULL, NULL);
966 if (msginfo->folder->prefs->enable_default_account)
967 account = account_find_from_id(msginfo->folder->prefs->default_account);
969 account = msginfo->folder->folder->account;
970 if (!account && msginfo->to && prefs_common.forward_account_autosel) {
972 Xstrdup_a(to, msginfo->to, return NULL);
974 account = account_find_from_address(to);
977 if (!account && prefs_common.forward_account_autosel) {
979 if (!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
981 account = account_find_from_address(cc);
985 if (account == NULL) {
986 account = cur_account;
988 account = msginfo->folder->folder->account;
989 if (!account) account = cur_account;
992 g_return_val_if_fail(account != NULL, NULL);
994 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
995 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
996 if (MSG_IS_IMAP(msginfo->flags))
997 imap_msg_unset_perm_flags(msginfo, MSG_REPLIED);
999 compose = compose_create(account, COMPOSE_FORWARD);
1001 if (msginfo->subject && *msginfo->subject) {
1002 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
1003 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
1007 text = GTK_STEXT(compose->text);
1008 gtk_stext_freeze(text);
1014 msgfile = procmsg_get_message_file_path(msginfo);
1015 if (!is_file_exist(msgfile))
1016 g_warning("%s: file not exist\n", msgfile);
1018 compose_attach_append(compose, msgfile, msgfile,
1025 MsgInfo *full_msginfo;
1027 full_msginfo = procmsg_msginfo_get_full_info(msginfo);
1029 full_msginfo = procmsg_msginfo_copy(msginfo);
1031 if (prefs_common.fw_quotemark &&
1032 *prefs_common.fw_quotemark)
1033 qmark = prefs_common.fw_quotemark;
1037 quote_str = compose_quote_fmt(compose, full_msginfo,
1038 prefs_common.fw_quotefmt,
1040 compose_attach_parts(compose, msginfo);
1042 procmsg_msginfo_free(full_msginfo);
1045 if (prefs_common.auto_sig)
1046 compose_insert_sig(compose);
1048 if (prefs_common.linewrap_quote)
1049 compose_wrap_line_all(compose);
1051 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1052 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1054 gtk_stext_thaw(text);
1055 #if 0 /* NEW COMPOSE GUI */
1056 if (account->protocol != A_NNTP)
1057 gtk_widget_grab_focus(compose->to_entry);
1059 gtk_widget_grab_focus(compose->newsgroups_entry);
1061 gtk_widget_grab_focus(compose->header_last->entry);
1063 if (prefs_common.auto_exteditor)
1064 compose_exec_ext_editor(compose);
1067 if (msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
1068 gchar *folderidentifier;
1070 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1071 folderidentifier = folder_item_get_identifier(msginfo->folder);
1072 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
1073 g_free(folderidentifier);
1079 #undef INSERT_FW_HEADER
1081 Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
1088 g_return_val_if_fail(msginfo_list != NULL, NULL);
1090 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1091 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1095 if (account == NULL) {
1096 account = cur_account;
1098 account = msginfo->folder->folder->account;
1099 if (!account) account = cur_account;
1102 g_return_val_if_fail(account != NULL, NULL);
1104 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1105 MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
1106 MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
1109 compose = compose_create(account, COMPOSE_FORWARD);
1111 text = GTK_STEXT(compose->text);
1112 gtk_stext_freeze(text);
1114 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1115 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1116 if (!is_file_exist(msgfile))
1117 g_warning("%s: file not exist\n", msgfile);
1119 compose_attach_append(compose, msgfile, msgfile,
1124 if (prefs_common.auto_sig)
1125 compose_insert_sig(compose);
1127 if (prefs_common.linewrap_quote)
1128 compose_wrap_line_all(compose);
1130 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1131 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1133 gtk_stext_thaw(text);
1134 gtk_widget_grab_focus(compose->header_last->entry);
1136 #if 0 /* NEW COMPOSE GUI */
1137 if (account->protocol != A_NNTP)
1138 gtk_widget_grab_focus(compose->to_entry);
1140 gtk_widget_grab_focus(compose->newsgroups_entry);
1146 void compose_reedit(MsgInfo *msginfo)
1149 PrefsAccount *account = NULL;
1152 gchar buf[BUFFSIZE];
1154 g_return_if_fail(msginfo != NULL);
1155 g_return_if_fail(msginfo->folder != NULL);
1157 if (msginfo->folder->stype == F_QUEUE || msginfo->folder->stype == F_DRAFT) {
1158 gchar queueheader_buf[BUFFSIZE];
1161 /* Select Account from queue headers */
1162 if (!get_header_from_msginfo(msginfo, queueheader_buf,
1163 sizeof(queueheader_buf), "X-Sylpheed-Account-Id:")) {
1164 id = atoi(&queueheader_buf[22]);
1165 account = account_find_from_id(id);
1167 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1168 sizeof(queueheader_buf), "NAID:")) {
1169 id = atoi(&queueheader_buf[5]);
1170 account = account_find_from_id(id);
1172 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1173 sizeof(queueheader_buf), "MAID:")) {
1174 id = atoi(&queueheader_buf[5]);
1175 account = account_find_from_id(id);
1177 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1178 sizeof(queueheader_buf), "S:")) {
1179 account = account_find_from_address(queueheader_buf);
1182 account = msginfo->folder->folder->account;
1184 if (!account && prefs_common.reedit_account_autosel) {
1185 gchar from[BUFFSIZE];
1186 if (!get_header_from_msginfo(msginfo, from, sizeof(from), "FROM:")){
1187 extract_address(from);
1188 account = account_find_from_address(from);
1191 if (!account) account = cur_account;
1192 g_return_if_fail(account != NULL);
1194 compose = compose_create(account, COMPOSE_REEDIT);
1195 compose->targetinfo = procmsg_msginfo_copy(msginfo);
1197 if (msginfo->folder->stype == F_QUEUE
1198 || msginfo->folder->stype == F_DRAFT) {
1199 gchar queueheader_buf[BUFFSIZE];
1201 /* Set message save folder */
1202 if (!get_header_from_msginfo(msginfo, queueheader_buf, sizeof(queueheader_buf), "SCF:")) {
1205 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1206 gtk_editable_delete_text(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
1207 gtk_editable_insert_text(GTK_EDITABLE(compose->savemsg_entry), &queueheader_buf[4], strlen(&queueheader_buf[4]), &startpos);
1211 if (compose_parse_header(compose, msginfo) < 0) return;
1212 compose_reedit_set_entry(compose, msginfo);
1214 text = GTK_STEXT(compose->text);
1215 gtk_stext_freeze(text);
1217 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1218 g_warning("Can't get text part\n");
1220 while (fgets(buf, sizeof(buf), fp) != NULL) {
1222 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1226 compose_attach_parts(compose, msginfo);
1228 gtk_stext_thaw(text);
1229 gtk_widget_grab_focus(compose->text);
1231 if (prefs_common.auto_exteditor)
1232 compose_exec_ext_editor(compose);
1235 Compose *compose_redirect(PrefsAccount *account, MsgInfo *msginfo)
1239 GtkItemFactory *ifactory;
1241 g_return_val_if_fail(msginfo != NULL, NULL);
1244 account = cur_account;
1245 g_return_val_if_fail(account != NULL, NULL);
1247 compose = compose_create(account, COMPOSE_REDIRECT);
1248 ifactory = gtk_item_factory_from_widget(compose->menubar);
1250 compose->replyinfo = NULL;
1252 compose_show_first_last_header(compose, TRUE);
1254 gtk_widget_grab_focus(compose->header_last->entry);
1256 filename = procmsg_get_message_file(msginfo);
1257 if (filename == NULL)
1260 compose->redirect_filename = filename;
1262 compose_attach_parts(compose, msginfo);
1264 if (msginfo->subject)
1265 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry),
1267 gtk_editable_set_editable(GTK_EDITABLE(compose->subject_entry), FALSE);
1269 gtk_stext_freeze(GTK_STEXT(compose->text));
1270 compose_quote_fmt(compose, msginfo, "%M", NULL, NULL);
1271 gtk_editable_set_editable(GTK_EDITABLE(compose->text), FALSE);
1272 gtk_stext_thaw(GTK_STEXT(compose->text));
1274 ifactory = gtk_item_factory_from_widget(compose->popupmenu);
1275 menu_set_sensitive(ifactory, "/Add...", FALSE);
1276 menu_set_sensitive(ifactory, "/Remove", FALSE);
1277 menu_set_sensitive(ifactory, "/Property...", FALSE);
1279 ifactory = gtk_item_factory_from_widget(compose->menubar);
1280 menu_set_sensitive(ifactory, "/File/Insert file", FALSE);
1281 menu_set_sensitive(ifactory, "/File/Attach file", FALSE);
1282 menu_set_sensitive(ifactory, "/File/Insert signature", FALSE);
1283 menu_set_sensitive(ifactory, "/Edit", FALSE);
1284 menu_set_sensitive(ifactory, "/Message/Save to draft folder", FALSE);
1285 menu_set_sensitive(ifactory, "/Message/Save and keep editing", FALSE);
1287 menu_set_sensitive(ifactory, "/Message/Sign", FALSE);
1288 menu_set_sensitive(ifactory, "/Message/Encrypt", FALSE);
1289 menu_set_sensitive(ifactory, "/Message/Mode/MIME", FALSE);
1290 menu_set_sensitive(ifactory, "/Message/Mode/Inline", FALSE);
1292 menu_set_sensitive(ifactory, "/Message/Priority", FALSE);
1293 menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
1294 menu_set_sensitive(ifactory, "/Tools/Show ruler", FALSE);
1295 menu_set_sensitive(ifactory, "/Tools/Actions", FALSE);
1297 gtk_widget_set_sensitive(compose->toolbar->draft_btn, FALSE);
1298 gtk_widget_set_sensitive(compose->toolbar->insert_btn, FALSE);
1299 gtk_widget_set_sensitive(compose->toolbar->attach_btn, FALSE);
1300 gtk_widget_set_sensitive(compose->toolbar->sig_btn, FALSE);
1301 gtk_widget_set_sensitive(compose->toolbar->exteditor_btn, FALSE);
1302 gtk_widget_set_sensitive(compose->toolbar->linewrap_btn, FALSE);
1307 GList *compose_get_compose_list(void)
1309 return compose_list;
1312 void compose_entry_append(Compose *compose, const gchar *address,
1313 ComposeEntryType type)
1317 if (!address || *address == '\0') return;
1319 #if 0 /* NEW COMPOSE GUI */
1322 entry = GTK_ENTRY(compose->cc_entry);
1325 entry = GTK_ENTRY(compose->bcc_entry);
1327 case COMPOSE_NEWSGROUPS:
1328 entry = GTK_ENTRY(compose->newsgroups_entry);
1332 entry = GTK_ENTRY(compose->to_entry);
1336 text = gtk_entry_get_text(entry);
1338 gtk_entry_append_text(entry, ", ");
1339 gtk_entry_append_text(entry, address);
1347 header = N_("Bcc:");
1349 case COMPOSE_REPLYTO:
1350 header = N_("Reply-To:");
1352 case COMPOSE_NEWSGROUPS:
1353 header = N_("Newsgroups:");
1355 case COMPOSE_FOLLOWUPTO:
1356 header = N_( "Followup-To:");
1363 header = prefs_common.trans_hdr ? gettext(header) : header;
1365 compose_add_header_entry(compose, header, (gchar *)address);
1368 void compose_entry_select (Compose *compose, const gchar *mailto)
1370 GSList *header_list;
1372 for (header_list = compose->header_list; header_list != NULL; header_list = header_list->next) {
1373 GtkEntry * entry = GTK_ENTRY(((ComposeHeaderEntry *)header_list->data)->entry);
1375 if (gtk_entry_get_text(entry) && !g_strcasecmp(gtk_entry_get_text(entry), mailto)) {
1376 gtk_entry_select_region(entry, 0, -1);
1377 gtk_widget_grab_focus(GTK_WIDGET(entry));
1382 static void compose_entries_set(Compose *compose, const gchar *mailto)
1387 gchar *subject = NULL;
1390 scan_mailto_url(mailto, &to, &cc, &bcc, &subject, &body);
1393 compose_entry_append(compose, to, COMPOSE_TO);
1395 compose_entry_append(compose, cc, COMPOSE_CC);
1397 compose_entry_append(compose, bcc, COMPOSE_BCC);
1399 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
1401 gtk_stext_insert(GTK_STEXT(compose->text),
1402 NULL, NULL, NULL, body, -1);
1403 gtk_stext_insert(GTK_STEXT(compose->text),
1404 NULL, NULL, NULL, "\n", 1);
1414 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1416 static HeaderEntry hentry[] = {{"Reply-To:", NULL, TRUE},
1417 {"Cc:", NULL, FALSE},
1418 {"References:", NULL, FALSE},
1419 {"Bcc:", NULL, FALSE},
1420 {"Newsgroups:", NULL, FALSE},
1421 {"Followup-To:", NULL, FALSE},
1422 {"List-Post:", NULL, FALSE},
1423 {"X-Priority:", NULL, FALSE},
1424 {NULL, NULL, FALSE}};
1440 g_return_val_if_fail(msginfo != NULL, -1);
1442 if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1443 procheader_get_header_fields(fp, hentry);
1446 if (hentry[H_REPLY_TO].body != NULL) {
1447 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1448 compose->replyto = hentry[H_REPLY_TO].body;
1449 hentry[H_REPLY_TO].body = NULL;
1451 if (hentry[H_CC].body != NULL) {
1452 conv_unmime_header_overwrite(hentry[H_CC].body);
1453 compose->cc = hentry[H_CC].body;
1454 hentry[H_CC].body = NULL;
1456 if (hentry[H_REFERENCES].body != NULL) {
1457 if (compose->mode == COMPOSE_REEDIT)
1458 compose->references = hentry[H_REFERENCES].body;
1460 compose->references = compose_parse_references
1461 (hentry[H_REFERENCES].body, msginfo->msgid);
1462 g_free(hentry[H_REFERENCES].body);
1464 hentry[H_REFERENCES].body = NULL;
1466 if (hentry[H_BCC].body != NULL) {
1467 if (compose->mode == COMPOSE_REEDIT) {
1468 conv_unmime_header_overwrite(hentry[H_BCC].body);
1469 compose->bcc = hentry[H_BCC].body;
1471 g_free(hentry[H_BCC].body);
1472 hentry[H_BCC].body = NULL;
1474 if (hentry[H_NEWSGROUPS].body != NULL) {
1475 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1476 hentry[H_NEWSGROUPS].body = NULL;
1478 if (hentry[H_FOLLOWUP_TO].body != NULL) {
1479 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1480 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1481 hentry[H_FOLLOWUP_TO].body = NULL;
1483 if (hentry[H_LIST_POST].body != NULL) {
1486 extract_address(hentry[H_LIST_POST].body);
1487 if (hentry[H_LIST_POST].body[0] != '\0') {
1488 scan_mailto_url(hentry[H_LIST_POST].body,
1489 &to, NULL, NULL, NULL, NULL);
1491 g_free(compose->ml_post);
1492 compose->ml_post = to;
1495 g_free(hentry[H_LIST_POST].body);
1496 hentry[H_LIST_POST].body = NULL;
1499 /* CLAWS - X-Priority */
1500 if (compose->mode == COMPOSE_REEDIT)
1501 if (hentry[H_X_PRIORITY].body != NULL) {
1504 priority = atoi(hentry[H_X_PRIORITY].body);
1505 g_free(hentry[H_X_PRIORITY].body);
1507 hentry[H_X_PRIORITY].body = NULL;
1509 if (priority < PRIORITY_HIGHEST ||
1510 priority > PRIORITY_LOWEST)
1511 priority = PRIORITY_NORMAL;
1513 compose->priority = priority;
1516 if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1517 compose->inreplyto = g_strdup(msginfo->inreplyto);
1518 else if (compose->mode != COMPOSE_REEDIT &&
1519 msginfo->msgid && *msginfo->msgid) {
1520 compose->inreplyto = g_strdup(msginfo->msgid);
1522 if (!compose->references) {
1523 if (msginfo->inreplyto && *msginfo->inreplyto)
1524 compose->references =
1525 g_strdup_printf("<%s>\n\t<%s>",
1529 compose->references =
1530 g_strconcat("<", msginfo->msgid, ">",
1538 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1540 GSList *ref_id_list, *cur;
1544 ref_id_list = references_list_append(NULL, ref);
1545 if (!ref_id_list) return NULL;
1546 if (msgid && *msgid)
1547 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1552 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1553 /* "<" + Message-ID + ">" + CR+LF+TAB */
1554 len += strlen((gchar *)cur->data) + 5;
1556 if (len > MAX_REFERENCES_LEN) {
1557 /* remove second message-ID */
1558 if (ref_id_list && ref_id_list->next &&
1559 ref_id_list->next->next) {
1560 g_free(ref_id_list->next->data);
1561 ref_id_list = g_slist_remove
1562 (ref_id_list, ref_id_list->next->data);
1564 slist_free_strings(ref_id_list);
1565 g_slist_free(ref_id_list);
1572 new_ref = g_string_new("");
1573 for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1574 if (new_ref->len > 0)
1575 g_string_append(new_ref, "\n\t");
1576 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1579 slist_free_strings(ref_id_list);
1580 g_slist_free(ref_id_list);
1582 new_ref_str = new_ref->str;
1583 g_string_free(new_ref, FALSE);
1588 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
1589 const gchar *fmt, const gchar *qmark,
1592 GtkSText *text = GTK_STEXT(compose->text);
1593 static MsgInfo dummyinfo;
1594 gchar *quote_str = NULL;
1600 msginfo = &dummyinfo;
1602 if (qmark != NULL) {
1603 quote_fmt_init(msginfo, NULL, NULL);
1604 quote_fmt_scan_string(qmark);
1607 buf = quote_fmt_get_buffer();
1609 alertpanel_error(_("Quote mark format error."));
1611 Xstrdup_a(quote_str, buf, return NULL)
1614 if (fmt && *fmt != '\0') {
1615 quote_fmt_init(msginfo, quote_str, body);
1616 quote_fmt_scan_string(fmt);
1619 buf = quote_fmt_get_buffer();
1621 alertpanel_error(_("Message reply/forward format error."));
1627 gtk_stext_freeze(text);
1629 for (p = buf; *p != '\0'; ) {
1630 lastp = strchr(p, '\n');
1631 len = lastp ? lastp - p + 1 : -1;
1632 gtk_stext_insert(text, NULL, NULL, NULL, p, len);
1639 gtk_stext_thaw(text);
1644 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1645 gboolean to_all, gboolean to_ml,
1646 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 if (!compose->replyto && to_ml && compose->ml_post
1660 && !(msginfo->folder && msginfo->folder->prefs->enable_default_reply_to))
1661 compose_entry_append(compose,
1664 else if (!(to_all || ignore_replyto)
1666 && msginfo->folder->prefs->enable_default_reply_to) {
1667 compose_entry_append(compose,
1668 msginfo->folder->prefs->default_reply_to,
1671 compose_entry_append(compose,
1672 (compose->replyto && !ignore_replyto)
1674 : msginfo->from ? msginfo->from : "",
1678 compose_entry_append
1679 (compose, msginfo->from ? msginfo->from : "",
1682 if (compose->followup_to && !strncmp(compose->followup_to, "poster", 6)) {
1683 compose_entry_append
1685 ((compose->replyto && !ignore_replyto)
1687 : msginfo->from ? msginfo->from : ""),
1690 compose_entry_append
1692 compose->followup_to ? compose->followup_to
1693 : compose->newsgroups ? compose->newsgroups
1695 COMPOSE_NEWSGROUPS);
1700 if (msginfo->subject && *msginfo->subject) {
1701 gchar *buf, *buf2, *p;
1703 buf = g_strdup(msginfo->subject);
1704 while (!strncasecmp(buf, "Re:", 3)) {
1706 while (isspace(*p)) p++;
1707 memmove(buf, p, strlen(p) + 1);
1710 buf2 = g_strdup_printf("Re: %s", buf);
1711 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1715 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1717 if (to_ml && compose->ml_post) return;
1718 if (!to_all || compose->account->protocol == A_NNTP) return;
1720 if (compose->replyto) {
1721 Xstrdup_a(replyto, compose->replyto, return);
1722 extract_address(replyto);
1724 if (msginfo->from) {
1725 Xstrdup_a(from, msginfo->from, return);
1726 extract_address(from);
1729 if (replyto && from)
1730 cc_list = address_list_append(cc_list, from);
1731 cc_list = address_list_append(cc_list, msginfo->to);
1732 cc_list = address_list_append(cc_list, compose->cc);
1734 to_table = g_hash_table_new(g_str_hash, g_str_equal);
1736 g_hash_table_insert(to_table, replyto, GINT_TO_POINTER(1));
1737 if (compose->account)
1738 g_hash_table_insert(to_table, compose->account->address,
1739 GINT_TO_POINTER(1));
1741 /* remove address on To: and that of current account */
1742 for (cur = cc_list; cur != NULL; ) {
1743 GSList *next = cur->next;
1745 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1746 cc_list = g_slist_remove(cc_list, cur->data);
1748 g_hash_table_insert(to_table, cur->data, cur);
1752 g_hash_table_destroy(to_table);
1755 for (cur = cc_list; cur != NULL; cur = cur->next)
1756 compose_entry_append(compose, (gchar *)cur->data,
1758 slist_free_strings(cc_list);
1759 g_slist_free(cc_list);
1763 #define SET_ENTRY(entry, str) \
1766 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1769 #define SET_ADDRESS(type, str) \
1772 compose_entry_append(compose, str, type); \
1775 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1777 g_return_if_fail(msginfo != NULL);
1779 SET_ENTRY(subject_entry, msginfo->subject);
1780 SET_ADDRESS(COMPOSE_TO, msginfo->to);
1781 SET_ADDRESS(COMPOSE_CC, compose->cc);
1782 SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1783 SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1785 compose_update_priority_menu_item(compose);
1787 compose_update_gnupg_mode_menu_item(compose);
1789 compose_show_first_last_header(compose, TRUE);
1796 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1800 size_t buf_len = 128;
1802 if (strlen(sigfile) < 2)
1805 sigprg = popen(sigfile+1, "r");
1808 buf = g_malloc(buf_len);
1811 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1812 "Unable to insert signature (malloc failed)\n", -1);
1818 while (!feof(sigprg)) {
1819 bzero(buf, buf_len);
1820 fread(buf, buf_len-1, 1, sigprg);
1821 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1829 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1830 "Can't exec file: ", -1);
1831 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1836 static void compose_insert_sig(Compose *compose)
1840 if (compose->account && compose->account->sig_path)
1841 sigfile = g_strdup(compose->account->sig_path);
1843 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1844 DEFAULT_SIGNATURE, NULL);
1846 if (!is_file_or_fifo_exist(sigfile) && sigfile[0] != '|') {
1851 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1852 if (prefs_common.sig_sep) {
1853 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1854 prefs_common.sig_sep, -1);
1855 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1859 if (sigfile[0] == '|')
1860 compose_exec_sig(compose, sigfile);
1862 compose_insert_file(compose, sigfile);
1866 static void compose_insert_file(Compose *compose, const gchar *file)
1868 GtkSText *text = GTK_STEXT(compose->text);
1869 gchar buf[BUFFSIZE];
1873 g_return_if_fail(file != NULL);
1875 if ((fp = fopen(file, "rb")) == NULL) {
1876 FILE_OP_ERROR(file, "fopen");
1880 gtk_stext_freeze(text);
1882 while (fgets(buf, sizeof(buf), fp) != NULL) {
1883 /* strip <CR> if DOS/Windows file,
1884 replace <CR> with <LF> if Macintosh file. */
1887 if (len > 0 && buf[len - 1] != '\n') {
1889 if (buf[len] == '\r') buf[len] = '\n';
1891 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1894 gtk_stext_thaw(text);
1899 static void compose_attach_append(Compose *compose, const gchar *file,
1900 const gchar *filename,
1901 const gchar *content_type)
1904 gchar *text[N_ATTACH_COLS];
1909 if (!is_file_exist(file)) {
1910 g_warning("File %s doesn't exist\n", file);
1913 if ((size = get_file_size(file)) < 0) {
1914 g_warning("Can't get file size of %s\n", file);
1918 alertpanel_notice(_("File %s is empty."), file);
1921 if ((fp = fopen(file, "rb")) == NULL) {
1922 alertpanel_error(_("Can't read %s."), file);
1927 #if 0 /* NEW COMPOSE GUI */
1928 if (!compose->use_attach) {
1929 GtkItemFactory *ifactory;
1930 GtkWidget *menuitem;
1932 ifactory = gtk_item_factory_from_widget(compose->menubar);
1933 menuitem = gtk_item_factory_get_item(ifactory,
1934 "/View/Attachment");
1935 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1939 ainfo = g_new0(AttachInfo, 1);
1940 ainfo->file = g_strdup(file);
1943 ainfo->content_type = g_strdup(content_type);
1944 if (!strcasecmp(content_type, "message/rfc822")) {
1945 ainfo->encoding = ENC_7BIT;
1946 ainfo->name = g_strdup_printf
1948 g_basename(filename ? filename : file));
1950 if (!g_strncasecmp(content_type, "text", 4))
1952 procmime_get_encoding_for_file(file);
1954 ainfo->encoding = ENC_BASE64;
1955 ainfo->name = g_strdup
1956 (g_basename(filename ? filename : file));
1959 ainfo->content_type = procmime_get_mime_type(file);
1960 if (!ainfo->content_type) {
1961 ainfo->content_type =
1962 g_strdup("application/octet-stream");
1963 ainfo->encoding = ENC_BASE64;
1964 } else if (!g_strncasecmp(ainfo->content_type, "text", 4))
1965 ainfo->encoding = procmime_get_encoding_for_file(file);
1967 ainfo->encoding = ENC_BASE64;
1968 ainfo->name = g_strdup(g_basename(filename ? filename : file));
1972 text[COL_MIMETYPE] = ainfo->content_type;
1973 text[COL_SIZE] = to_human_readable(size);
1974 text[COL_NAME] = ainfo->name;
1976 row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1977 gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1980 #define IS_FIRST_PART_TEXT(info) \
1981 ((info->mime_type == MIME_TEXT || info->mime_type == MIME_TEXT_HTML || \
1982 info->mime_type == MIME_TEXT_ENRICHED) || \
1983 (info->mime_type == MIME_MULTIPART && info->content_type && \
1984 !strcasecmp(info->content_type, "multipart/alternative") && \
1985 (info->children && \
1986 (info->children->mime_type == MIME_TEXT || \
1987 info->children->mime_type == MIME_TEXT_HTML || \
1988 info->children->mime_type == MIME_TEXT_ENRICHED))))
1990 static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
1997 mimeinfo = procmime_scan_message(msginfo);
1998 if (!mimeinfo) return;
2000 /* skip first text (presumably message body) */
2001 child = mimeinfo->children;
2002 if (!child || IS_FIRST_PART_TEXT(mimeinfo)) {
2003 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);
2017 if(child->parent && child->parent->parent
2018 && !strcasecmp(child->parent->parent->content_type, "multipart/signed")
2019 && child->mime_type == MIME_TEXT) {
2020 /* this is the main text part of a signed message */
2021 child = procmime_mimeinfo_next(child);
2024 outfile = procmime_get_tmp_file_name(child);
2025 if (procmime_get_part(outfile, infile, child) < 0)
2026 g_warning("Can't get the part of multipart message.");
2027 else if (compose->mode != COMPOSE_REEDIT || strcmp(child->content_type, "application/pgp-signature"))
2028 compose_attach_append
2030 child->filename ? child->filename : child->name,
2031 child->content_type);
2033 child = child->next;
2037 procmime_mimeinfo_free_all(mimeinfo);
2040 #undef IS_FIRST_PART_TEXT
2042 #define GET_CHAR(pos, buf, len) \
2044 if (text->use_wchar) \
2045 len = wctomb(buf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
2047 buf[0] = GTK_STEXT_INDEX(text, (pos)); \
2052 #define INDENT_CHARS ">|#"
2053 #define SPACE_CHARS " \t"
2055 static void compose_wrap_line(Compose *compose)
2057 GtkSText *text = GTK_STEXT(compose->text);
2058 gint ch_len, last_ch_len;
2059 gchar cbuf[MB_LEN_MAX], last_ch;
2063 gint p_start, p_end;
2064 gint line_pos, cur_pos;
2065 gint line_len, cur_len;
2067 gtk_stext_freeze(text);
2069 text_len = gtk_stext_get_length(text);
2071 /* check to see if the point is on the paragraph mark (empty line). */
2072 cur_pos = gtk_stext_get_point(text);
2073 GET_CHAR(cur_pos, cbuf, ch_len);
2074 if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
2076 goto compose_end; /* on the paragraph mark */
2077 GET_CHAR(cur_pos - 1, cbuf, ch_len);
2078 if (ch_len == 1 && *cbuf == '\n')
2079 goto compose_end; /* on the paragraph mark */
2082 /* find paragraph start. */
2083 line_end = quoted = 0;
2084 for (p_start = cur_pos; p_start >= 0; --p_start) {
2085 GET_CHAR(p_start, cbuf, ch_len);
2086 if (ch_len == 1 && *cbuf == '\n') {
2088 goto compose_end; /* quoted part */
2096 && strchr(prefs_common.quote_chars, *cbuf))
2098 else if (ch_len != 1 || !isspace(*cbuf))
2107 /* find paragraph end. */
2109 for (p_end = cur_pos; p_end < text_len; p_end++) {
2110 GET_CHAR(p_end, cbuf, ch_len);
2111 if (ch_len == 1 && *cbuf == '\n') {
2118 if (line_end && ch_len == 1 &&
2119 strchr(prefs_common.quote_chars, *cbuf))
2120 goto compose_end; /* quoted part */
2125 if (p_end >= text_len)
2128 if (p_start >= p_end)
2131 line_len = cur_len = 0;
2135 for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2138 GET_CHAR(cur_pos, cbuf, ch_len);
2145 if (ch_len == 1 && isspace(*cbuf))
2148 if (ch_len == 1 && *cbuf == '\n') {
2150 if (last_ch_len == 1 && !isspace(last_ch)) {
2151 if (cur_pos + 1 < p_end) {
2152 GET_CHAR(cur_pos + 1, cbuf, ch_len);
2153 if (ch_len == 1 && !isspace(*cbuf))
2157 gtk_stext_set_point(text, cur_pos + 1);
2158 gtk_stext_backward_delete(text, 1);
2160 gtk_stext_set_point(text, cur_pos);
2161 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2171 last_ch_len = ch_len;
2175 line_pos = cur_pos + 1;
2176 line_len = cur_len + ch_len;
2179 if (cur_len + ch_len > prefs_common.linewrap_len &&
2183 GET_CHAR(line_pos - 1, cbuf, ch_len);
2184 if (ch_len == 1 && isspace(*cbuf)) {
2185 gtk_stext_set_point(text, line_pos);
2186 gtk_stext_backward_delete(text, 1);
2195 gtk_stext_set_point(text, line_pos);
2196 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2200 cur_len = cur_len - line_len + ch_len;
2206 line_pos = cur_pos + 1;
2207 line_len = cur_len + ch_len;
2213 gtk_stext_thaw(text);
2218 /* Darko: used when I debug wrapping */
2219 void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
2222 gchar cbuf[MB_LEN_MAX];
2224 printf("%d [", pos);
2225 for (i = pos; i < tlen; i++) {
2226 GET_CHAR(i, cbuf, clen);
2227 if (clen < 0) break;
2228 if (breakoncr && clen == 1 && cbuf[0] == '\n')
2230 fwrite(cbuf, clen, 1, stdout);
2238 WAIT_FOR_INDENT_CHAR,
2239 WAIT_FOR_INDENT_CHAR_OR_SPACE
2242 /* return indent length, we allow:
2243 > followed by spaces/tabs
2244 | followed by spaces/tabs
2245 uppercase characters immediately followed by >,
2246 and the repeating sequences of the above */
2247 /* return indent length */
2248 static guint get_indent_length(GtkSText *text, guint start_pos, guint text_len)
2251 guint i, ch_len, alnum_cnt = 0;
2252 IndentState state = WAIT_FOR_INDENT_CHAR;
2253 gchar cbuf[MB_LEN_MAX];
2257 for (i = start_pos; i < text_len; i++) {
2258 GET_CHAR(i, cbuf, ch_len);
2262 if (cbuf[0] == '\n')
2265 is_indent = strchr(prefs_common.quote_chars, cbuf[0]) ? TRUE : FALSE;
2266 is_space = strchr(SPACE_CHARS, cbuf[0]) ? TRUE : FALSE;
2269 case WAIT_FOR_SPACE:
2270 if (is_space == FALSE)
2272 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2274 case WAIT_FOR_INDENT_CHAR_OR_SPACE:
2275 if (is_indent == FALSE && is_space == FALSE &&
2278 if (is_space == TRUE) {
2280 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2281 } else if (is_indent == TRUE) {
2283 state = WAIT_FOR_SPACE;
2286 state = WAIT_FOR_INDENT_CHAR;
2289 case WAIT_FOR_INDENT_CHAR:
2290 if (is_indent == FALSE && !isupper(cbuf[0]))
2292 if (is_indent == TRUE) {
2294 && !strchr(prefs_common.quote_chars, cbuf[0]))
2297 state = WAIT_FOR_SPACE;
2308 if ((i_len > 0) && (state == WAIT_FOR_INDENT_CHAR))
2314 /* insert quotation string when line was wrapped */
2315 static guint ins_quote(GtkSText *text, guint indent_len,
2316 guint prev_line_pos, guint text_len,
2319 guint i, ins_len = 0;
2323 for (i = 0; i < indent_len; i++) {
2324 ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2325 gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2327 ins_len = indent_len;
2333 /* check if we should join the next line */
2334 static gboolean join_next_line(GtkSText *text, guint start_pos, guint tlen,
2335 guint prev_ilen, gboolean autowrap)
2337 guint indent_len, ch_len;
2338 gboolean do_join = FALSE;
2339 gchar cbuf[MB_LEN_MAX];
2341 indent_len = get_indent_length(text, start_pos, tlen);
2343 if ((autowrap || indent_len > 0) && indent_len == prev_ilen) {
2344 GET_CHAR(start_pos + indent_len, cbuf, ch_len);
2345 if (ch_len > 0 && (cbuf[0] != '\n'))
2352 static void compose_wrap_line_all(Compose *compose)
2354 compose_wrap_line_all_full(compose, FALSE);
2357 #define STEXT_FREEZE() \
2358 if (!frozen) { gtk_stext_freeze(text); frozen = TRUE; }
2360 static void compose_wrap_line_all_full(Compose *compose, gboolean autowrap)
2362 GtkSText *text = GTK_STEXT(compose->text);
2364 guint line_pos = 0, cur_pos = 0, p_pos = 0;
2365 gint line_len = 0, cur_len = 0;
2367 gboolean is_new_line = TRUE, do_delete = FALSE;
2369 gboolean linewrap_quote = TRUE;
2370 gboolean set_editable_pos = FALSE;
2371 gint editable_pos = 0;
2372 gboolean frozen = FALSE;
2373 guint linewrap_len = prefs_common.linewrap_len;
2374 gchar *qfmt = prefs_common.quotemark;
2375 gchar cbuf[MB_LEN_MAX];
2377 tlen = gtk_stext_get_length(text);
2379 for (; cur_pos < tlen; cur_pos++) {
2380 /* mark position of new line - needed for quotation wrap */
2383 i_len = get_indent_length(text, cur_pos, tlen);
2385 is_new_line = FALSE;
2388 g_print("new line i_len=%d p_pos=", i_len);
2389 dump_text(text, p_pos, tlen, 1);
2393 GET_CHAR(cur_pos, cbuf, ch_len);
2395 /* fix line length for tabs */
2396 if (ch_len == 1 && *cbuf == '\t') {
2397 guint tab_width = text->default_tab_width;
2398 guint tab_offset = line_len % tab_width;
2401 g_print("found tab at pos=%d line_len=%d ", cur_pos,
2405 line_len += tab_width - tab_offset - 1;
2409 printf("new_len=%d\n", line_len);
2413 /* we have encountered line break */
2414 if (ch_len == 1 && *cbuf == '\n') {
2416 gchar cb[MB_LEN_MAX];
2418 /* should we join the next line */
2419 if ((autowrap || i_len != cur_len) && do_delete &&
2421 (text, cur_pos + 1, tlen, i_len, autowrap))
2427 g_print("found CR at %d do_del is %d next line is ",
2428 cur_pos, do_delete);
2429 dump_text(text, cur_pos + 1, tlen, 1);
2432 /* skip delete if it is continuous URL */
2433 if (do_delete && (line_pos - p_pos <= i_len) &&
2434 gtk_stext_is_uri_string(text, line_pos, tlen))
2438 g_print("l_len=%d wrap_len=%d do_del=%d\n",
2439 line_len, linewrap_len, do_delete);
2441 /* should we delete to perform smart wrapping */
2442 if (line_len < linewrap_len && do_delete) {
2444 /* get rid of newline */
2445 gtk_stext_set_point(text, cur_pos);
2446 gtk_stext_forward_delete(text, 1);
2449 /* if text starts with quote fmt or with
2450 indent string, delete them */
2453 ilen = gtk_stext_str_compare_n
2454 (text, cur_pos, p_pos, i_len,
2457 gtk_stext_forward_delete
2463 GET_CHAR(cur_pos, cb, clen);
2465 /* insert space if it's alphanumeric */
2466 if ((cur_pos != line_pos) &&
2467 ((clen > 1) || isalnum(cb[0]))) {
2468 gtk_stext_insert(text, NULL, NULL,
2473 /* and start over with current line */
2474 cur_pos = p_pos - 1;
2476 line_len = cur_len = 0;
2480 g_print("after delete l_pos=");
2481 dump_text(text, line_pos, tlen, 1);
2486 /* mark new line beginning */
2487 line_pos = cur_pos + 1;
2488 line_len = cur_len = 0;
2499 /* possible line break */
2500 if (ch_len == 1 && isspace(*cbuf)) {
2501 line_pos = cur_pos + 1;
2502 line_len = cur_len + ch_len;
2505 /* are we over wrapping length set in preferences ? */
2506 if (cur_len + ch_len > linewrap_len) {
2510 g_print("should wrap cur_pos=%d ", cur_pos);
2511 dump_text(text, p_pos, tlen, 1);
2512 dump_text(text, line_pos, tlen, 1);
2514 /* force wrapping if it is one long word but not URL */
2515 if (line_pos - p_pos <= i_len)
2516 if (!gtk_stext_is_uri_string
2517 (text, line_pos, tlen))
2518 line_pos = cur_pos - 1;
2520 g_print("new line_pos=%d\n", line_pos);
2523 GET_CHAR(line_pos - 1, cbuf, clen);
2525 /* if next character is space delete it */
2526 if (clen == 1 && isspace(*cbuf)) {
2527 if (p_pos + i_len != line_pos ||
2528 !gtk_stext_is_uri_string
2529 (text, line_pos, tlen)) {
2531 /* workaround for correct cursor
2533 if (set_editable_pos == FALSE) {
2534 editable_pos = gtk_editable_get_position(GTK_EDITABLE(text));
2535 if (editable_pos == line_pos)
2536 set_editable_pos = TRUE;
2538 gtk_stext_set_point(text, line_pos);
2539 gtk_stext_backward_delete(text, 1);
2548 /* if it is URL at beginning of line don't wrap */
2549 if (p_pos + i_len == line_pos &&
2550 gtk_stext_is_uri_string(text, line_pos, tlen)) {
2552 g_print("found URL at ");
2553 dump_text(text, line_pos, tlen, 1);
2560 gtk_stext_set_point(text, line_pos);
2561 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2562 /* gtk_stext_compact_buffer(text); */
2565 /* for loop will increase it */
2566 cur_pos = line_pos - 1;
2567 /* start over with current line */
2569 line_len = cur_len = 0;
2570 if (autowrap || i_len > 0)
2575 g_print("after CR insert ");
2576 dump_text(text, line_pos, tlen, 1);
2577 dump_text(text, cur_pos, tlen, 1);
2580 /* should we insert quotation ? */
2581 if (linewrap_quote && i_len) {
2582 /* only if line is not already quoted */
2583 if (!gtk_stext_str_compare
2584 (text, line_pos, tlen, qfmt)) {
2587 if (line_pos - p_pos > i_len) {
2589 (text, i_len, p_pos,
2594 g_print("after quote insert ");
2595 dump_text(text, line_pos, tlen, 1);
2603 line_pos = cur_pos + 1;
2604 line_len = cur_len + ch_len;
2606 /* advance to next character in buffer */
2611 gtk_stext_thaw(text);
2613 if (set_editable_pos && editable_pos <= tlen)
2614 gtk_editable_set_position(GTK_EDITABLE(text), editable_pos);
2620 static void compose_set_title(Compose *compose)
2625 edited = compose->modified ? _(" [Edited]") : "";
2626 if (compose->account && compose->account->address)
2627 str = g_strdup_printf(_("%s - Compose message%s"),
2628 compose->account->address, edited);
2630 str = g_strdup_printf(_("Compose message%s"), edited);
2631 gtk_window_set_title(GTK_WINDOW(compose->window), str);
2636 * compose_current_mail_account:
2638 * Find a current mail account (the currently selected account, or the
2639 * default account, if a news account is currently selected). If a
2640 * mail account cannot be found, display an error message.
2642 * Return value: Mail account, or NULL if not found.
2644 static PrefsAccount *
2645 compose_current_mail_account(void)
2649 if (cur_account && cur_account->protocol != A_NNTP)
2652 ac = account_get_default();
2653 if (!ac || ac->protocol == A_NNTP) {
2654 alertpanel_error(_("Account for sending mail is not specified.\n"
2655 "Please select a mail account before sending."));
2662 static void compose_select_account(Compose *compose, PrefsAccount *account)
2664 GtkWidget *menuitem;
2665 GtkItemFactory *ifactory;
2667 g_return_if_fail(account != NULL);
2669 compose->account = account;
2671 compose_set_title(compose);
2673 ifactory = gtk_item_factory_from_widget(compose->menubar);
2675 if (account->protocol == A_NNTP) {
2676 gtk_widget_show(compose->newsgroups_hbox);
2677 gtk_widget_show(compose->newsgroups_entry);
2678 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 4);
2679 compose->use_newsgroups = TRUE;
2681 menuitem = gtk_item_factory_get_item(ifactory, "/View/To");
2682 gtk_check_menu_item_set_active
2683 (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2684 gtk_widget_set_sensitive(menuitem, TRUE);
2685 menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
2686 gtk_check_menu_item_set_active
2687 (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2688 gtk_widget_set_sensitive(menuitem, TRUE);
2690 menu_set_sensitive(ifactory, "/View/Followup to", TRUE);
2692 gtk_widget_hide(compose->newsgroups_hbox);
2693 gtk_widget_hide(compose->newsgroups_entry);
2694 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 2, 0);
2695 gtk_widget_queue_resize(compose->table_vbox);
2696 compose->use_newsgroups = FALSE;
2698 menuitem = gtk_item_factory_get_item(ifactory, "/View/To");
2699 gtk_check_menu_item_set_active
2700 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2701 gtk_widget_set_sensitive(menuitem, FALSE);
2702 menuitem = gtk_item_factory_get_item(ifactory, "/View/Cc");
2703 gtk_check_menu_item_set_active
2704 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2705 gtk_widget_set_sensitive(menuitem, FALSE);
2707 menuitem = gtk_item_factory_get_item(ifactory, "/View/Followup to");
2708 gtk_check_menu_item_set_active
2709 (GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2710 gtk_widget_set_sensitive(menuitem, FALSE);
2713 if (account->set_autocc) {
2714 compose_entry_show(compose, COMPOSE_ENTRY_CC);
2715 if (account->auto_cc && compose->mode != COMPOSE_REEDIT)
2716 compose_entry_set(compose, account->auto_cc,
2719 if (account->set_autobcc) {
2720 compose_entry_show(compose, COMPOSE_ENTRY_BCC);
2721 if (account->auto_bcc && compose->mode != COMPOSE_REEDIT)
2722 compose_entry_set(compose, account->auto_bcc,
2725 if (account->set_autoreplyto) {
2726 compose_entry_show(compose, COMPOSE_ENTRY_REPLY_TO);
2727 if (account->auto_replyto && compose->mode != COMPOSE_REEDIT)
2728 compose_entry_set(compose, account->auto_replyto,
2729 COMPOSE_ENTRY_REPLY_TO);
2732 menuitem = gtk_item_factory_get_item(ifactory, "/View/Ruler");
2733 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2734 prefs_common.show_ruler);
2738 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Sign");
2739 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2740 account->default_sign);
2741 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Encrypt");
2742 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2743 account->default_encrypt);
2745 activate_gnupg_mode(compose, account);
2746 #endif /* USE_GPGME */
2749 gboolean compose_check_for_valid_recipient(Compose *compose) {
2750 gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
2751 gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
2752 gboolean recipient_found = FALSE;
2756 /* free to and newsgroup list */
2757 slist_free_strings(compose->to_list);
2758 g_slist_free(compose->to_list);
2759 compose->to_list = NULL;
2761 slist_free_strings(compose->newsgroup_list);
2762 g_slist_free(compose->newsgroup_list);
2763 compose->newsgroup_list = NULL;
2765 /* search header entries for to and newsgroup entries */
2766 for (list = compose->header_list; list; list = list->next) {
2769 header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1);
2770 entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
2772 if (entry[0] != '\0') {
2773 for (strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
2774 if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2775 compose->to_list = address_list_append(compose->to_list, entry);
2776 recipient_found = TRUE;
2779 for (strptr = recipient_headers_news; *strptr != NULL; strptr++) {
2780 if (!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2781 compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
2782 recipient_found = TRUE;
2789 return recipient_found;
2792 static gboolean compose_check_entries(Compose *compose, gboolean check_subject)
2796 if (compose_check_for_valid_recipient(compose) == FALSE) {
2797 alertpanel_error(_("Recipient is not specified."));
2801 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
2802 if (*str == '\0' && check_subject == TRUE) {
2805 aval = alertpanel(_("Send"),
2806 _("Subject is empty. Send it anyway?"),
2807 _("Yes"), _("No"), NULL);
2808 if (aval != G_ALERTDEFAULT)
2815 gint compose_send(Compose *compose)
2822 if (compose_check_entries(compose, TRUE) == FALSE)
2825 val = compose_queue(compose, &msgnum, &folder);
2827 alertpanel_error(_("Could not queue message for sending"));
2831 msgpath = folder_item_fetch_msg(folder, msgnum);
2832 val = procmsg_send_message_queue(msgpath);
2835 folder_item_remove_msg(folder, msgnum);
2836 folder_update_item(folder, TRUE);
2841 #if 0 /* compose restructure */
2842 gint compose_send(Compose *compose)
2844 gchar tmp[MAXPATHLEN + 1];
2846 static gboolean lock = FALSE;
2850 g_return_val_if_fail(compose->account != NULL, -1);
2854 if (compose_check_entries(compose, TRUE) == FALSE) {
2859 /* write to temporary file */
2860 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg.%08x",
2861 get_tmp_dir(), G_DIR_SEPARATOR, (gint)compose);
2863 if (prefs_common.linewrap_at_send)
2864 compose_wrap_line_all(compose);
2866 if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2871 if (!compose->to_list && !compose->newsgroup_list) {
2872 g_warning("can't get recipient list.");
2878 if (compose->to_list) {
2881 #if 0 /* NEW COMPOSE GUI */
2882 if (compose->account->protocol != A_NNTP)
2883 ac = compose->account;
2885 ac = account_find_from_address(compose->account->address);
2887 if (cur_account && cur_account->protocol != A_NNTP)
2890 ac = account_get_default();
2892 if (!ac || ac->protocol == A_NNTP) {
2893 alertpanel_error(_("Account for sending mail is not specified.\n"
2894 "Please select a mail account before sending."));
2901 ac = compose->account;
2903 ok = send_message(tmp, ac, compose->to_list);
2906 if (ok == 0 && compose->newsgroup_list) {
2907 ok = news_post(FOLDER(compose->account->folder), tmp);
2909 alertpanel_error(_("Error occurred while posting the message to %s ."),
2910 compose->account->nntp_server);
2917 /* queue message if failed to send */
2919 if (prefs_common.queue_msg) {
2924 _("Error occurred while sending the message.\n"
2925 "Put this message into queue folder?"),
2926 _("OK"), _("Cancel"), NULL);
2927 if (G_ALERTDEFAULT == val) {
2928 ok = compose_queue(compose, tmp);
2930 alertpanel_error(_("Can't queue the message."));
2933 alertpanel_error(_("Error occurred while sending the message."));
2935 if (compose->mode == COMPOSE_REEDIT) {
2936 compose_remove_reedit_target(compose);
2937 if (compose->targetinfo)
2939 (compose->targetinfo->folder, TRUE);
2941 /* save message to outbox */
2942 if (prefs_common.savemsg) {
2945 outbox = account_get_special_folder
2946 (compose->account, F_OUTBOX);
2947 if (procmsg_save_to_outbox(outbox, tmp, FALSE) < 0)
2949 (_("Can't save the message to Sent."));
2951 folder_update_item(outbox, TRUE);
2961 static gboolean compose_use_attach(Compose *compose) {
2962 return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2965 static gint compose_redirect_write_headers_from_headerlist(Compose *compose,
2968 gchar buf[BUFFSIZE];
2970 gboolean first_address;
2972 ComposeHeaderEntry *headerentry;
2973 gchar *headerentryname;
2977 debug_print("Writing redirect header\n");
2979 cc_hdr = prefs_common.trans_hdr ? _("Cc:") : "Cc:";
2980 to_hdr = prefs_common.trans_hdr ? _("To:") : "To:";
2982 first_address = TRUE;
2983 for (list = compose->header_list; list; list = list->next) {
2984 headerentry = ((ComposeHeaderEntry *)list->data);
2985 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
2987 if (g_strcasecmp(headerentryname, cc_hdr) == 0
2988 || g_strcasecmp(headerentryname, to_hdr) == 0) {
2989 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
2990 Xstrdup_a(str, str, return -1);
2992 if (str[0] != '\0') {
2993 compose_convert_header
2994 (buf, sizeof(buf), str,
2995 strlen("Resent-To") + 2);
2996 if (first_address) {
2997 fprintf(fp, "Resent-To: ");
2998 first_address = FALSE;
3002 fprintf(fp, "%s", buf);
3006 /* if (!first_address) { */
3013 static gint compose_redirect_write_headers(Compose *compose, FILE *fp)
3015 gchar buf[BUFFSIZE];
3017 /* struct utsname utsbuf; */
3019 g_return_val_if_fail(fp != NULL, -1);
3020 g_return_val_if_fail(compose->account != NULL, -1);
3021 g_return_val_if_fail(compose->account->address != NULL, -1);
3024 get_rfc822_date(buf, sizeof(buf));
3025 fprintf(fp, "Resent-Date: %s\n", buf);
3028 if (compose->account->name && *compose->account->name) {
3029 compose_convert_header
3030 (buf, sizeof(buf), compose->account->name,
3032 fprintf(fp, "Resent-From: %s <%s>\n",
3033 buf, compose->account->address);
3035 fprintf(fp, "Resent-From: %s\n", compose->account->address);
3038 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3040 Xstrdup_a(str, str, return -1);
3043 compose_convert_header(buf, sizeof(buf), str,
3044 strlen("Subject: "));
3045 fprintf(fp, "Subject: %s\n", buf);
3049 /* Resent-Message-ID */
3050 if (compose->account->gen_msgid) {
3051 compose_generate_msgid(compose, buf, sizeof(buf));
3052 fprintf(fp, "Resent-Message-Id: <%s>\n", buf);
3053 compose->msgid = g_strdup(buf);
3056 compose_redirect_write_headers_from_headerlist(compose, fp);
3058 /* separator between header and body */
3064 static gint compose_redirect_write_to_file(Compose *compose, const gchar *file)
3069 gchar buf[BUFFSIZE];
3071 if ((fp = fopen(compose->redirect_filename, "rb")) == NULL) {
3072 FILE_OP_ERROR(file, "fopen");
3076 if ((fdest = fopen(file, "wb")) == NULL) {
3077 FILE_OP_ERROR(file, "fopen");
3082 /* chmod for security */
3083 if (change_file_mode_rw(fdest, file) < 0) {
3084 FILE_OP_ERROR(file, "chmod");
3085 g_warning("can't change file mode\n");
3088 while (procheader_get_unfolded_line(buf, sizeof(buf), fp)) {
3089 /* should filter returnpath, delivered-to */
3090 if (g_strncasecmp(buf, "Return-Path:",
3091 strlen("Return-Path:")) == 0 ||
3092 g_strncasecmp(buf, "Delivered-To:",
3093 strlen("Delivered-To:")) == 0 ||
3094 g_strncasecmp(buf, "Received:",
3095 strlen("Received:")) == 0 ||
3096 g_strncasecmp(buf, "Subject:",
3097 strlen("Subject:")) == 0 ||
3098 g_strncasecmp(buf, "X-UIDL:",
3099 strlen("X-UIDL:")) == 0)
3102 if (fputs(buf, fdest) == -1)
3105 if (!prefs_common.redirect_keep_from) {
3106 if (g_strncasecmp(buf, "From:",
3107 strlen("From:")) == 0) {
3108 fputs(" (by way of ", fdest);
3109 if (compose->account->name
3110 && *compose->account->name) {
3111 compose_convert_header
3113 compose->account->name,
3115 fprintf(fdest, "%s <%s>",
3117 compose->account->address);
3119 fprintf(fdest, "%s",
3120 compose->account->address);
3125 if (fputs("\n", fdest) == -1)
3129 compose_redirect_write_headers(compose, fdest);
3131 while ((len = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
3132 if (fwrite(buf, sizeof(gchar), len, fdest) != len) {
3133 FILE_OP_ERROR(file, "fwrite");
3139 if (fclose(fdest) == EOF) {
3140 FILE_OP_ERROR(file, "fclose");
3156 /* interfaces to rfc2015 to keep out the prefs stuff there.
3157 * returns 0 on success and -1 on error. */
3158 static gint compose_create_signers_list(Compose *compose, GSList **pkey_list)
3160 const gchar *key_id = NULL;
3163 switch (compose->account->sign_key) {
3164 case SIGN_KEY_DEFAULT:
3167 case SIGN_KEY_BY_FROM:
3168 key_id = compose->account->address;
3170 case SIGN_KEY_CUSTOM:
3171 key_id = compose->account->sign_key_id;
3177 key_list = rfc2015_create_signers_list(key_id);
3180 alertpanel_error(_("Could not find any key associated with "
3181 "currently selected key id `%s'."), key_id);
3185 *pkey_list = key_list;
3189 /* clearsign message body text */
3190 static gint compose_clearsign_text(Compose *compose, gchar **text)<