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;
141 #define B64_LINE_SIZE 57
142 #define B64_BUFFSIZE 77
144 #define MAX_REFERENCES_LEN 999
146 static GdkColor quote_color = {0, 0, 0, 0xbfff};
148 static GList *compose_list = NULL;
150 Compose *compose_generic_new (PrefsAccount *account,
154 static Compose *compose_create (PrefsAccount *account,
156 static void compose_toolbar_create (Compose *compose,
157 GtkWidget *container);
158 static GtkWidget *compose_account_option_menu_create
160 static void compose_set_template_menu (Compose *compose);
161 static void compose_template_apply (Compose *compose,
164 static void compose_destroy (Compose *compose);
166 static void compose_entries_set (Compose *compose,
167 const gchar *mailto);
168 static gint compose_parse_header (Compose *compose,
170 static gchar *compose_parse_references (const gchar *ref,
173 static gchar *compose_quote_fmt (Compose *compose,
179 static void compose_reply_set_entry (Compose *compose,
184 followup_and_reply_to);
185 static void compose_reedit_set_entry (Compose *compose,
187 static void compose_insert_sig (Compose *compose);
188 static void compose_insert_file (Compose *compose,
190 static void compose_attach_append (Compose *compose,
193 const gchar *content_type);
194 static void compose_attach_parts (Compose *compose,
196 static void compose_wrap_line (Compose *compose);
197 static void compose_wrap_line_all (Compose *compose);
198 static void compose_set_title (Compose *compose);
200 static PrefsAccount *compose_current_mail_account(void);
201 /* static gint compose_send (Compose *compose); */
202 static gboolean compose_check_for_valid_recipient
204 static gboolean compose_check_entries (Compose *compose);
205 static gint compose_write_to_file (Compose *compose,
208 static gint compose_write_body_to_file (Compose *compose,
210 static gint compose_remove_reedit_target (Compose *compose);
211 static gint compose_queue (Compose *compose,
214 static void compose_write_attach (Compose *compose,
216 static gint compose_write_headers (Compose *compose,
218 const gchar *charset,
219 EncodingType encoding,
222 static void compose_convert_header (gchar *dest,
226 static void compose_generate_msgid (Compose *compose,
230 static void compose_attach_info_free (AttachInfo *ainfo);
231 static void compose_attach_remove_selected (Compose *compose);
233 static void compose_attach_property (Compose *compose);
234 static void compose_attach_property_create (gboolean *cancelled);
235 static void attach_property_ok (GtkWidget *widget,
236 gboolean *cancelled);
237 static void attach_property_cancel (GtkWidget *widget,
238 gboolean *cancelled);
239 static gint attach_property_delete_event (GtkWidget *widget,
241 gboolean *cancelled);
242 static void attach_property_key_pressed (GtkWidget *widget,
244 gboolean *cancelled);
246 static void compose_exec_ext_editor (Compose *compose);
247 static gint compose_exec_ext_editor_real (const gchar *file);
248 static gboolean compose_ext_editor_kill (Compose *compose);
249 static void compose_input_cb (gpointer data,
251 GdkInputCondition condition);
252 static void compose_set_ext_editor_sensitive (Compose *compose,
255 static void compose_undo_state_changed (UndoMain *undostruct,
260 static gint calc_cursor_xpos (GtkSText *text,
264 static void compose_create_header_entry (Compose *compose);
265 static void compose_add_header_entry (Compose *compose, gchar *header, gchar *text);
267 /* callback functions */
269 static gboolean compose_edit_size_alloc (GtkEditable *widget,
270 GtkAllocation *allocation,
271 GtkSHRuler *shruler);
273 static void toolbar_send_cb (GtkWidget *widget,
275 static void toolbar_send_later_cb (GtkWidget *widget,
277 static void toolbar_draft_cb (GtkWidget *widget,
279 static void toolbar_insert_cb (GtkWidget *widget,
281 static void toolbar_attach_cb (GtkWidget *widget,
283 static void toolbar_sig_cb (GtkWidget *widget,
285 static void toolbar_ext_editor_cb (GtkWidget *widget,
287 static void toolbar_linewrap_cb (GtkWidget *widget,
289 static void toolbar_address_cb (GtkWidget *widget,
292 static void select_account (Compose *compose,
295 static void account_activated (GtkMenuItem *menuitem,
298 static void attach_selected (GtkCList *clist,
303 static void attach_button_pressed (GtkWidget *widget,
304 GdkEventButton *event,
306 static void attach_key_pressed (GtkWidget *widget,
310 static void compose_send_cb (gpointer data,
313 static void compose_send_later_cb (gpointer data,
317 static void compose_draft_cb (gpointer data,
321 static void compose_attach_cb (gpointer data,
324 static void compose_insert_file_cb (gpointer data,
328 static void compose_close_cb (gpointer data,
332 static void compose_address_cb (gpointer data,
335 static void compose_template_activate_cb(GtkWidget *widget,
338 static void compose_ext_editor_cb (gpointer data,
342 static gint compose_delete_cb (GtkWidget *widget,
345 static void compose_destroy_cb (GtkWidget *widget,
348 static void compose_undo_cb (Compose *compose);
349 static void compose_redo_cb (Compose *compose);
350 static void compose_cut_cb (Compose *compose);
351 static void compose_copy_cb (Compose *compose);
352 static void compose_paste_cb (Compose *compose);
353 static void compose_allsel_cb (Compose *compose);
355 static void compose_gtk_stext_action_cb (Compose *compose,
356 ComposeCallGtkSTextAction action);
358 static void compose_grab_focus_cb (GtkWidget *widget,
361 static void compose_changed_cb (GtkEditable *editable,
363 static void compose_button_press_cb (GtkWidget *widget,
364 GdkEventButton *event,
367 static void compose_key_press_cb (GtkWidget *widget,
373 static void compose_toggle_to_cb (gpointer data,
376 static void compose_toggle_cc_cb (gpointer data,
379 static void compose_toggle_bcc_cb (gpointer data,
382 static void compose_toggle_replyto_cb (gpointer data,
385 static void compose_toggle_followupto_cb(gpointer data,
388 static void compose_toggle_attach_cb (gpointer data,
392 static void compose_toggle_ruler_cb (gpointer data,
396 static void compose_toggle_sign_cb (gpointer data,
399 static void compose_toggle_encrypt_cb (gpointer data,
403 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
406 static void compose_attach_drag_received_cb (GtkWidget *widget,
407 GdkDragContext *drag_context,
410 GtkSelectionData *data,
414 static void compose_insert_drag_received_cb (GtkWidget *widget,
415 GdkDragContext *drag_context,
418 GtkSelectionData *data,
424 static void to_activated (GtkWidget *widget,
426 static void newsgroups_activated (GtkWidget *widget,
428 static void subject_activated (GtkWidget *widget,
430 static void cc_activated (GtkWidget *widget,
432 static void bcc_activated (GtkWidget *widget,
434 static void replyto_activated (GtkWidget *widget,
436 static void followupto_activated (GtkWidget *widget,
440 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
442 gboolean ignore_replyto,
443 gboolean followup_and_reply_to,
446 void compose_headerentry_changed_cb (GtkWidget *entry,
447 ComposeHeaderEntry *headerentry);
448 void compose_headerentry_key_press_event_cb(GtkWidget *entry,
450 ComposeHeaderEntry *headerentry);
452 static void compose_show_first_last_header (Compose *compose, gboolean show_first);
455 static void compose_check_all (Compose *compose);
456 static void compose_highlight_all (Compose *compose);
457 static void compose_check_backwards (Compose *compose);
458 static void compose_check_forwards_go (Compose *compose);
461 static gboolean compose_send_control_enter (Compose *compose);
462 static void text_activated (GtkWidget *widget,
465 static GtkItemFactoryEntry compose_popup_entries[] =
467 {N_("/_Add..."), NULL, compose_attach_cb, 0, NULL},
468 {N_("/_Remove"), NULL, compose_attach_remove_selected, 0, NULL},
469 {N_("/---"), NULL, NULL, 0, "<Separator>"},
470 {N_("/_Property..."), NULL, compose_attach_property, 0, NULL}
473 static GtkItemFactoryEntry compose_entries[] =
475 {N_("/_File"), NULL, NULL, 0, "<Branch>"},
476 {N_("/_File/_Attach file"), "<control>M", compose_attach_cb, 0, NULL},
477 {N_("/_File/_Insert file"), "<control>I", compose_insert_file_cb, 0, NULL},
478 {N_("/_File/Insert si_gnature"), "<control>G", compose_insert_sig, 0, NULL},
479 {N_("/_File/---"), NULL, NULL, 0, "<Separator>"},
480 {N_("/_File/_Close"), "<control>W", compose_close_cb, 0, NULL},
482 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
483 {N_("/_Edit/_Undo"), "<control>Z", compose_undo_cb, 0, NULL},
484 {N_("/_Edit/_Redo"), "<control>Y", compose_redo_cb, 0, NULL},
485 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
486 {N_("/_Edit/Cu_t"), "<control>X", compose_cut_cb, 0, NULL},
487 {N_("/_Edit/_Copy"), "<control>C", compose_copy_cb, 0, NULL},
488 {N_("/_Edit/_Paste"), "<control>V", compose_paste_cb, 0, NULL},
489 {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
490 {N_("/_Edit/A_dvanced"), NULL, NULL, 0, "<Branch>"},
491 {N_("/_Edit/A_dvanced/Move a character backward"),
493 compose_gtk_stext_action_cb,
494 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_CHARACTER,
496 {N_("/_Edit/A_dvanced/Move a character forward"),
498 compose_gtk_stext_action_cb,
499 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_CHARACTER,
501 {N_("/_Edit/A_dvanced/Move a word backward"),
503 compose_gtk_stext_action_cb,
504 COMPOSE_CALL_GTK_STEXT_MOVE_BACKWARD_WORD,
506 {N_("/_Edit/A_dvanced/Move a word forward"),
508 compose_gtk_stext_action_cb,
509 COMPOSE_CALL_GTK_STEXT_MOVE_FORWARD_WORD,
511 {N_("/_Edit/A_dvanced/Move to beginning of line"),
512 NULL, /* "<control>A" */
513 compose_gtk_stext_action_cb,
514 COMPOSE_CALL_GTK_STEXT_MOVE_BEGINNING_OF_LINE,
516 {N_("/_Edit/A_dvanced/Move to end of line"),
518 compose_gtk_stext_action_cb,
519 COMPOSE_CALL_GTK_STEXT_MOVE_END_OF_LINE,
521 {N_("/_Edit/A_dvanced/Move to previous line"),
523 compose_gtk_stext_action_cb,
524 COMPOSE_CALL_GTK_STEXT_MOVE_PREVIOUS_LINE,
526 {N_("/_Edit/A_dvanced/Move to next line"),
528 compose_gtk_stext_action_cb,
529 COMPOSE_CALL_GTK_STEXT_MOVE_NEXT_LINE,
531 {N_("/_Edit/A_dvanced/Delete a character backward"),
533 compose_gtk_stext_action_cb,
534 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_CHARACTER,
536 {N_("/_Edit/A_dvanced/Delete a character forward"),
538 compose_gtk_stext_action_cb,
539 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_CHARACTER,
541 {N_("/_Edit/A_dvanced/Delete a word backward"),
542 NULL, /* "<control>W" */
543 compose_gtk_stext_action_cb,
544 COMPOSE_CALL_GTK_STEXT_DELETE_BACKWARD_WORD,
546 {N_("/_Edit/A_dvanced/Delete a word forward"),
547 NULL, /* "<alt>D", */
548 compose_gtk_stext_action_cb,
549 COMPOSE_CALL_GTK_STEXT_DELETE_FORWARD_WORD,
551 {N_("/_Edit/A_dvanced/Delete line"),
553 compose_gtk_stext_action_cb,
554 COMPOSE_CALL_GTK_STEXT_DELETE_LINE,
556 {N_("/_Edit/A_dvanced/Delete entire line"),
558 compose_gtk_stext_action_cb,
559 COMPOSE_CALL_GTK_STEXT_DELETE_LINE_N,
561 {N_("/_Edit/A_dvanced/Delete to end of line"),
563 compose_gtk_stext_action_cb,
564 COMPOSE_CALL_GTK_STEXT_DELETE_TO_LINE_END,
566 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
567 {N_("/_Edit/_Wrap current paragraph"),
568 "<control>L", compose_wrap_line, 0, NULL},
569 {N_("/_Edit/Wrap all long _lines"),
570 "<control><alt>L", compose_wrap_line_all, 0, NULL},
571 {N_("/_Edit/Edit with e_xternal editor"),
572 "<shift><control>X", compose_ext_editor_cb, 0, NULL},
574 {N_("/_Spelling"), NULL, NULL, 0, "<Branch>"},
575 {N_("/_Spelling/_Check all or check selection"),
576 NULL, compose_check_all, 0, NULL},
577 {N_("/_Spelling/_Highlight all misspelled words"),
578 NULL, compose_highlight_all, 0, NULL},
579 {N_("/_Spelling/Check _backwards misspelled word"),
580 NULL, compose_check_backwards , 0, NULL},
581 {N_("/_Spelling/_Forward to next misspelled word"),
582 NULL, compose_check_forwards_go, 0, NULL},
583 {N_("/_Spelling/---"), NULL, NULL, 0, "<Separator>"},
584 {N_("/_Spelling/_Spelling Configuration"),
585 NULL, NULL, 0, "<Branch>"},
587 #if 0 /* NEW COMPOSE GUI */
588 {N_("/_View"), NULL, NULL, 0, "<Branch>"},
589 {N_("/_View/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
590 {N_("/_View/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
591 {N_("/_View/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
592 {N_("/_View/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
593 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
594 {N_("/_View/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
595 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
596 {N_("/_View/R_uler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
597 {N_("/_View/---"), NULL, NULL, 0, "<Separator>"},
598 {N_("/_View/_Attachment"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
600 {N_("/_Message"), NULL, NULL, 0, "<Branch>"},
601 {N_("/_Message/_Send"), "<control>Return",
602 compose_send_cb, 0, NULL},
603 {N_("/_Message/Send _later"), "<shift><control>S",
604 compose_send_later_cb, 0, NULL},
605 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
606 {N_("/_Message/Save to _draft folder"),
607 "<shift><control>D", compose_draft_cb, 0, NULL},
608 {N_("/_Message/Save and _keep editing"),
609 "<control>S", compose_draft_cb, 1, NULL},
610 #if 0 /* NEW COMPOSE GUI */
611 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
612 {N_("/_Message/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
613 {N_("/_Message/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
614 {N_("/_Message/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
615 {N_("/_Message/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
616 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
617 {N_("/_Message/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
618 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
619 {N_("/_Message/_Attach"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
622 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
623 {N_("/_Message/Si_gn"), NULL, compose_toggle_sign_cb , 0, "<ToggleItem>"},
624 {N_("/_Message/_Encrypt"), NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
625 #endif /* USE_GPGME */
626 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
627 {N_("/_Message/_Request Return Receipt"), NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
628 {N_("/_Tools"), NULL, NULL, 0, "<Branch>"},
629 {N_("/_Tools/Show _ruler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
630 {N_("/_Tools/_Address book"), "<shift><control>A", compose_address_cb , 0, NULL},
631 {N_("/_Tools/_Template"), NULL, NULL, 0, "<Branch>"},
632 {N_("/_Tools/Actio_ns"), NULL, NULL, 0, "<Branch>"},
633 {N_("/_Help"), NULL, NULL, 0, "<Branch>"},
634 {N_("/_Help/_About"), NULL, about_show, 0, NULL}
637 static GtkTargetEntry compose_mime_types[] =
639 {"text/uri-list", 0, 0}
642 Compose *compose_new(PrefsAccount *account)
644 return compose_generic_new(account, NULL, NULL);
647 Compose *compose_bounce(PrefsAccount *account, MsgInfo *msginfo)
651 GtkItemFactory *ifactory;
653 c = compose_generic_new(account, NULL, NULL);
655 filename = procmsg_get_message_file(msginfo);
656 if (filename == NULL)
659 c->bounce_filename = filename;
661 if (msginfo->subject)
662 gtk_entry_set_text(GTK_ENTRY(c->subject_entry),
664 gtk_editable_set_editable(GTK_EDITABLE(c->subject_entry), FALSE);
666 compose_quote_fmt(c, msginfo, "%M", NULL, NULL);
667 gtk_editable_set_editable(GTK_EDITABLE(c->text), FALSE);
669 ifactory = gtk_item_factory_from_widget(c->popupmenu);
670 menu_set_sensitive(ifactory, "/Add...", FALSE);
671 menu_set_sensitive(ifactory, "/Remove", FALSE);
672 menu_set_sensitive(ifactory, "/Property...", FALSE);
674 ifactory = gtk_item_factory_from_widget(c->menubar);
675 menu_set_sensitive(ifactory, "/File/Insert file", FALSE);
676 menu_set_sensitive(ifactory, "/File/Attach file", FALSE);
677 menu_set_sensitive(ifactory, "/File/Insert signature", FALSE);
678 menu_set_sensitive(ifactory, "/Edit/Paste", FALSE);
679 menu_set_sensitive(ifactory, "/Edit/Wrap current paragraph", FALSE);
680 menu_set_sensitive(ifactory, "/Edit/Wrap all long lines", FALSE);
681 menu_set_sensitive(ifactory, "/Edit/Edit with external editor", FALSE);
682 menu_set_sensitive(ifactory, "/Message/Attach", FALSE);
684 menu_set_sensitive(ifactory, "/Message/Sign", FALSE);
685 menu_set_sensitive(ifactory, "/Message/Encrypt", FALSE);
687 menu_set_sensitive(ifactory, "/Message/Request Return Receipt", FALSE);
688 menu_set_sensitive(ifactory, "/Tools/Template", FALSE);
690 gtk_widget_set_sensitive(c->insert_btn, FALSE);
691 gtk_widget_set_sensitive(c->attach_btn, FALSE);
692 gtk_widget_set_sensitive(c->sig_btn, FALSE);
693 gtk_widget_set_sensitive(c->exteditor_btn, FALSE);
694 gtk_widget_set_sensitive(c->linewrap_btn, FALSE);
699 Compose *compose_new_with_recipient(PrefsAccount *account, const gchar *mailto)
701 return compose_generic_new(account, mailto, NULL);
704 Compose *compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
706 return compose_generic_new(account, NULL, item);
709 Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderItem *item)
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 compose->replyinfo = NULL;
722 if (prefs_common.auto_sig)
723 compose_insert_sig(compose);
724 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
725 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
727 if (account->protocol != A_NNTP) {
729 compose_entries_set(compose, mailto);
731 } else if(item && item->prefs->enable_default_to) {
732 compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
734 if (item && item->ret_rcpt) {
735 GtkItemFactory *ifactory;
737 ifactory = gtk_item_factory_from_widget(compose->menubar);
738 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
742 compose_entry_append(compose, mailto, COMPOSE_NEWSGROUPS);
745 compose_show_first_last_header(compose, TRUE);
747 /* Set save folder */
748 if(item && item->prefs && item->prefs->save_copy_to_folder) {
749 gchar *folderidentifier;
751 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), prefs_common.savemsg);
752 folderidentifier = folder_item_get_identifier(item);
753 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
754 g_free(folderidentifier);
757 gtk_widget_grab_focus(compose->header_last->entry);
759 if (prefs_common.auto_exteditor)
760 compose_exec_ext_editor(compose);
765 #define CHANGE_FLAGS(msginfo) \
767 if (msginfo->folder->folder->change_flags != NULL) \
768 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
774 Compose *compose_new_followup_and_replyto(PrefsAccount *account,
775 const gchar *followupto, gchar * to)
779 if (!account) account = cur_account;
780 g_return_val_if_fail(account != NULL, NULL);
781 g_return_val_if_fail(account->protocol != A_NNTP, NULL);
783 compose = compose_create(account, COMPOSE_NEW);
785 if (prefs_common.auto_sig)
786 compose_insert_sig(compose);
787 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
788 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
790 compose_entry_append(compose, to, COMPOSE_TO);
791 compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
792 gtk_widget_grab_focus(compose->subject_entry);
798 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
799 gboolean ignore_replyto, const gchar *body)
801 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE,
805 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
807 gboolean ignore_replyto,
810 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE,
814 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
816 gboolean ignore_replyto,
817 gboolean followup_and_reply_to,
821 PrefsAccount *account;
822 PrefsAccount *reply_account;
825 g_return_if_fail(msginfo != NULL);
826 g_return_if_fail(msginfo->folder != NULL);
829 /* select the account set in folderitem's property (if enabled) */
830 if (msginfo->folder->prefs && msginfo->folder->prefs->enable_default_account)
831 account = account_find_from_id(msginfo->folder->prefs->default_account);
833 /* select the account for the whole folder (IMAP / NNTP) */
835 /* FIXME: this is not right, because folder may be nested. we should
836 * ascend the tree until we find a parent with proper account
838 account = msginfo->folder->folder->account;
840 /* select account by to: and cc: header if enabled */
841 if (prefs_common.reply_account_autosel) {
842 if (!account && msginfo->to) {
844 Xstrdup_a(to, msginfo->to, return);
846 account = account_find_from_address(to);
850 if(!get_header_from_msginfo(msginfo, cc, sizeof(cc), "CC:")) { /* Found a CC header */
852 account = account_find_from_address(cc);
857 /* select current account */
858 if (!account) account = cur_account;
859 g_return_if_fail(account != NULL);
861 if (ignore_replyto && account->protocol == A_NNTP &&
862 !followup_and_reply_to) {
864 account_find_from_address(account->address);
866 reply_account = compose_current_mail_account();
870 reply_account = account;
872 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
873 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
874 if (MSG_IS_IMAP(msginfo->flags))
875 imap_msg_set_perm_flags(msginfo, MSG_REPLIED);
876 CHANGE_FLAGS(msginfo);
878 compose = compose_create(account, COMPOSE_REPLY);
879 compose->replyinfo = procmsg_msginfo_copy(msginfo);
881 #if 0 /* NEW COMPOSE GUI */
882 if (followup_and_reply_to) {
883 gtk_widget_show(compose->to_hbox);
884 gtk_widget_show(compose->to_entry);
885 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
886 compose->use_to = TRUE;
889 if (msginfo->folder && msginfo->folder->ret_rcpt) {
890 GtkItemFactory *ifactory;
892 ifactory = gtk_item_factory_from_widget(compose->menubar);
893 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
896 /* Set save folder */
897 if(msginfo->folder && msginfo->folder->prefs && msginfo->folder->prefs->save_copy_to_folder) {
898 gchar *folderidentifier;
900 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
901 folderidentifier = folder_item_get_identifier(msginfo->folder);
902 gtk_entry_set_text(GTK_ENTRY(compose->savemsg_entry), folderidentifier);
903 g_free(folderidentifier);
906 if (compose_parse_header(compose, msginfo) < 0) return;
907 compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
908 followup_and_reply_to);
909 compose_show_first_last_header(compose, TRUE);
911 text = GTK_STEXT(compose->text);
912 gtk_stext_freeze(text);
918 if (prefs_common.quotemark && *prefs_common.quotemark)
919 qmark = prefs_common.quotemark;
923 quote_str = compose_quote_fmt(compose, msginfo,
924 prefs_common.quotefmt,
928 if (prefs_common.auto_sig)
929 compose_insert_sig(compose);
931 if (quote && prefs_common.linewrap_quote)
932 compose_wrap_line_all(compose);
934 gtk_editable_set_position(GTK_EDITABLE(text), 0);
935 gtk_stext_set_point(text, 0);
937 gtk_stext_thaw(text);
938 gtk_widget_grab_focus(compose->text);
940 if (prefs_common.auto_exteditor)
941 compose_exec_ext_editor(compose);
944 static void set_toolbar_style(Compose *compose);
946 static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
951 g_return_val_if_fail(mimeinfo != NULL, NULL);
953 base = mimeinfo->filename ? mimeinfo->filename
954 : mimeinfo->name ? mimeinfo->name : NULL;
956 if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
957 filename = g_strdup_printf("%s%smimetmp.%08x.html",
964 base = base ? base : "";
965 base = g_basename(base);
967 filename = g_strdup_printf("%s%smimetmp.%08x",
975 filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
981 static gchar *mime_extract_file(gchar *source, MimeInfo *partinfo)
985 if (!partinfo) return NULL;
987 filename = procmime_get_file_name(partinfo);
989 if (procmime_get_part(filename, source, partinfo) < 0)
991 (_("Can't get the part of multipart message."));
998 #define INSERT_FW_HEADER(var, hdr) \
999 if (msginfo->var && *msginfo->var) { \
1000 gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
1001 gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
1002 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
1005 Compose *compose_forward(PrefsAccount *account, MsgInfo *msginfo,
1006 gboolean as_attach, const gchar *body)
1009 /* PrefsAccount *account; */
1012 g_return_val_if_fail(msginfo != NULL, NULL);
1013 g_return_val_if_fail(msginfo->folder != NULL, NULL);
1015 account = msginfo->folder->folder->account;
1016 if (!account && msginfo->to && prefs_common.forward_account_autosel) {
1018 Xstrdup_a(to, msginfo->to, return NULL);
1019 extract_address(to);
1020 account = account_find_from_address(to);
1023 if(!account && prefs_common.forward_account_autosel) {
1025 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
1026 extract_address(cc);
1027 account = account_find_from_address(cc);
1031 if (account == NULL) {
1032 account = cur_account;
1034 account = msginfo->folder->folder->account;
1035 if (!account) account = cur_account;
1038 g_return_val_if_fail(account != NULL, NULL);
1040 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
1041 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
1042 if (MSG_IS_IMAP(msginfo->flags))
1043 imap_msg_unset_perm_flags(msginfo, MSG_REPLIED);
1044 CHANGE_FLAGS(msginfo);
1046 compose = compose_create(account, COMPOSE_FORWARD);
1048 if (msginfo->subject && *msginfo->subject) {
1049 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
1050 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
1054 text = GTK_STEXT(compose->text);
1055 gtk_stext_freeze(text);
1061 msgfile = procmsg_get_message_file_path(msginfo);
1062 if (!is_file_exist(msgfile))
1063 g_warning(_("%s: file not exist\n"), msgfile);
1065 compose_attach_append(compose, msgfile, msgfile,
1073 if (prefs_common.fw_quotemark &&
1074 *prefs_common.fw_quotemark)
1075 qmark = prefs_common.fw_quotemark;
1079 quote_str = compose_quote_fmt(compose, msginfo,
1080 prefs_common.fw_quotefmt,
1082 compose_attach_parts(compose, msginfo);
1085 if (prefs_common.auto_sig)
1086 compose_insert_sig(compose);
1088 if (prefs_common.linewrap_quote)
1089 compose_wrap_line_all(compose);
1091 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1092 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1094 gtk_stext_thaw(text);
1095 #if 0 /* NEW COMPOSE GUI */
1096 if (account->protocol != A_NNTP)
1097 gtk_widget_grab_focus(compose->to_entry);
1099 gtk_widget_grab_focus(compose->newsgroups_entry);
1101 gtk_widget_grab_focus(compose->header_last->entry);
1103 if (prefs_common.auto_exteditor)
1104 compose_exec_ext_editor(compose);
1109 #undef INSERT_FW_HEADER
1111 Compose *compose_forward_multiple(PrefsAccount *account, GSList *msginfo_list)
1118 g_return_val_if_fail(msginfo_list != NULL, NULL);
1120 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1121 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1125 if (account == NULL) {
1126 account = cur_account;
1128 account = msginfo->folder->folder->account;
1129 if (!account) account = cur_account;
1132 g_return_val_if_fail(account != NULL, NULL);
1134 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1135 MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
1136 MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
1137 CHANGE_FLAGS(((MsgInfo *)msginfo->data));
1140 compose = compose_create(account, COMPOSE_FORWARD);
1142 text = GTK_STEXT(compose->text);
1143 gtk_stext_freeze(text);
1145 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1146 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1147 if (!is_file_exist(msgfile))
1148 g_warning(_("%s: file not exist\n"), msgfile);
1150 compose_attach_append(compose, msgfile, msgfile,
1155 if (prefs_common.auto_sig)
1156 compose_insert_sig(compose);
1158 if (prefs_common.linewrap_quote)
1159 compose_wrap_line_all(compose);
1161 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1162 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1164 gtk_stext_thaw(text);
1165 #if 0 /* NEW COMPOSE GUI */
1166 if (account->protocol != A_NNTP)
1167 gtk_widget_grab_focus(compose->to_entry);
1169 gtk_widget_grab_focus(compose->newsgroups_entry);
1175 void compose_reedit(MsgInfo *msginfo)
1178 PrefsAccount *account = NULL;
1181 gchar buf[BUFFSIZE];
1183 g_return_if_fail(msginfo != NULL);
1184 g_return_if_fail(msginfo->folder != NULL);
1186 if (msginfo->folder->stype == F_QUEUE) {
1187 gchar queueheader_buf[BUFFSIZE];
1190 /* Select Account from queue headers */
1191 if (!get_header_from_msginfo(msginfo, queueheader_buf,
1192 sizeof(queueheader_buf), "NAID:")) {
1193 id = atoi(&queueheader_buf[5]);
1194 account = account_find_from_id(id);
1196 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1197 sizeof(queueheader_buf), "MAID:")) {
1198 id = atoi(&queueheader_buf[5]);
1199 account = account_find_from_id(id);
1201 if (!account && !get_header_from_msginfo(msginfo, queueheader_buf,
1202 sizeof(queueheader_buf), "S:")) {
1203 account = account_find_from_address(queueheader_buf);
1206 account = msginfo->folder->folder->account;
1208 if (!account && prefs_common.reedit_account_autosel) {
1209 gchar from[BUFFSIZE];
1210 if (!get_header_from_msginfo(msginfo, from, sizeof(from), "FROM:")){
1211 extract_address(from);
1212 account = account_find_from_address(from);
1215 if (!account) account = cur_account;
1216 g_return_if_fail(account != NULL);
1218 compose = compose_create(account, COMPOSE_REEDIT);
1219 compose->targetinfo = procmsg_msginfo_copy(msginfo);
1221 if (msginfo->folder->stype == F_QUEUE) {
1222 gchar queueheader_buf[BUFFSIZE];
1224 /* Set message save folder */
1225 if (!get_header_from_msginfo(msginfo, queueheader_buf, sizeof(queueheader_buf), "SCF:")) {
1228 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn), TRUE);
1229 gtk_editable_delete_text(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
1230 gtk_editable_insert_text(GTK_EDITABLE(compose->savemsg_entry), &queueheader_buf[4], strlen(&queueheader_buf[4]), &startpos);
1234 if (compose_parse_header(compose, msginfo) < 0) return;
1235 compose_reedit_set_entry(compose, msginfo);
1237 text = GTK_STEXT(compose->text);
1238 gtk_stext_freeze(text);
1240 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1241 g_warning(_("Can't get text part\n"));
1243 while (fgets(buf, sizeof(buf), fp) != NULL)
1244 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1247 compose_attach_parts(compose, msginfo);
1249 gtk_stext_thaw(text);
1250 gtk_widget_grab_focus(compose->text);
1252 if (prefs_common.auto_exteditor)
1253 compose_exec_ext_editor(compose);
1256 GList *compose_get_compose_list(void)
1258 return compose_list;
1261 void compose_entry_append(Compose *compose, const gchar *address,
1262 ComposeEntryType type)
1268 if (!address || *address == '\0') return;
1270 #if 0 /* NEW COMPOSE GUI */
1273 entry = GTK_ENTRY(compose->cc_entry);
1276 entry = GTK_ENTRY(compose->bcc_entry);
1278 case COMPOSE_NEWSGROUPS:
1279 entry = GTK_ENTRY(compose->newsgroups_entry);
1283 entry = GTK_ENTRY(compose->to_entry);
1287 text = gtk_entry_get_text(entry);
1289 gtk_entry_append_text(entry, ", ");
1290 gtk_entry_append_text(entry, address);
1298 header = N_("Bcc:");
1300 case COMPOSE_REPLYTO:
1301 header = N_("Reply-To:");
1303 case COMPOSE_NEWSGROUPS:
1304 header = N_("Newsgroups:");
1306 case COMPOSE_FOLLOWUPTO:
1307 header = N_( "Followup-To:");
1314 header = prefs_common.trans_hdr ? gettext(header) : header;
1316 compose_add_header_entry(compose, header, (gchar *)address);
1319 static void compose_entries_set(Compose *compose, const gchar *mailto)
1321 gchar *subject = NULL;
1329 Xstrdup_a(tmp_mailto, mailto, return);
1333 p = strchr(tmp_mailto, '?');
1340 gchar *field, *value;
1357 if (*value == '\0') continue;
1359 if (!g_strcasecmp(field, "subject")) {
1360 Xalloca(subject, strlen(value) + 1, return);
1361 decode_uri(subject, value);
1362 } else if (!g_strcasecmp(field, "cc")) {
1364 } else if (!g_strcasecmp(field, "bcc")) {
1366 } else if (!g_strcasecmp(field, "body")) {
1367 Xalloca(body, strlen(value) + 1, return);
1368 decode_uri(body, value);
1373 compose_entry_append(compose, to, COMPOSE_TO);
1375 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
1377 compose_entry_append(compose, cc, COMPOSE_CC);
1379 compose_entry_append(compose, bcc, COMPOSE_BCC);
1381 gtk_stext_insert(GTK_STEXT(compose->text),
1382 NULL, NULL, NULL, body, -1);
1383 gtk_stext_insert(GTK_STEXT(compose->text),
1384 NULL, NULL, NULL, "\n", 1);
1388 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1390 static HeaderEntry hentry[] = {{"Reply-To:", NULL, TRUE},
1391 {"Cc:", NULL, FALSE},
1392 {"References:", NULL, FALSE},
1393 {"Bcc:", NULL, FALSE},
1394 {"Newsgroups:", NULL, FALSE},
1395 {"Followup-To:", NULL, FALSE},
1396 {"X-Mailing-List:", NULL, FALSE},
1397 {"X-BeenThere:", NULL, FALSE},
1398 {NULL, NULL, FALSE}};
1408 H_X_MAILING_LIST = 6,
1414 g_return_val_if_fail(msginfo != NULL, -1);
1416 if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1417 procheader_get_header_fields(fp, hentry);
1420 if (hentry[H_REPLY_TO].body != NULL) {
1421 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1422 compose->replyto = hentry[H_REPLY_TO].body;
1423 hentry[H_REPLY_TO].body = NULL;
1425 if (hentry[H_CC].body != NULL) {
1426 conv_unmime_header_overwrite(hentry[H_CC].body);
1427 compose->cc = hentry[H_CC].body;
1428 hentry[H_CC].body = NULL;
1430 if (hentry[H_X_MAILING_LIST].body != NULL) {
1431 /* this is good enough to parse debian-devel */
1432 gchar *buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
1433 g_return_val_if_fail(buf != NULL, -1 );
1434 if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
1435 compose->mailinglist = g_strdup(buf);
1437 g_free(hentry[H_X_MAILING_LIST].body);
1438 hentry[H_X_MAILING_LIST].body = NULL ;
1440 if (hentry[H_X_BEENTHERE].body != NULL) {
1441 /* this is good enough to parse the sylpheed-claws lists */
1442 gchar *buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
1443 g_return_val_if_fail(buf != NULL, -1 );
1444 if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
1445 compose->mailinglist = g_strdup(buf);
1447 g_free(hentry[H_X_BEENTHERE].body);
1448 hentry[H_X_BEENTHERE].body = NULL ;
1450 if (hentry[H_REFERENCES].body != NULL) {
1451 if (compose->mode == COMPOSE_REEDIT)
1452 compose->references = hentry[H_REFERENCES].body;
1454 compose->references = compose_parse_references
1455 (hentry[H_REFERENCES].body, msginfo->msgid);
1456 g_free(hentry[H_REFERENCES].body);
1458 hentry[H_REFERENCES].body = NULL;
1460 if (hentry[H_BCC].body != NULL) {
1461 if (compose->mode == COMPOSE_REEDIT) {
1462 conv_unmime_header_overwrite(hentry[H_BCC].body);
1463 compose->bcc = hentry[H_BCC].body;
1465 g_free(hentry[H_BCC].body);
1466 hentry[H_BCC].body = NULL;
1468 if (hentry[H_NEWSGROUPS].body != NULL) {
1469 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1470 hentry[H_NEWSGROUPS].body = NULL;
1472 if (hentry[H_FOLLOWUP_TO].body != NULL) {
1473 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1474 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1475 hentry[H_FOLLOWUP_TO].body = NULL;
1478 if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1479 compose->inreplyto = g_strdup(msginfo->inreplyto);
1480 else if (compose->mode != COMPOSE_REEDIT &&
1481 msginfo->msgid && *msginfo->msgid) {
1482 compose->inreplyto = g_strdup(msginfo->msgid);
1484 if (!compose->references) {
1485 if (msginfo->inreplyto && *msginfo->inreplyto)
1486 compose->references =
1487 g_strdup_printf("<%s>\n\t<%s>",
1491 compose->references =
1492 g_strconcat("<", msginfo->msgid, ">",
1500 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1502 GSList *ref_id_list, *cur;
1506 ref_id_list = references_list_append(NULL, ref);
1507 if (!ref_id_list) return NULL;
1508 if (msgid && *msgid)
1509 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1514 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1515 /* "<" + Message-ID + ">" + CR+LF+TAB */
1516 len += strlen((gchar *)cur->data) + 5;
1518 if (len > MAX_REFERENCES_LEN) {
1519 /* remove second message-ID */
1520 if (ref_id_list && ref_id_list->next &&
1521 ref_id_list->next->next) {
1522 g_free(ref_id_list->next->data);
1523 ref_id_list = g_slist_remove
1524 (ref_id_list, ref_id_list->next->data);
1526 slist_free_strings(ref_id_list);
1527 g_slist_free(ref_id_list);
1534 new_ref = g_string_new("");
1535 for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1536 if (new_ref->len > 0)
1537 g_string_append(new_ref, "\n\t");
1538 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1541 slist_free_strings(ref_id_list);
1542 g_slist_free(ref_id_list);
1544 new_ref_str = new_ref->str;
1545 g_string_free(new_ref, FALSE);
1550 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
1551 const gchar *fmt, const gchar *qmark,
1554 GtkSText *text = GTK_STEXT(compose->text);
1555 gchar *quote_str = NULL;
1560 if (qmark != NULL) {
1561 quote_fmt_init(msginfo, NULL, NULL);
1562 quote_fmt_scan_string(qmark);
1565 buf = quote_fmt_get_buffer();
1567 alertpanel_error(_("Quote mark format error."));
1569 Xstrdup_a(quote_str, buf, return NULL)
1572 if (fmt && *fmt != '\0') {
1573 quote_fmt_init(msginfo, quote_str, body);
1574 quote_fmt_scan_string(fmt);
1577 buf = quote_fmt_get_buffer();
1579 alertpanel_error(_("Message reply/forward format error."));
1585 gtk_stext_freeze(text);
1587 for (p = buf; *p != '\0'; ) {
1588 lastp = strchr(p, '\n');
1589 len = lastp ? lastp - p + 1 : -1;
1590 gtk_stext_insert(text, NULL, NULL, NULL, p, len);
1597 gtk_stext_thaw(text);
1602 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1603 gboolean to_all, gboolean ignore_replyto,
1604 gboolean followup_and_reply_to)
1606 GSList *cc_list = NULL;
1609 gchar *replyto = NULL;
1610 GHashTable *to_table;
1612 g_return_if_fail(compose->account != NULL);
1613 g_return_if_fail(msginfo != NULL);
1615 if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
1616 compose_entry_append(compose,
1617 ((compose->replyto && !ignore_replyto)
1619 : (compose->mailinglist && !ignore_replyto)
1620 ? compose->mailinglist
1621 : msginfo->from ? msginfo->from : ""),
1624 if (compose->account->protocol == A_NNTP) {
1626 compose_entry_append
1627 (compose, msginfo->from ? msginfo->from : "",
1630 compose_entry_append
1632 compose->followup_to ? compose->followup_to
1633 : compose->newsgroups ? compose->newsgroups
1635 COMPOSE_NEWSGROUPS);
1638 if (msginfo->subject && *msginfo->subject) {
1639 gchar *buf, *buf2, *p;
1641 buf = g_strdup(msginfo->subject);
1642 while (!strncasecmp(buf, "Re:", 3)) {
1644 while (isspace(*p)) p++;
1645 memmove(buf, p, strlen(p) + 1);
1648 buf2 = g_strdup_printf("Re: %s", buf);
1649 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1653 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1655 if (!to_all || compose->account->protocol == A_NNTP) return;
1657 if (compose->replyto) {
1658 Xstrdup_a(replyto, compose->replyto, return);
1659 extract_address(replyto);
1661 if (msginfo->from) {
1662 Xstrdup_a(from, msginfo->from, return);
1663 extract_address(from);
1666 if (compose->mailinglist && from) {
1667 cc_list = address_list_append(cc_list, from);
1670 if (replyto && from)
1671 cc_list = address_list_append(cc_list, from);
1673 if (!compose->mailinglist)
1674 cc_list = address_list_append(cc_list, msginfo->to);
1676 cc_list = address_list_append(cc_list, compose->cc);
1678 to_table = g_hash_table_new(g_str_hash, g_str_equal);
1680 g_hash_table_insert(to_table, replyto, GINT_TO_POINTER(1));
1681 if (compose->account)
1682 g_hash_table_insert(to_table, compose->account->address,
1683 GINT_TO_POINTER(1));
1685 /* remove address on To: and that of current account */
1686 for (cur = cc_list; cur != NULL; ) {
1687 GSList *next = cur->next;
1689 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1690 cc_list = g_slist_remove(cc_list, cur->data);
1692 g_hash_table_insert(to_table, cur->data, cur);
1696 g_hash_table_destroy(to_table);
1699 for (cur = cc_list; cur != NULL; cur = cur->next)
1700 compose_entry_append(compose, (gchar *)cur->data,
1702 slist_free_strings(cc_list);
1703 g_slist_free(cc_list);
1707 #define SET_ENTRY(entry, str) \
1710 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1713 #define SET_ADDRESS(type, str) \
1716 compose_entry_append(compose, str, type); \
1719 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1721 g_return_if_fail(msginfo != NULL);
1723 SET_ENTRY(subject_entry, msginfo->subject);
1724 SET_ADDRESS(COMPOSE_TO, msginfo->to);
1725 SET_ADDRESS(COMPOSE_CC, compose->cc);
1726 SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1727 SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1729 compose_show_first_last_header(compose, TRUE);
1731 #if 0 /* NEW COMPOSE GUI */
1733 GtkItemFactory *ifactory;
1734 GtkWidget *menuitem;
1736 ifactory = gtk_item_factory_from_widget(compose->menubar);
1737 menuitem = gtk_item_factory_get_item(ifactory, "/View/Bcc");
1738 gtk_check_menu_item_set_active
1739 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1741 if (compose->replyto) {
1742 GtkItemFactory *ifactory;
1743 GtkWidget *menuitem;
1745 ifactory = gtk_item_factory_from_widget(compose->menubar);
1746 menuitem = gtk_item_factory_get_item
1747 (ifactory, "/View/Reply to");
1748 gtk_check_menu_item_set_active
1749 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1757 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1764 size_t buf_len = 128;
1766 if (strlen(sigfile) < 2)
1769 sigprg = popen(sigfile+1, "r");
1772 buf = g_malloc(buf_len);
1775 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1776 "Unable to insert signature (malloc failed)\n", -1);
1782 while (!feof(sigprg)) {
1783 bzero(buf, buf_len);
1784 fread(buf, buf_len-1, 1, sigprg);
1785 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1793 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1794 "Can't exec file: ", -1);
1795 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1800 static void compose_insert_sig(Compose *compose)
1804 if (compose->account && compose->account->sig_path)
1805 sigfile = g_strdup(compose->account->sig_path);
1807 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1808 DEFAULT_SIGNATURE, NULL);
1810 if (!is_file_or_fifo_exist(sigfile) && sigfile[0] != '|') {
1815 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1816 if (prefs_common.sig_sep) {
1817 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1818 prefs_common.sig_sep, -1);
1819 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1823 if (sigfile[0] == '|')
1824 compose_exec_sig(compose, sigfile);
1826 compose_insert_file(compose, sigfile);
1830 static void compose_insert_file(Compose *compose, const gchar *file)
1832 GtkSText *text = GTK_STEXT(compose->text);
1833 gchar buf[BUFFSIZE];
1837 g_return_if_fail(file != NULL);
1839 if ((fp = fopen(file, "rb")) == NULL) {
1840 FILE_OP_ERROR(file, "fopen");
1844 gtk_stext_freeze(text);
1846 while (fgets(buf, sizeof(buf), fp) != NULL) {
1847 /* strip <CR> if DOS/Windows file,
1848 replace <CR> with <LF> if Macintosh file. */
1851 if (len > 0 && buf[len - 1] != '\n') {
1853 if (buf[len] == '\r') buf[len] = '\n';
1855 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1858 gtk_stext_thaw(text);
1863 static void compose_attach_append(Compose *compose, const gchar *file,
1864 const gchar *filename,
1865 const gchar *content_type)
1868 gchar *text[N_ATTACH_COLS];
1873 if (!is_file_exist(file)) {
1874 g_warning(_("File %s doesn't exist\n"), file);
1877 if ((size = get_file_size(file)) < 0) {
1878 g_warning(_("Can't get file size of %s\n"), file);
1882 alertpanel_notice(_("File %s is empty."), file);
1885 if ((fp = fopen(file, "rb")) == NULL) {
1886 alertpanel_error(_("Can't read %s."), file);
1891 #if 0 /* NEW COMPOSE GUI */
1892 if (!compose->use_attach) {
1893 GtkItemFactory *ifactory;
1894 GtkWidget *menuitem;
1896 ifactory = gtk_item_factory_from_widget(compose->menubar);
1897 menuitem = gtk_item_factory_get_item(ifactory,
1898 "/View/Attachment");
1899 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1903 ainfo = g_new0(AttachInfo, 1);
1904 ainfo->file = g_strdup(file);
1907 ainfo->content_type = g_strdup(content_type);
1908 if (!strcasecmp(content_type, "message/rfc822")) {
1909 ainfo->encoding = ENC_7BIT;
1910 ainfo->name = g_strdup_printf
1912 g_basename(filename ? filename : file));
1914 ainfo->encoding = ENC_BASE64;
1915 ainfo->name = g_strdup
1916 (g_basename(filename ? filename : file));
1919 ainfo->content_type = procmime_get_mime_type(file);
1920 if (!ainfo->content_type)
1921 ainfo->content_type =
1922 g_strdup("application/octet-stream");
1923 ainfo->encoding = ENC_BASE64;
1924 ainfo->name = g_strdup(g_basename(filename ? filename : file));
1928 text[COL_MIMETYPE] = ainfo->content_type;
1929 text[COL_SIZE] = to_human_readable(size);
1930 text[COL_NAME] = ainfo->name;
1932 row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1933 gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1936 #define IS_FIRST_PART_TEXT(info) \
1937 ((info->mime_type == MIME_TEXT || info->mime_type == MIME_TEXT_HTML || \
1938 info->mime_type == MIME_TEXT_ENRICHED) || \
1939 (info->mime_type == MIME_MULTIPART && info->content_type && \
1940 !strcasecmp(info->content_type, "multipart/alternative") && \
1941 (info->children && \
1942 (info->children->mime_type == MIME_TEXT || \
1943 info->children->mime_type == MIME_TEXT_HTML || \
1944 info->children->mime_type == MIME_TEXT_ENRICHED))))
1946 static void compose_attach_parts(Compose *compose, MsgInfo *msginfo)
1953 mimeinfo = procmime_scan_message(msginfo);
1954 if (!mimeinfo) return;
1956 /* skip first text (presumably message body) */
1957 child = mimeinfo->children;
1958 if (!child || IS_FIRST_PART_TEXT(mimeinfo)) {
1959 procmime_mimeinfo_free_all(mimeinfo);
1962 if (IS_FIRST_PART_TEXT(child))
1963 child = child->next;
1965 infile = procmsg_get_message_file_path(msginfo);
1967 while (child != NULL) {
1968 if (child->children || child->mime_type == MIME_MULTIPART) {
1969 child = procmime_mimeinfo_next(child);
1973 outfile = procmime_get_tmp_file_name(child);
1974 if (procmime_get_part(outfile, infile, child) < 0)
1975 g_warning(_("Can't get the part of multipart message."));
1977 compose_attach_append
1979 child->filename ? child->filename : child->name,
1980 child->content_type);
1982 child = child->next;
1986 procmime_mimeinfo_free_all(mimeinfo);
1989 #undef IS_FIRST_PART_TEXT
1991 #define GET_CHAR(pos, buf, len) \
1993 if (text->use_wchar) \
1994 len = wctomb(buf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
1996 buf[0] = GTK_STEXT_INDEX(text, (pos)); \
2001 #define INDENT_CHARS ">|#"
2002 #define SPACE_CHARS " \t"
2004 static void compose_wrap_line(Compose *compose)
2006 GtkSText *text = GTK_STEXT(compose->text);
2007 gint ch_len, last_ch_len;
2008 gchar cbuf[MB_LEN_MAX], last_ch;
2012 gint p_start, p_end;
2013 gint line_pos, cur_pos;
2014 gint line_len, cur_len;
2016 gtk_stext_freeze(text);
2018 text_len = gtk_stext_get_length(text);
2020 /* check to see if the point is on the paragraph mark (empty line). */
2021 cur_pos = gtk_stext_get_point(text);
2022 GET_CHAR(cur_pos, cbuf, ch_len);
2023 if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
2025 goto compose_end; /* on the paragraph mark */
2026 GET_CHAR(cur_pos - 1, cbuf, ch_len);
2027 if (ch_len == 1 && *cbuf == '\n')
2028 goto compose_end; /* on the paragraph mark */
2031 /* find paragraph start. */
2032 line_end = quoted = 0;
2033 for (p_start = cur_pos; p_start >= 0; --p_start) {
2034 GET_CHAR(p_start, cbuf, ch_len);
2035 if (ch_len == 1 && *cbuf == '\n') {
2037 goto compose_end; /* quoted part */
2044 if (ch_len == 1 && strchr(INDENT_CHARS, *cbuf))
2046 else if (ch_len != 1 || !isspace(*cbuf))
2055 /* find paragraph end. */
2057 for (p_end = cur_pos; p_end < text_len; p_end++) {
2058 GET_CHAR(p_end, cbuf, ch_len);
2059 if (ch_len == 1 && *cbuf == '\n') {
2066 if (line_end && ch_len == 1 &&
2067 strchr(INDENT_CHARS, *cbuf))
2068 goto compose_end; /* quoted part */
2073 if (p_end >= text_len)
2076 if (p_start >= p_end)
2079 line_len = cur_len = 0;
2083 for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2086 GET_CHAR(cur_pos, cbuf, ch_len);
2093 if (ch_len == 1 && isspace(*cbuf))
2096 if (ch_len == 1 && *cbuf == '\n') {
2098 if (last_ch_len == 1 && !isspace(last_ch)) {
2099 if (cur_pos + 1 < p_end) {
2100 GET_CHAR(cur_pos + 1, cbuf, ch_len);
2101 if (ch_len == 1 && !isspace(*cbuf))
2105 gtk_stext_set_point(text, cur_pos + 1);
2106 gtk_stext_backward_delete(text, 1);
2108 gtk_stext_set_point(text, cur_pos);
2109 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2119 last_ch_len = ch_len;
2123 line_pos = cur_pos + 1;
2124 line_len = cur_len + ch_len;
2127 if (cur_len + ch_len > prefs_common.linewrap_len &&
2131 GET_CHAR(line_pos - 1, cbuf, ch_len);
2132 if (ch_len == 1 && isspace(*cbuf)) {
2133 gtk_stext_set_point(text, line_pos);
2134 gtk_stext_backward_delete(text, 1);
2143 gtk_stext_set_point(text, line_pos);
2144 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2148 cur_len = cur_len - line_len + ch_len;
2154 line_pos = cur_pos + 1;
2155 line_len = cur_len + ch_len;
2161 gtk_stext_thaw(text);
2166 /* Darko: used when I debug wrapping */
2167 void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
2172 printf("%d [", pos);
2173 for (i = pos; i < tlen; i++) {
2174 ch = GTK_STEXT_INDEX(text, i);
2175 if (breakoncr && ch == '\n')
2185 WAIT_FOR_INDENT_CHAR,
2186 WAIT_FOR_INDENT_CHAR_OR_SPACE
2189 /* return indent length, we allow:
2190 > followed by spaces/tabs
2191 | followed by spaces/tabs
2192 uppercase characters immediately followed by >,
2193 and the repeating sequences of the above */
2194 /* return indent length */
2195 static guint get_indent_length(GtkSText *text, guint start_pos, guint text_len)
2198 guint i, ch_len, alnum_cnt = 0;
2199 IndentState state = WAIT_FOR_INDENT_CHAR;
2200 gchar cbuf[MB_LEN_MAX];
2204 for (i = start_pos; i < text_len; i++) {
2205 GET_CHAR(i, cbuf, ch_len);
2209 if (cbuf[0] == '\n')
2212 is_indent = strchr(INDENT_CHARS, cbuf[0]) ? TRUE : FALSE;
2213 is_space = strchr(SPACE_CHARS, cbuf[0]) ? TRUE : FALSE;
2216 case WAIT_FOR_SPACE:
2217 if (is_space == FALSE)
2219 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2221 case WAIT_FOR_INDENT_CHAR_OR_SPACE:
2222 if (is_indent == FALSE && is_space == FALSE &&
2225 if (is_space == TRUE) {
2227 state = WAIT_FOR_INDENT_CHAR_OR_SPACE;
2228 } else if (is_indent == TRUE) {
2230 state = WAIT_FOR_SPACE;
2233 state = WAIT_FOR_INDENT_CHAR;
2236 case WAIT_FOR_INDENT_CHAR:
2237 if (is_indent == FALSE && !isupper(cbuf[0]))
2239 if (is_indent == TRUE) {
2240 if (alnum_cnt > 0 && cbuf[0] != '>')
2243 state = WAIT_FOR_SPACE;
2254 if ((i_len > 0) && (state == WAIT_FOR_INDENT_CHAR))
2260 /* insert quotation string when line was wrapped */
2261 static guint ins_quote(GtkSText *text, guint indent_len,
2262 guint prev_line_pos, guint text_len,
2269 for (i = 0; i < indent_len; i++) {
2270 ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2271 gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2273 ins_len = indent_len;
2279 /* check if we should join the next line */
2280 static gboolean join_next_line(GtkSText *text, guint start_pos, guint tlen,
2283 guint indent_len, ch_len;
2284 gboolean do_join = FALSE;
2285 gchar cbuf[MB_LEN_MAX];
2287 indent_len = get_indent_length(text, start_pos, tlen);
2289 if ((indent_len > 0) && (indent_len == prev_ilen)) {
2290 GET_CHAR(start_pos + indent_len, cbuf, ch_len);
2291 if (ch_len > 0 && (cbuf[0] != '\n'))
2298 static void compose_wrap_line_all(Compose *compose)
2300 GtkSText *text = GTK_STEXT(compose->text);
2302 guint line_pos = 0, cur_pos = 0, p_pos = 0;
2303 gint line_len = 0, cur_len = 0;
2305 gboolean is_new_line = TRUE, do_delete = FALSE;
2307 gboolean linewrap_quote = TRUE;
2308 guint linewrap_len = prefs_common.linewrap_len;
2309 gchar *qfmt = prefs_common.quotemark;
2310 gchar cbuf[MB_LEN_MAX];
2312 gtk_stext_freeze(text);
2314 /* make text buffer contiguous */
2315 /* gtk_stext_compact_buffer(text); */
2317 tlen = gtk_stext_get_length(text);
2319 for (; cur_pos < tlen; cur_pos++) {
2320 /* mark position of new line - needed for quotation wrap */
2323 i_len = get_indent_length(text, cur_pos, tlen);
2325 is_new_line = FALSE;
2328 printf("new line i_len=%d p_pos=", i_len);
2329 dump_text(text, p_pos, tlen, 1);
2333 GET_CHAR(cur_pos, cbuf, ch_len);
2335 /* fix line length for tabs */
2336 if (ch_len == 1 && *cbuf == '\t') {
2337 guint tab_width = text->default_tab_width;
2338 guint tab_offset = line_len % tab_width;
2341 printf("found tab at pos=%d line_len=%d ", cur_pos,
2345 line_len += tab_width - tab_offset - 1;
2349 printf("new_len=%d\n", line_len);
2353 /* we have encountered line break */
2354 if (ch_len == 1 && *cbuf == '\n') {
2356 gchar cb[MB_CUR_MAX];
2358 /* should we join the next line */
2359 if ((i_len != cur_len) && do_delete &&
2360 join_next_line(text, cur_pos + 1, tlen, i_len))
2366 printf("found CR at %d do_del is %d next line is ",
2367 cur_pos, do_delete);
2368 dump_text(text, cur_pos + 1, tlen, 1);
2371 /* skip delete if it is continuous URL */
2372 if (do_delete && (line_pos - p_pos <= i_len) &&
2373 gtkut_stext_is_uri_string(text, line_pos, tlen))
2377 printf("l_len=%d wrap_len=%d do_del=%d\n",
2378 line_len, linewrap_len, do_delete);
2380 /* should we delete to perform smart wrapping */
2381 if (line_len < linewrap_len && do_delete) {
2382 /* get rid of newline */
2383 gtk_stext_set_point(text, cur_pos);
2384 gtk_stext_forward_delete(text, 1);
2387 /* if text starts with quote fmt or with
2388 indent string, delete them */
2391 ilen = gtkut_stext_str_compare_n
2392 (text, cur_pos, p_pos, i_len,
2395 gtk_stext_forward_delete
2401 GET_CHAR(cur_pos, cb, clen);
2403 /* insert space if it's alphanumeric */
2404 if ((cur_pos != line_pos) &&
2405 ((clen > 1) || isalnum(cb[0]))) {
2406 gtk_stext_insert(text, NULL, NULL,
2408 /* gtk_stext_compact_buffer(text); */
2412 /* and start over with current line */
2413 cur_pos = p_pos - 1;
2415 line_len = cur_len = 0;
2419 printf("after delete l_pos=");
2420 dump_text(text, line_pos, tlen, 1);
2425 /* mark new line beginning */
2426 line_pos = cur_pos + 1;
2427 line_len = cur_len = 0;
2438 /* possible line break */
2439 if (ch_len == 1 && isspace(*cbuf)) {
2440 line_pos = cur_pos + 1;
2441 line_len = cur_len + ch_len;
2444 /* are we over wrapping length set in preferences ? */
2445 if (cur_len + ch_len > linewrap_len) {
2449 printf("should wrap cur_pos=%d ", cur_pos);
2450 dump_text(text, p_pos, tlen, 1);
2451 dump_text(text, line_pos, tlen, 1);
2453 /* force wrapping if it is one long word but not URL */
2454 if (line_pos - p_pos <= i_len)
2455 if (!gtkut_stext_is_uri_string
2456 (text, line_pos, tlen))
2457 line_pos = cur_pos - 1;
2459 printf("new line_pos=%d\n", line_pos);
2462 GET_CHAR(line_pos - 1, cbuf, clen);
2464 /* if next character is space delete it */
2465 if (clen == 1 && isspace(*cbuf)) {
2466 if (p_pos + i_len != line_pos ||
2467 !gtkut_stext_is_uri_string
2468 (text, line_pos, tlen)) {
2469 gtk_stext_set_point(text, line_pos);
2470 gtk_stext_backward_delete(text, 1);
2479 /* if it is URL at beginning of line don't wrap */
2480 if (p_pos + i_len == line_pos &&
2481 gtkut_stext_is_uri_string(text, line_pos, tlen)) {
2483 printf("found URL at ");
2484 dump_text(text, line_pos, tlen, 1);
2490 gtk_stext_set_point(text, line_pos);
2491 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2492 /* gtk_stext_compact_buffer(text); */
2495 /* for loop will increase it */
2496 cur_pos = line_pos - 1;
2497 /* start over with current line */
2506 printf("after CR insert ");
2507 dump_text(text, line_pos, tlen, 1);
2508 dump_text(text, cur_pos, tlen, 1);
2511 /* should we insert quotation ? */
2512 if (linewrap_quote && i_len) {
2513 /* only if line is not already quoted */
2514 if (!gtkut_stext_str_compare
2515 (text, line_pos, tlen, qfmt)) {
2518 if (line_pos - p_pos > i_len) {
2520 (text, i_len, p_pos,
2523 /* gtk_stext_compact_buffer(text); */
2527 printf("after quote insert ");
2528 dump_text(text, line_pos, tlen, 1);
2536 line_pos = cur_pos + 1;
2537 line_len = cur_len + ch_len;
2539 /* advance to next character in buffer */
2543 gtk_stext_thaw(text);
2548 static void compose_set_title(Compose *compose)
2553 edited = compose->modified ? _(" [Edited]") : "";
2554 if (compose->account && compose->account->address)
2555 str = g_strdup_printf(_("%s - Compose message%s"),
2556 compose->account->address, edited);
2558 str = g_strdup_printf(_("Compose message%s"), edited);
2559 gtk_window_set_title(GTK_WINDOW(compose->window), str);
2564 * compose_current_mail_account:
2566 * Find a current mail account (the currently selected account, or the
2567 * default account, if a news account is currently selected). If a
2568 * mail account cannot be found, display an error message.
2570 * Return value: Mail account, or NULL if not found.
2572 static PrefsAccount *
2573 compose_current_mail_account(void)
2577 if (cur_account && cur_account->protocol != A_NNTP)
2580 ac = account_get_default();
2581 if (!ac || ac->protocol == A_NNTP) {
2582 alertpanel_error(_("Account for sending mail is not specified.\n"
2583 "Please select a mail account before sending."));
2590 gboolean compose_check_for_valid_recipient(Compose *compose) {
2591 gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
2592 gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
2593 gboolean recipient_found = FALSE;
2597 /* free to and newsgroup list */
2598 slist_free_strings(compose->to_list);
2599 g_slist_free(compose->to_list);
2600 compose->to_list = NULL;
2602 slist_free_strings(compose->newsgroup_list);
2603 g_slist_free(compose->newsgroup_list);
2604 compose->newsgroup_list = NULL;
2606 /* search header entries for to and newsgroup entries */
2607 for(list = compose->header_list; list; list = list->next) {
2610 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry));
2611 entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1);
2613 if(entry[0] != '\0') {
2614 for(strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
2615 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2616 compose->to_list = address_list_append(compose->to_list, entry);
2617 recipient_found = TRUE;
2620 for(strptr = recipient_headers_news; *strptr != NULL; strptr++) {
2621 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2622 compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
2623 recipient_found = TRUE;
2629 return recipient_found;
2632 static gboolean compose_check_entries(Compose *compose)
2636 if (compose_check_for_valid_recipient(compose) == FALSE) {
2637 alertpanel_error(_("Recipient is not specified."));
2641 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
2645 aval = alertpanel(_("Send"),
2646 _("Subject is empty. Send it anyway?"),
2647 _("Yes"), _("No"), NULL);
2648 if (aval != G_ALERTDEFAULT)
2655 gint compose_send(Compose *compose)
2661 if (compose_check_entries(compose) == FALSE)
2664 val = compose_queue(compose, &msgnum, &folder);
2666 alertpanel_error(_("Could not queue message for sending"));
2670 val = procmsg_send_message_queue(folder_item_fetch_msg(folder, msgnum));
2672 folder_item_remove_msg(folder, msgnum);
2673 folderview_update_item(folder, TRUE);
2678 #if 0 /* compose restructure */
2679 gint compose_send(Compose *compose)
2681 gchar tmp[MAXPATHLEN + 1];
2683 static gboolean lock = FALSE;
2687 g_return_val_if_fail(compose->account != NULL, -1);
2688 g_return_val_if_fail(compose->orig_account != NULL, -1);
2692 if (compose_check_entries(compose) == FALSE) {
2697 /* write to temporary file */
2698 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%d",
2699 get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
2701 if (prefs_common.linewrap_at_send)
2702 compose_wrap_line_all(compose);
2704 if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2709 if (!compose->to_list && !compose->newsgroup_list) {
2710 g_warning(_("can't get recipient list."));
2716 if (compose->to_list) {
2719 #if 0 /* NEW COMPOSE GUI */
2720 if (compose->account->protocol != A_NNTP)
2721 ac = compose->account;
2722 else if (compose->orig_account->protocol != A_NNTP)
2723 ac = compose->orig_account;
2724 else if (cur_account && cur_account->protocol != A_NNTP)
2727 ac = compose_current_mail_account();
2735 ac = compose->account;
2737 ok = send_message(tmp, ac, compose->to_list);
2738 statusbar_pop_all();
2741 if (ok == 0 && compose->newsgroup_list) {
2744 if (compose->account->protocol == A_NNTP)
2745 folder = FOLDER(compose->account->folder);
2747 folder = FOLDER(compose->orig_account->folder);
2749 ok = news_post(folder, tmp);
2751 alertpanel_error(_("Error occurred while posting the message to %s ."),
2752 compose->account->nntp_server);
2759 /* queue message if failed to send */
2761 if (prefs_common.queue_msg) {
2766 _("Error occurred while sending the message.\n"
2767 "Put this message into queue folder?"),
2768 _("OK"), _("Cancel"), NULL);
2769 if (G_ALERTDEFAULT == val) {
2770 ok = compose_queue(compose, tmp);
2772 alertpanel_error(_("Can't queue the message."));
2775 alertpanel_error(_("Error occurred while sending the message."));
2777 if (compose->mode == COMPOSE_REEDIT) {
2778 compose_remove_reedit_target(compose);
2779 if (compose->targetinfo)
2780 folderview_update_item
2781 (compose->targetinfo->folder, TRUE);
2783 /* save message to outbox */
2784 if (prefs_common.savemsg) {
2787 outbox = account_get_special_folder
2788 (compose->account, F_OUTBOX);
2789 if (procmsg_save_to_outbox(outbox, tmp, FALSE) < 0)
2791 (_("Can't save the message to outbox."));
2793 folderview_update_item(outbox, TRUE);
2803 static gboolean compose_use_attach(Compose *compose) {
2804 return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2807 static gint compose_bounce_write_headers_from_headerlist(Compose *compose,
2810 gchar buf[BUFFSIZE];
2812 gboolean first_address;
2814 ComposeHeaderEntry *headerentry;
2815 gchar *headerentryname;
2816 gchar *header_w_colon;
2820 debug_print(_("Writing bounce header\n"));
2822 header_w_colon = g_strconcat("To:", NULL);
2823 to_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
2824 header_w_colon = g_strconcat("Cc:", NULL);
2825 cc_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
2827 first_address = TRUE;
2828 for(list = compose->header_list; list; list = list->next) {
2829 headerentry = ((ComposeHeaderEntry *)list->data);
2830 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
2832 if(g_strcasecmp(headerentryname, cc_hdr) == 0
2833 || g_strcasecmp(headerentryname, to_hdr) == 0) {
2834 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
2835 Xstrdup_a(str, str, return -1);
2837 if(str[0] != '\0') {
2838 compose_convert_header
2839 (buf, sizeof(buf), str,
2840 strlen("Resent-To") + 2);
2842 fprintf(fp, "Resent-To: ");
2843 first_address = FALSE;
2847 fprintf(fp, "%s", buf);
2851 /* if(!first_address) { */
2858 static gint compose_bounce_write_headers(Compose *compose, FILE *fp)
2860 gchar buf[BUFFSIZE];
2862 /* struct utsname utsbuf; */
2864 g_return_val_if_fail(fp != NULL, -1);
2865 g_return_val_if_fail(compose->account != NULL, -1);
2866 g_return_val_if_fail(compose->account->address != NULL, -1);
2869 get_rfc822_date(buf, sizeof(buf));
2870 fprintf(fp, "Resent-Date: %s\n", buf);
2873 if (compose->account->name && *compose->account->name) {
2874 compose_convert_header
2875 (buf, sizeof(buf), compose->account->name,
2877 fprintf(fp, "Resent-From: %s <%s>\n",
2878 buf, compose->account->address);
2880 fprintf(fp, "Resent-From: %s\n", compose->account->address);
2883 compose_bounce_write_headers_from_headerlist(compose, fp);
2885 /* separator between header and body */
2891 static gint compose_bounce_write_to_file(Compose *compose, const gchar *file)
2896 gchar buf[BUFFSIZE];
2898 if ((fp = fopen(compose->bounce_filename, "rb")) == NULL) {
2899 FILE_OP_ERROR(file, "fopen");
2903 if ((fdest = fopen(file, "wb")) == NULL) {
2904 FILE_OP_ERROR(file, "fopen");
2909 /* chmod for security */
2910 if (change_file_mode_rw(fdest, file) < 0) {
2911 FILE_OP_ERROR(file, "chmod");
2912 g_warning(_("can't change file mode\n"));
2915 while (procheader_get_unfolded_line(buf, sizeof(buf), fp)) {
2916 /* should filter returnpath, delivered-to */
2917 if ((g_strncasecmp(buf, "Return-Path:",
2918 strlen("Return-Path:")) == 0)
2919 || (g_strncasecmp(buf, "Delivered-To:",
2920 strlen("Delivered-To:")) == 0))
2923 if (fputs(buf, fdest) == -1)
2926 if (!prefs_common.bounce_keep_from) {
2927 if (g_strncasecmp(buf, "From:",
2928 strlen("From:")) == 0) {
2929 fputs(" (by way of ", fdest);
2930 if (compose->account->name
2931 && *compose->account->name) {
2932 compose_convert_header
2934 compose->account->name,
2936 fprintf(fdest, "%s <%s>",
2938 compose->account->address);
2940 fprintf(fdest, "%s",
2941 compose->account->address);
2946 if (fputs("\n", fdest) == -1)
2950 compose_bounce_write_headers(compose, fdest);
2952 while ((len = fread(buf, sizeof(gchar), BUFFSIZE, fp)) > 0) {
2953 if (fwrite(buf, sizeof(gchar), len, fdest) == -1)
2971 * interfaces to rfc2015 to keep out the prefs stuff there.
2972 * returns 0 on success and -1 on error. */
2973 static int compose_create_signers_list (Compose *compose, GSList **pkey_list)
2975 const char *keyid = NULL;
2978 switch (compose->account->sign_key) {
2979 case SIGN_KEY_DEFAULT:
2981 return 0; /* nothing to do */
2983 case SIGN_KEY_BY_FROM:
2984 keyid = compose->account->address;
2987 case SIGN_KEY_CUSTOM:
2988 keyid = compose->account->sign_key_id;
2992 g_assert_not_reached ();
2995 key_list = rfc2015_create_signers_list(keyid);
2998 alertpanel_error("Could not find any key associated with currently "
2999 "selected keyid `%s'!", keyid);
3003 *pkey_list = key_list;
3006 #endif /* USE_GPGME */
3008 static gint compose_write_to_file(Compose *compose, const gchar *file,
3015 const gchar *out_codeset;
3016 EncodingType encoding;
3018 if ((fp = fopen(file, "wb")) == NULL) {
3019 FILE_OP_ERROR(file, "fopen");
3023 /* chmod for security */
3024 if (change_file_mode_rw(fp, file) < 0) {
3025 FILE_OP_ERROR(file, "chmod");
3026 g_warning(_("can't change file mode\n"));
3029 /* get all composed text */
3030 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3031 len = strlen(chars);
3032 if (is_ascii_str(chars)) {
3033 buf = g_strdup(chars);
3034 out_codeset = CS_US_ASCII;
3035 encoding = ENC_7BIT;
3037 const gchar *src_codeset;
3039 out_codeset = conv_get_outgoing_charset_str();
3040 if (!strcasecmp(out_codeset, CS_US_ASCII))
3041 out_codeset = CS_ISO_8859_1;
3042 encoding = procmime_get_encoding_for_charset(out_codeset);
3044 src_codeset = conv_get_current_charset_str();
3045 /* if current encoding is US-ASCII, set it the same as
3046 outgoing one to prevent code conversion failure */
3047 if (!strcasecmp(src_codeset, CS_US_ASCII))
3048 src_codeset = out_codeset;
3050 debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
3051 src_codeset, out_codeset, procmime_get_encoding_str(encoding));
3053 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
3059 _("Can't convert the character encoding of the message.\n"
3060 "Send it anyway?"), _("Yes"), _("+No"), NULL);
3061 if (aval != G_ALERTDEFAULT) {
3067 buf = g_strdup(chars);
3074 if (compose_write_headers
3075 (compose, fp, out_codeset, encoding, is_draft) < 0) {
3076 g_warning(_("can't write headers\n"));
3083 if (compose_use_attach(compose)) {
3085 /* This prolog message is ignored by mime software and
3086 * because it would make our signing/encryption task
3087 * tougher, we don't emit it in that case */
3088 if (!compose->use_signing && !compose->use_encryption)
3090 fputs("This is a multi-part message in MIME format.\n", fp);
3092 fprintf(fp, "\n--%s\n", compose->boundary);
3093 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
3095 fprintf(fp, "Content-Transfer-Encoding: %s\n",
3096 procmime_get_encoding_str(encoding));
3102 if (encoding == ENC_BASE64) {
3103 gchar outbuf[B64_BUFFSIZE];
3106 for (i = 0; i < len; i += B64_LINE_SIZE) {
3107 l = MIN(B64_LINE_SIZE, len - i);
3108 to64frombits(outbuf, buf + i, l);
3112 } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
3113 FILE_OP_ERROR(file, "fwrite");
3121 if (compose_use_attach(compose))
3122 compose_write_attach(compose, fp);
3124 if (fclose(fp) == EOF) {
3125 FILE_OP_ERROR(file, "fclose");
3131 if (compose->use_signing) {
3134 if (compose_create_signers_list(compose, &key_list) == -1 ||
3135 rfc2015_sign(file, key_list) < 0) {
3141 if (compose->use_encryption) {
3142 if (rfc2015_encrypt(file, compose->to_list, compose->account->ascii_armored) < 0) {
3147 #endif /* USE_GPGME */
3152 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
3158 if ((fp = fopen(file, "wb")) == NULL) {
3159 FILE_OP_ERROR(file, "fopen");
3163 /* chmod for security */
3164 if (change_file_mode_rw(fp, file) < 0) {
3165 FILE_OP_ERROR(file, "chmod");
3166 g_warning(_("can't change file mode\n"));
3169 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
3172 len = strlen(chars);
3173 if (fwrite(chars, sizeof(gchar), len, fp) != len) {
3174 FILE_OP_ERROR(file, "fwrite");
3183 if (fclose(fp) == EOF) {
3184 FILE_OP_ERROR(file, "fclose");
3191 static gint compose_remove_reedit_target(Compose *compose)
3194 MsgInfo *msginfo = compose->targetinfo;
3196 g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
3197 if (!msginfo) return -1;
3199 item = msginfo->folder;
3200 g_return_val_if_fail(item != NULL, -1);
3202 folder_item_scan(item);
3203 if (procmsg_msg_exist(msginfo) &&
3204 (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
3205 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
3206 g_warning(_("can't remove the old message\n"));
3215 static gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item)
3218 gchar *tmp, *tmp2, *queue_path;
3221 gchar buf[BUFFSIZE];
3223 MsgFlags flag = {0, 0};
3224 static gboolean lock = FALSE;
3225 PrefsAccount *mailac = NULL, *newsac = NULL;
3227 debug_print(_("queueing message...\n"));
3228 g_return_val_if_fail(compose->account != NULL, -1);
3229 g_return_val_if_fail(compose->orig_account != NULL, -1);
3233 if (compose_check_entries(compose) == FALSE) {
3238 if (!compose->to_list && !compose->newsgroup_list) {
3239 g_warning(_("can't get recipient list."));
3244 if(compose->to_list) {
3245 if (compose->account->protocol != A_NNTP)
3246 mailac = compose->account;
3247 else if (compose->orig_account->protocol != A_NNTP)
3248 mailac = compose->orig_account;
3249 else if (cur_account && cur_account->protocol != A_NNTP)
3250 mailac = cur_account;
3251 else if (!(mailac = compose_current_mail_account())) {
3253 alertpanel_error(_("No account for sending mails available!"));
3258 if(compose->newsgroup_list) {
3259 if (compose->account->protocol == A_NNTP)
3260 newsac = compose->account;
3261 else if(!(newsac = compose->orig_account) || (newsac->protocol != A_NNTP)) {
3263 alertpanel_error(_("No account for posting news available!"));
3268 if (prefs_common.linewrap_at_send)
3269 compose_wrap_line_all(compose);
3271 /* write to temporary file */
3272 tmp2 = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
3273 G_DIR_SEPARATOR, (gint)compose);
3275 if (compose->bounce_filename != NULL) {
3276 if (compose_bounce_write_to_file(compose, tmp2) < 0) {
3283 if (compose_write_to_file(compose, tmp2, FALSE) < 0) {
3290 /* add queue header */
3291 tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
3292 G_DIR_SEPARATOR, (gint)compose);
3293 if ((fp = fopen(tmp, "wb")) == NULL) {
3294 FILE_OP_ERROR(tmp, "fopen");
3298 if ((src_fp = fopen(tmp2, "rb")) == NULL) {
3299 FILE_OP_ERROR(tmp2, "fopen");
3307 if (change_file_mode_rw(fp, tmp) < 0) {
3308 FILE_OP_ERROR(tmp, "chmod");
3309 g_warning(_("can't change file mode\n"));
3312 /* queueing variables */
3313 fprintf(fp, "AF:\n");
3314 fprintf(fp, "NF:0\n");
3315 fprintf(fp, "PS:10\n");
3316 fprintf(fp, "SRH:1\n");
3317 fprintf(fp, "SFN:\n");
3318 fprintf(fp, "DSR:\n");
3320 fprintf(fp, "MID:<%s>\n", compose->msgid);
3322 fprintf(fp, "MID:\n");
3323 fprintf(fp, "CFG:\n");
3324 fprintf(fp, "PT:0\n");
3325 fprintf(fp, "S:%s\n", compose->account->address);
3326 fprintf(fp, "RQ:\n");
3328 fprintf(fp, "SSV:%s\n", mailac->smtp_server);
3330 fprintf(fp, "SSV:\n");
3332 fprintf(fp, "NSV:%s\n", newsac->nntp_server);
3334 fprintf(fp, "NSV:\n");
3335 fprintf(fp, "SSH:\n");
3336 /* write recepient list */
3338 if(compose->to_list) {
3339 fprintf(fp, "<%s>", (gchar *)compose->to_list->data);
3340 for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
3341 fprintf(fp, ",<%s>", (gchar *)cur->data);
3344 /* write newsgroup list */
3346 if(compose->newsgroup_list) {
3347 fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
3348 for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
3349 fprintf(fp, ",%s", (gchar *)cur->data);
3352 /* Sylpheed account IDs */
3354 fprintf(fp, "MAID:%d\n", mailac->account_id);
3357 fprintf(fp, "NAID:%d\n", newsac->account_id);
3359 /* Save copy folder */
3360 if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(compose->savemsg_checkbtn))) {
3363 str = gtk_editable_get_chars(GTK_EDITABLE(compose->savemsg_entry), 0, -1);
3364 fprintf(fp, "SCF:%s\n", str);
3369 while (fgets(buf, sizeof(buf), src_fp) != NULL) {
3370 if (fputs(buf, fp) == EOF) {
3371 FILE_OP_ERROR(tmp, "fputs");
3382 if (fclose(fp) == EOF) {
3383 FILE_OP_ERROR(tmp, "fclose");
3391 queue = account_get_special_folder(compose->account, F_QUEUE);
3392 folder_item_scan(queue);
3393 queue_path = folder_item_get_path(queue);
3394 if (!is_dir_exist(queue_path))
3395 make_dir_hier(queue_path);
3396 if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
3397 g_warning(_("can't queue the message\n"));
3408 if (compose->mode == COMPOSE_REEDIT) {
3409 compose_remove_reedit_target(compose);
3410 if (compose->targetinfo &&
3411 compose->targetinfo->folder != queue)
3412 folderview_update_item
3413 (compose->targetinfo->folder, TRUE);
3416 procmsg_add_flags(queue, num, flag);
3417 folder_item_scan(queue);
3418 folderview_update_item(queue, TRUE);
3420 if((msgnum != NULL) && (item != NULL)) {
3428 static void compose_write_attach(Compose *compose, FILE *fp)
3431 GtkCList *clist = GTK_CLIST(compose->attach_clist);
3434 gchar filename[BUFFSIZE];
3437 for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
3439 gchar buf[BUFFSIZE];
3440 gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3442 if ((attach_fp = fopen(ainfo->file, "rb")) == NULL) {
3443 g_warning(_("Can't open file %s\n"), ainfo->file);
3447 fprintf(fp, "\n--%s\n", compose->boundary);
3449 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
3450 fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
3451 fprintf(fp, "Content-Disposition: inline\n");
3453 conv_encode_header(filename, sizeof(filename),
3455 fprintf(fp, "Content-Type: %s;\n"
3457 ainfo->content_type, filename);
3458 fprintf(fp, "Content-Disposition: attachment;\n"
3459 " filename=\"%s\"\n", filename);
3462 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
3463 procmime_get_encoding_str(ainfo->encoding));
3465 switch (ainfo->encoding) {
3469 /* if (ainfo->encoding == ENC_7BIT) { */
3471 while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
3479 while ((len = fread(inbuf, sizeof(gchar),
3480 B64_LINE_SIZE, attach_fp))
3482 to64frombits(outbuf, inbuf, B64_LINE_SIZE);
3486 if (len > 0 && feof(attach_fp)) {
3487 to64frombits(outbuf, inbuf, len);
3497 fprintf(fp, "\n--%s--\n", compose->boundary);
3500 #define IS_IN_CUSTOM_HEADER(header) \
3501 (compose->account->add_customhdr && \
3502 custom_header_find(compose->account->customhdr_list, header) != NULL)
3504 static gint compose_write_headers_from_headerlist(Compose *compose,
3508 gchar buf[BUFFSIZE];
3509 gchar *str, *header_w_colon, *trans_hdr;
3510 gboolean first_address;
3512 ComposeHeaderEntry *headerentry;
3513 gchar * headerentryname;
3515 if (IS_IN_CUSTOM_HEADER(header)) {
3519 debug_print(_("Writing %s-header\n"), header);
3521 header_w_colon = g_strconcat(header, ":", NULL);
3522 trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
3524 first_address = TRUE;
3525 for(list = compose->header_list; list; list = list->next) {
3526 headerentry = ((ComposeHeaderEntry *)list->data);
3527 headerentryname = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry));
3529 if(!g_strcasecmp(trans_hdr, headerentryname)) {
3530 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
3531 Xstrdup_a(str, str, return -1);
3533 if(str[0] != '\0') {
3534 compose_convert_header
3535 (buf, sizeof(buf), str,
3536 strlen(header) + 2);
3538 fprintf(fp, "%s: ", header);
3539 first_address = FALSE;
3543 fprintf(fp, "%s", buf);
3547 if(!first_address) {
3551 g_free(header_w_colon);
3556 static gint compose_write_headers(Compose *compose, FILE *fp,
3557 const gchar *charset, EncodingType encoding,
3560 gchar buf[BUFFSIZE];
3562 /* struct utsname utsbuf; */
3564 g_return_val_if_fail(fp != NULL, -1);
3565 g_return_val_if_fail(charset != NULL, -1);
3566 g_return_val_if_fail(compose->account != NULL, -1);
3567 g_return_val_if_fail(compose->account->address != NULL, -1);
3570 if (compose->account->add_date) {
3571 get_rfc822_date(buf, sizeof(buf));
3572 fprintf(fp, "Date: %s\n", buf);
3576 if (!IS_IN_CUSTOM_HEADER("From")) {
3577 if (compose->account->name && *compose->account->name) {
3578 compose_convert_header
3579 (buf, sizeof(buf), compose->account->name,
3581 fprintf(fp, "From: %s <%s>\n",
3582 buf, compose->account->address);
3584 fprintf(fp, "From: %s\n", compose->account->address);
3588 compose_write_headers_from_headerlist(compose, fp, "To");
3589 #if 0 /* NEW COMPOSE GUI */
3590 if (compose->use_to) {
3591 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
3593 Xstrdup_a(str, str, return -1);
3596 compose->to_list = address_list_append
3597 (compose->to_list, str);
3598 if (!IS_IN_CUSTOM_HEADER("To")) {
3599 compose_convert_header
3600 (buf, sizeof(buf), str,
3602 fprintf(fp, "To: %s\n", buf);
3610 compose_write_headers_from_headerlist(compose, fp, "Newsgroups");
3611 #if 0 /* NEW COMPOSE GUI */
3612 str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
3614 Xstrdup_a(str, str, return -1);
3618 compose->newsgroup_list =
3619 newsgroup_list_append(compose->newsgroup_list,
3621 if (!IS_IN_CUSTOM_HEADER("Newsgroups")) {
3622 compose_convert_header(buf, sizeof(buf), str,
3623 strlen("Newsgroups: "));
3624 fprintf(fp, "Newsgroups: %s\n", buf);
3630 compose_write_headers_from_headerlist(compose, fp, "Cc");
3631 #if 0 /* NEW COMPOSE GUI */
3632 if (compose->use_cc) {
3633 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
3635 Xstrdup_a(str, str, return -1);
3638 compose->to_list = address_list_append
3639 (compose->to_list, str);
3640 if (!IS_IN_CUSTOM_HEADER("Cc")) {
3641 compose_convert_header
3642 (buf, sizeof(buf), str,
3644 fprintf(fp, "Cc: %s\n", buf);
3651 compose_write_headers_from_headerlist(compose, fp, "Bcc");
3652 #if 0 /* NEW COMPOSE GUI */
3653 if (compose->use_bcc) {
3654 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
3656 Xstrdup_a(str, str, return -1);
3659 compose->to_list = address_list_append
3660 (compose->to_list, str);
3661 compose_convert_header(buf, sizeof(buf), str,
3663 fprintf(fp, "Bcc: %s\n", buf);
3670 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3671 if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
3672 Xstrdup_a(str, str, return -1);
3675 compose_convert_header(buf, sizeof(buf), str,
3676 strlen("Subject: "));
3677 fprintf(fp, "Subject: %s\n", buf);
3682 if (compose->account->gen_msgid) {
3683 compose_generate_msgid(compose, buf, sizeof(buf));
3684 fprintf(fp, "Message-Id: <%s>\n", buf);
3685 compose->msgid = g_strdup(buf);
3689 if (compose->inreplyto && compose->to_list)
3690 fprintf(fp, "In-Reply-To: <%s>\n", compose->inreplyto);
3693 if (compose->references)
3694 fprintf(fp, "References: %s\n", compose->references);
3697 compose_write_headers_from_headerlist(compose, fp, "Followup-To");
3698 #if 0 /* NEW COMPOSE GUI */
3699 if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
3700 str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
3702 Xstrdup_a(str, str, return -1);
3706 compose_convert_header(buf, sizeof(buf), str,
3707 strlen("Followup-To: "));
3708 fprintf(fp, "Followup-To: %s\n", buf);
3714 compose_write_headers_from_headerlist(compose, fp, "Reply-To");
3715 #if 0 /* NEW COMPOSE GUI */
3716 if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
3717 str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
3719 Xstrdup_a(str, str, return -1);
3722 compose_convert_header(buf, sizeof(buf), str,
3723 strlen("Reply-To: "));
3724 fprintf(fp, "Reply-To: %s\n", buf);
3730 if (compose->account->organization &&
3731 !IS_IN_CUSTOM_HEADER("Organization")) {
3732 compose_convert_header(buf, sizeof(buf),
3733 compose->account->organization,
3734 strlen("Organization: "));
3735 fprintf(fp, "Organization: %s\n", buf);
3738 /* Program version and system info */
3739 /* uname(&utsbuf); */
3740 if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
3741 fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
3743 gtk_major_version, gtk_minor_version, gtk_micro_version,
3745 /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3747 if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
3748 fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
3750 gtk_major_version, gtk_minor_version, gtk_micro_version,
3752 /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3755 /* custom headers */
3756 if (compose->account->add_customhdr) {