2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2001 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>
58 /* #include <sys/utsname.h> */
64 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
74 #include "mainwindow.h"
76 #include "addressbook.h"
77 #include "folderview.h"
82 #include "customheader.h"
83 #include "prefs_common.h"
84 #include "prefs_account.h"
87 #include "procheader.h"
89 #include "statusbar.h"
96 #include "alertpanel.h"
97 #include "manage_window.h"
98 #include "gtkshruler.h"
100 #include "addr_compl.h"
101 #include "template_select.h"
104 # include "rfc2015.h"
107 #include "quote_fmt.h"
116 #define N_ATTACH_COLS 3
118 #define B64_LINE_SIZE 57
119 #define B64_BUFFSIZE 77
121 #define MAX_REFERENCES_LEN 999
123 static GdkColor quote_color = {0, 0, 0, 0xbfff};
125 static GList *compose_list = NULL;
127 static Compose *compose_create (PrefsAccount *account,
129 static void compose_toolbar_create (Compose *compose,
130 GtkWidget *container);
131 static GtkWidget *compose_account_option_menu_create
133 static void compose_destroy (Compose *compose);
135 static gint compose_parse_header (Compose *compose,
137 static gchar *compose_parse_references (const gchar *ref,
139 static void compose_quote_file (Compose *compose,
142 static gchar *compose_quote_parse_fmt (Compose *compose,
145 static void compose_reply_set_entry (Compose *compose,
150 followup_and_reply_to);
151 static void compose_reedit_set_entry (Compose *compose,
153 static void compose_insert_sig (Compose *compose);
154 static void compose_insert_file (Compose *compose,
156 static void compose_attach_append (Compose *compose,
158 ContentType cnttype);
159 static void compose_attach_append_with_type(Compose *compose,
162 ContentType cnttype);
163 static void compose_wrap_line (Compose *compose);
164 static void compose_wrap_line_all (Compose *compose);
165 static void compose_set_title (Compose *compose);
167 static PrefsAccount *compose_current_mail_account(void);
168 /* static gint compose_send (Compose *compose); */
169 static gint compose_write_to_file (Compose *compose,
172 static gint compose_write_body_to_file (Compose *compose,
174 static gint compose_save_to_outbox (Compose *compose,
176 static gint compose_remove_reedit_target (Compose *compose);
177 static gint compose_queue (Compose *compose,
179 static void compose_write_attach (Compose *compose,
181 static gint compose_write_headers (Compose *compose,
183 const gchar *charset,
184 EncodingType encoding,
187 static void compose_convert_header (gchar *dest,
191 static void compose_generate_msgid (Compose *compose,
195 static void compose_attach_info_free (AttachInfo *ainfo);
196 static void compose_attach_remove_selected (Compose *compose);
198 static void compose_attach_property (Compose *compose);
199 static void compose_attach_property_create (gboolean *cancelled);
200 static void attach_property_ok (GtkWidget *widget,
201 gboolean *cancelled);
202 static void attach_property_cancel (GtkWidget *widget,
203 gboolean *cancelled);
204 static gint attach_property_delete_event (GtkWidget *widget,
206 gboolean *cancelled);
207 static void attach_property_key_pressed (GtkWidget *widget,
209 gboolean *cancelled);
211 static void compose_exec_ext_editor (Compose *compose);
212 static gint compose_exec_ext_editor_real (const gchar *file);
213 static gboolean compose_ext_editor_kill (Compose *compose);
214 static void compose_input_cb (gpointer data,
216 GdkInputCondition condition);
217 static void compose_set_ext_editor_sensitive (Compose *compose,
220 static gint calc_cursor_xpos (GtkSText *text,
224 static void compose_create_header_entry (Compose *compose);
225 static void compose_add_header_entry (Compose *compose, gchar *header, gchar *text);
227 /* callback functions */
229 static gboolean compose_edit_size_alloc (GtkEditable *widget,
230 GtkAllocation *allocation,
231 GtkSHRuler *shruler);
233 static void toolbar_send_cb (GtkWidget *widget,
235 static void toolbar_send_later_cb (GtkWidget *widget,
237 static void toolbar_draft_cb (GtkWidget *widget,
239 static void toolbar_insert_cb (GtkWidget *widget,
241 static void toolbar_attach_cb (GtkWidget *widget,
243 static void toolbar_sig_cb (GtkWidget *widget,
245 static void toolbar_ext_editor_cb (GtkWidget *widget,
247 static void toolbar_linewrap_cb (GtkWidget *widget,
249 static void toolbar_address_cb (GtkWidget *widget,
251 static void template_select_cb (gpointer daat,
256 static void select_account(Compose * compose, PrefsAccount * ac);
257 static void account_activated (GtkMenuItem *menuitem,
260 static void attach_selected (GtkCList *clist,
265 static void attach_button_pressed (GtkWidget *widget,
266 GdkEventButton *event,
268 static void attach_key_pressed (GtkWidget *widget,
272 static void compose_send_cb (gpointer data,
275 static void compose_send_later_cb (gpointer data,
279 static void compose_draft_cb (gpointer data,
283 static void compose_attach_cb (gpointer data,
286 static void compose_insert_file_cb (gpointer data,
290 static void compose_close_cb (gpointer data,
293 static void compose_address_cb (gpointer data,
297 static void compose_ext_editor_cb (gpointer data,
301 static gint compose_delete_cb (GtkWidget *widget,
304 static void compose_destroy_cb (GtkWidget *widget,
307 static void compose_cut_cb (Compose *compose);
308 static void compose_copy_cb (Compose *compose);
309 static void compose_paste_cb (Compose *compose);
310 static void compose_allsel_cb (Compose *compose);
312 static void compose_grab_focus_cb (GtkWidget *widget,
315 static void compose_changed_cb (GtkEditable *editable,
317 static void compose_button_press_cb (GtkWidget *widget,
318 GdkEventButton *event,
321 static void compose_key_press_cb (GtkWidget *widget,
326 static void compose_toggle_to_cb (gpointer data,
329 static void compose_toggle_cc_cb (gpointer data,
332 static void compose_toggle_bcc_cb (gpointer data,
335 static void compose_toggle_replyto_cb (gpointer data,
338 static void compose_toggle_followupto_cb(gpointer data,
341 static void compose_toggle_attach_cb (gpointer data,
344 static void compose_toggle_ruler_cb (gpointer data,
348 static void compose_toggle_sign_cb (gpointer data,
351 static void compose_toggle_encrypt_cb (gpointer data,
355 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
358 static void compose_attach_drag_received_cb (GtkWidget *widget,
359 GdkDragContext *drag_context,
362 GtkSelectionData *data,
366 static void compose_insert_drag_received_cb (GtkWidget *widget,
367 GdkDragContext *drag_context,
370 GtkSelectionData *data,
375 static void to_activated (GtkWidget *widget,
377 static void newsgroups_activated (GtkWidget *widget,
379 static void subject_activated (GtkWidget *widget,
381 static void cc_activated (GtkWidget *widget,
383 static void bcc_activated (GtkWidget *widget,
385 static void replyto_activated (GtkWidget *widget,
387 static void followupto_activated (GtkWidget *widget,
389 static void compose_attach_parts(Compose * compose,
392 static gchar *compose_quote_fmt (Compose *compose,
395 const gchar * qmark);
397 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
399 gboolean ignore_replyto,
400 gboolean followup_and_reply_to);
402 void compose_headerentry_changed_cb (GtkWidget *entry,
403 compose_headerentry *headerentry);
404 void compose_headerentry_key_press_event_cb (GtkWidget *entry,
406 compose_headerentry *headerentry);
408 Compose * compose_generic_new (PrefsAccount *account,
412 static GtkItemFactoryEntry compose_popup_entries[] =
414 {N_("/_Add..."), NULL, compose_attach_cb, 0, NULL},
415 {N_("/_Remove"), NULL, compose_attach_remove_selected, 0, NULL},
416 {N_("/---"), NULL, NULL, 0, "<Separator>"},
417 {N_("/_Property..."), NULL, compose_attach_property, 0, NULL}
420 static GtkItemFactoryEntry compose_entries[] =
422 {N_("/_File"), NULL, NULL, 0, "<Branch>"},
423 {N_("/_File/_Attach file"), "<control>M", compose_attach_cb, 0, NULL},
424 {N_("/_File/_Insert file"), "<control>I", compose_insert_file_cb, 0, NULL},
425 {N_("/_File/Insert si_gnature"), "<control>G", compose_insert_sig, 0, NULL},
426 {N_("/_File/---"), NULL, NULL, 0, "<Separator>"},
427 {N_("/_File/_Close"), "<alt>W", compose_close_cb, 0, NULL},
429 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
430 {N_("/_Edit/_Undo"), "<control>Z", NULL, 0, NULL},
431 {N_("/_Edit/_Redo"), "<control>Y", NULL, 0, NULL},
432 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
433 {N_("/_Edit/Cu_t"), "<control>X", compose_cut_cb, 0, NULL},
434 {N_("/_Edit/_Copy"), "<control>C", compose_copy_cb, 0, NULL},
435 {N_("/_Edit/_Paste"), "<control>V", compose_paste_cb, 0, NULL},
436 {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
437 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
438 {N_("/_Edit/_Wrap current paragraph"), "<alt>L", compose_wrap_line, 0, NULL},
439 {N_("/_Edit/Wrap all long _lines"),
440 "<shift><alt>L", compose_wrap_line_all, 0, NULL},
441 {N_("/_Edit/Edit with e_xternal editor"),
442 "<alt>X", compose_ext_editor_cb, 0, NULL},
444 {N_("/_Message"), NULL, NULL, 0, "<Branch>"},
445 {N_("/_Message/_Send"), "<shift><control>S",
446 compose_send_cb, 0, NULL},
447 {N_("/_Message/Send _later"), "<shift><alt>S",
448 compose_send_later_cb, 0, NULL},
449 {N_("/_Message/Save to _draft folder"),
450 "<alt>D", compose_draft_cb, 0, NULL},
452 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
453 {N_("/_Message/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
454 {N_("/_Message/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
455 {N_("/_Message/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
456 {N_("/_Message/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
457 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
458 {N_("/_Message/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
459 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
460 {N_("/_Message/_Attach"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
463 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
464 {N_("/_Message/Si_gn"), NULL, compose_toggle_sign_cb , 0, "<ToggleItem>"},
465 {N_("/_Message/_Encrypt"), NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
466 #endif /* USE_GPGME */
467 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
468 {N_("/_Message/_Request Return Receipt"), NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
469 {N_("/_Tool"), NULL, NULL, 0, "<Branch>"},
470 {N_("/_Tool/Show _ruler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
471 {N_("/_Tool/_Address book"), "<alt>A", compose_address_cb , 0, NULL},
472 {N_("/_Tool/_Templates ..."), NULL, template_select_cb, 0, NULL},
473 {N_("/_Help"), NULL, NULL, 0, "<LastBranch>"},
474 {N_("/_Help/_About"), NULL, about_show, 0, NULL}
477 static GtkTargetEntry compose_mime_types[] =
479 {"text/uri-list", 0, 0}
482 Compose * compose_new(PrefsAccount *account)
484 return compose_generic_new(account, NULL, NULL);
487 Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
489 return compose_generic_new(account, to, NULL);
492 Compose * compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
494 return compose_generic_new(account, NULL, item);
497 Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem *item)
501 if (!account) account = cur_account;
502 g_return_val_if_fail(account != NULL, NULL);
504 compose = compose_create(account, COMPOSE_NEW);
505 compose->replyinfo = NULL;
507 if (prefs_common.auto_sig)
508 compose_insert_sig(compose);
509 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
510 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
512 if (account->protocol != A_NNTP) {
514 compose_entry_append(compose, to, COMPOSE_TO);
515 gtk_widget_grab_focus(compose->subject_entry);
517 if(item && item->prefs->enable_default_to) {
518 compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
520 gtk_widget_grab_focus(compose->header_last->entry);
523 if(item && item->prefs->request_return_receipt) {
524 GtkItemFactory *ifactory;
526 ifactory = gtk_item_factory_from_widget(compose->menubar);
527 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
531 compose_entry_append(compose, to, COMPOSE_NEWSGROUPS);
532 gtk_widget_grab_focus(compose->subject_entry);
534 gtk_widget_grab_focus(compose->header_last->entry);
537 if (prefs_common.auto_exteditor)
538 compose_exec_ext_editor(compose);
543 #define CHANGE_FLAGS(msginfo) \
545 if (msginfo->folder->folder->change_flags != NULL) \
546 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
552 Compose * compose_new_followup_and_replyto(PrefsAccount *account,
553 const gchar *followupto, gchar * to)
557 if (!account) account = cur_account;
558 g_return_val_if_fail(account != NULL, NULL);
559 g_return_val_if_fail(account->protocol != A_NNTP, NULL);
561 compose = compose_create(account, COMPOSE_NEW);
563 if (prefs_common.auto_sig)
564 compose_insert_sig(compose);
565 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
566 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
568 compose_entry_append(compose, to, COMPOSE_TO);
569 compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
570 gtk_widget_grab_focus(compose->subject_entry);
576 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
577 gboolean ignore_replyto)
579 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE);
582 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
584 gboolean ignore_replyto)
586 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE);
589 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
591 gboolean ignore_replyto,
592 gboolean followup_and_reply_to)
595 PrefsAccount *account;
596 PrefsAccount *reply_account;
599 g_return_if_fail(msginfo != NULL);
600 g_return_if_fail(msginfo->folder != NULL);
602 account = msginfo->folder->folder->account;
603 if (!account && msginfo->to && prefs_common.reply_account_autosel) {
605 Xstrdup_a(to, msginfo->to, return);
607 account = account_find_from_address(to);
609 if(!account&& prefs_common.reply_account_autosel) {
611 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
613 account = account_find_from_address(cc);
617 if (!account) account = cur_account;
618 g_return_if_fail(account != NULL);
620 if (ignore_replyto && account->protocol == A_NNTP &&
621 !followup_and_reply_to) {
623 account_find_from_address(account->address);
625 reply_account = compose_current_mail_account();
629 reply_account = account;
630 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
631 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
633 CHANGE_FLAGS(msginfo);
635 compose = compose_create(account, COMPOSE_REPLY);
636 compose->replyinfo = msginfo;
638 /* *** NEW_HEADER_ENTRIES ***
639 if (followup_and_reply_to) {
640 gtk_widget_show(compose->to_hbox);
641 gtk_widget_show(compose->to_entry);
642 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
643 compose->use_to = TRUE;
646 if(msginfo->folder && msginfo->folder->prefs->request_return_receipt) {
647 GtkItemFactory *ifactory;
649 ifactory = gtk_item_factory_from_widget(compose->menubar);
650 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
653 if (compose_parse_header(compose, msginfo) < 0) return;
654 compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
655 followup_and_reply_to);
657 text = GTK_STEXT(compose->text);
658 gtk_stext_freeze(text);
664 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
665 g_warning(_("Can't get text part\n"));
669 if (prefs_common.quotemark && *prefs_common.quotemark)
670 qmark = prefs_common.quotemark;
674 quote_str = compose_quote_fmt(compose, msginfo,
675 prefs_common.quotefmt,
679 quote_str = compose_quote_parse_fmt
680 (compose, msginfo, prefs_common.quotefmt);
683 if (quote_str != NULL)
684 gtk_stext_insert(text, NULL, NULL, NULL,
686 /* g_free(quote_str); */
687 /* compose_quote_file(compose, msginfo, fp); */
692 if (prefs_common.auto_sig)
693 compose_insert_sig(compose);
694 gtk_editable_set_position(GTK_EDITABLE(text), 0);
695 gtk_stext_set_point(text, 0);
697 gtk_stext_thaw(text);
698 gtk_widget_grab_focus(compose->text);
700 if (prefs_common.auto_exteditor)
701 compose_exec_ext_editor(compose);
705 static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
710 g_return_val_if_fail(mimeinfo != NULL, NULL);
712 base = mimeinfo->filename ? mimeinfo->filename
713 : mimeinfo->name ? mimeinfo->name : NULL;
715 if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
716 filename = g_strdup_printf("%s%smimetmp%i.html",
723 base = base ? base : "";
724 base = g_basename(base);
726 filename = g_strdup_printf("%s%smimetmp%i",
734 filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
740 static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
744 if (!partinfo) return;
746 filename = procmime_get_file_name(partinfo);
748 if (procmime_get_part(filename, source, partinfo) < 0)
750 (_("Can't get the part of multipart message."));
755 static void compose_attach_parts(Compose * compose,
765 gint boundary_len = 0;
767 glong fpos, prev_fpos;
772 g_return_if_fail(msginfo != NULL);
776 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
777 mimeinfo = procmime_scan_mime_header(fp);
778 if (!mimeinfo) break;
780 if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
781 rfc2015_is_encrypted(mimeinfo)) {
782 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_ENCRYPTED);
784 if (MSG_IS_ENCRYPTED(msginfo->flags) &&
785 !msginfo->plaintext_file &&
786 !msginfo->decryption_failed) {
787 rfc2015_decrypt_message(msginfo, mimeinfo, fp);
788 if (msginfo->plaintext_file &&
789 !msginfo->decryption_failed) {
797 #else /* !USE_GPGME */
798 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
799 mimeinfo = procmime_scan_mime_header(fp);
800 #endif /* USE_GPGME */
803 if (!mimeinfo) return;
804 if (mimeinfo->mime_type == MIME_TEXT)
807 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
809 g_return_if_fail(mimeinfo != NULL);
810 g_return_if_fail(mimeinfo->mime_type != MIME_TEXT);
812 if (mimeinfo->mime_type == MIME_MULTIPART) {
813 g_return_if_fail(mimeinfo->boundary != NULL);
814 g_return_if_fail(mimeinfo->sub == NULL);
816 g_return_if_fail(fp != NULL);
818 boundary = mimeinfo->boundary;
821 boundary_len = strlen(boundary);
823 /* look for first boundary */
824 while ((p = fgets(buf, sizeof(buf), fp)) != NULL)
825 if (IS_BOUNDARY(buf, boundary, boundary_len)) break;
832 if ((fpos = ftell(fp)) < 0) {
838 for (npart = 0;; npart++) {
840 gboolean eom = FALSE;
844 partinfo = procmime_scan_mime_header(fp);
845 if (!partinfo) break;
848 procmime_mimeinfo_insert(mimeinfo, partinfo);
850 procmime_mimeinfo_free(partinfo);
852 /* look for next boundary */
854 while ((p = fgets(buf, sizeof(buf), fp)) != NULL) {
855 if (IS_BOUNDARY(buf, boundary, boundary_len)) {
856 if (buf[2 + boundary_len] == '-' &&
857 buf[2 + boundary_len + 1] == '-')
863 eom = TRUE; /* broken MIME message */
866 partinfo->size = fpos - prev_fpos - strlen(buf);
871 source = procmsg_get_message_file_path(msginfo);
873 g_return_if_fail(mimeinfo != NULL);
875 if (!mimeinfo->main && mimeinfo->parent)
877 filename = mime_extract_file(source, mimeinfo);
879 compose_attach_append_with_type(compose, filename,
880 mimeinfo->content_type,
881 mimeinfo->mime_type);
886 if (mimeinfo->sub && mimeinfo->sub->children)
888 filename = mime_extract_file(source, mimeinfo->sub);
890 compose_attach_append_with_type(compose, filename,
891 mimeinfo->content_type,
892 mimeinfo->sub->mime_type);
897 if (mimeinfo->children) {
900 child = mimeinfo->children;
902 filename = mime_extract_file(source, child);
904 compose_attach_append_with_type(compose, filename,
916 procmime_mimeinfo_free_all(mimeinfo);
920 #define INSERT_FW_HEADER(var, hdr) \
921 if (msginfo->var && *msginfo->var) { \
922 gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
923 gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
924 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
927 Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
931 /* PrefsAccount *account; */
936 g_return_val_if_fail(msginfo != NULL, NULL);
937 g_return_val_if_fail(msginfo->folder != NULL, NULL);
939 account = msginfo->folder->folder->account;
940 if (!account && msginfo->to && prefs_common.forward_account_autosel) {
942 Xstrdup_a(to, msginfo->to, return);
944 account = account_find_from_address(to);
947 if(!account && prefs_common.forward_account_autosel) {
949 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
951 account = account_find_from_address(cc);
955 if (account == NULL) {
956 account = cur_account;
958 account = msginfo->folder->folder->account;
959 if (!account) account = cur_account;
962 g_return_val_if_fail(account != NULL, NULL);
964 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
965 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
966 CHANGE_FLAGS(msginfo);
968 compose = compose_create(account, COMPOSE_FORWARD);
970 if (msginfo->subject && *msginfo->subject) {
971 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
972 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
976 text = GTK_STEXT(compose->text);
977 gtk_stext_freeze(text);
982 msgfile = procmsg_get_message_file_path(msginfo);
983 if (!is_file_exist(msgfile))
984 g_warning(_("%s: file not exist\n"), msgfile);
986 compose_attach_append(compose, msgfile,
987 MIME_MESSAGE_RFC822);
993 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
994 g_warning(_("Can't get text part\n"));
998 if (prefs_common.fw_quotemark &&
999 *prefs_common.fw_quotemark)
1000 qmark = prefs_common.fw_quotemark;
1004 quote_str = compose_quote_fmt(compose, msginfo,
1005 prefs_common.fw_quotefmt,
1008 if (quote_str != NULL)
1009 gtk_stext_insert(text, NULL, NULL, NULL,
1015 compose_attach_parts(compose, msginfo);
1018 if (prefs_common.auto_sig)
1019 compose_insert_sig(compose);
1020 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1021 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1023 gtk_stext_thaw(text);
1024 /* *** NEW_HEADER_ENTRIES ***
1025 if (account->protocol != A_NNTP)
1026 gtk_widget_grab_focus(compose->to_entry);
1028 gtk_widget_grab_focus(compose->newsgroups_entry);
1031 if (prefs_common.auto_exteditor)
1032 compose_exec_ext_editor(compose);
1037 #undef INSERT_FW_HEADER
1039 Compose * compose_forward_multiple(PrefsAccount * account,
1040 GSList *msginfo_list)
1047 g_return_val_if_fail(msginfo_list != NULL, NULL);
1049 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1050 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1054 if (account == NULL) {
1055 account = cur_account;
1057 account = msginfo->folder->folder->account;
1058 if (!account) account = cur_account;
1061 g_return_val_if_fail(account != NULL, NULL);
1063 compose = compose_create(account, COMPOSE_FORWARD);
1065 text = GTK_STEXT(compose->text);
1066 gtk_stext_freeze(text);
1068 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1069 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1070 if (!is_file_exist(msgfile))
1071 g_warning(_("%s: file not exist\n"), msgfile);
1073 compose_attach_append(compose, msgfile,
1074 MIME_MESSAGE_RFC822);
1078 if (prefs_common.auto_sig)
1079 compose_insert_sig(compose);
1080 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1081 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1083 gtk_stext_thaw(text);
1084 /* *** NEW_HEADER_ENTRIES ***
1085 if (account->protocol != A_NNTP)
1086 gtk_widget_grab_focus(compose->to_entry);
1088 gtk_widget_grab_focus(compose->newsgroups_entry);
1094 void compose_reedit(MsgInfo *msginfo)
1097 PrefsAccount *account;
1100 gchar buf[BUFFSIZE];
1102 g_return_if_fail(msginfo != NULL);
1103 g_return_if_fail(msginfo->folder != NULL);
1105 account = msginfo->folder->folder->account;
1107 if(!account&& prefs_common.reedit_account_autosel) {
1108 gchar from[BUFFSIZE];
1109 if(!get_header_from_msginfo(msginfo,from,sizeof(from),"FROM:")){ /* Found a FROM header */
1110 extract_address(from);
1111 account = account_find_from_address(from);
1114 if (!account) account = cur_account;
1115 g_return_if_fail(account != NULL);
1117 compose = compose_create(account, COMPOSE_REEDIT);
1118 compose->targetinfo = procmsg_msginfo_copy(msginfo);
1120 if (compose_parse_header(compose, msginfo) < 0) return;
1121 compose_reedit_set_entry(compose, msginfo);
1123 text = GTK_STEXT(compose->text);
1124 gtk_stext_freeze(text);
1126 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1127 g_warning(_("Can't get text part\n"));
1129 while (fgets(buf, sizeof(buf), fp) != NULL)
1130 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1133 compose_attach_parts(compose, msginfo);
1135 gtk_stext_thaw(text);
1136 gtk_widget_grab_focus(compose->text);
1138 if (prefs_common.auto_exteditor)
1139 compose_exec_ext_editor(compose);
1142 GList *compose_get_compose_list(void)
1144 return compose_list;
1147 void compose_entry_append(Compose *compose, const gchar *address,
1148 ComposeEntryType type)
1154 if (!address || *address == '\0') return;
1156 /* *** NEW_HEADER_ENTRIES ***
1159 entry = GTK_ENTRY(compose->cc_entry);
1162 entry = GTK_ENTRY(compose->bcc_entry);
1164 case COMPOSE_NEWSGROUPS:
1165 entry = GTK_ENTRY(compose->newsgroups_entry);
1169 entry = GTK_ENTRY(compose->to_entry);
1173 text = gtk_entry_get_text(entry);
1175 gtk_entry_append_text(entry, ", ");
1176 gtk_entry_append_text(entry, address);
1186 case COMPOSE_REPLYTO:
1187 header = _("Reply-To:");
1189 case COMPOSE_NEWSGROUPS:
1190 header = _("Newsgroups:");
1192 case COMPOSE_FOLLOWUPTO:
1193 header = _("Followup-To:");
1201 compose_add_header_entry(compose, header, (gchar *)address);
1204 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1206 static HeaderEntry hentry[] = {{"Reply-To:", NULL, TRUE},
1207 {"Cc:", NULL, FALSE},
1208 {"References:", NULL, FALSE},
1209 {"Bcc:", NULL, FALSE},
1210 {"Newsgroups:", NULL, FALSE},
1211 {"Followup-To:", NULL, FALSE},
1212 {NULL, NULL, FALSE}};
1226 g_return_val_if_fail(msginfo != NULL, -1);
1228 if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1229 procheader_get_header_fields(fp, hentry);
1232 if (hentry[H_REPLY_TO].body != NULL) {
1233 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1234 compose->replyto = hentry[H_REPLY_TO].body;
1235 hentry[H_REPLY_TO].body = NULL;
1237 if (hentry[H_CC].body != NULL) {
1238 conv_unmime_header_overwrite(hentry[H_CC].body);
1239 compose->cc = hentry[H_CC].body;
1240 hentry[H_CC].body = NULL;
1242 if (hentry[H_REFERENCES].body != NULL) {
1243 if (compose->mode == COMPOSE_REEDIT)
1244 compose->references = hentry[H_REFERENCES].body;
1246 compose->references = compose_parse_references
1247 (hentry[H_REFERENCES].body, msginfo->msgid);
1248 g_free(hentry[H_REFERENCES].body);
1250 hentry[H_REFERENCES].body = NULL;
1252 if (hentry[H_BCC].body != NULL) {
1253 if (compose->mode == COMPOSE_REEDIT) {
1254 conv_unmime_header_overwrite(hentry[H_BCC].body);
1255 compose->bcc = hentry[H_BCC].body;
1257 g_free(hentry[H_BCC].body);
1258 hentry[H_BCC].body = NULL;
1260 if (hentry[H_NEWSGROUPS].body != NULL) {
1261 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1262 hentry[H_NEWSGROUPS].body = NULL;
1264 if (hentry[H_FOLLOWUP_TO].body != NULL) {
1265 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1266 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1267 hentry[H_FOLLOWUP_TO].body = NULL;
1270 if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1271 compose->inreplyto = g_strdup(msginfo->inreplyto);
1272 else if (compose->mode != COMPOSE_REEDIT &&
1273 msginfo->msgid && *msginfo->msgid) {
1274 compose->inreplyto = g_strdup(msginfo->msgid);
1276 if (!compose->references) {
1277 if (msginfo->inreplyto && *msginfo->inreplyto)
1278 compose->references =
1279 g_strdup_printf("<%s>\n\t<%s>",
1283 compose->references =
1284 g_strconcat("<", msginfo->msgid, ">",
1292 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1294 GSList *ref_id_list, *cur;
1298 ref_id_list = references_list_append(NULL, ref);
1299 if (!ref_id_list) return NULL;
1300 if (msgid && *msgid)
1301 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1306 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1307 /* "<" + Message-ID + ">" + CR+LF+TAB */
1308 len += strlen((gchar *)cur->data) + 5;
1310 if (len > MAX_REFERENCES_LEN) {
1311 /* remove second message-ID */
1312 if (ref_id_list && ref_id_list->next &&
1313 ref_id_list->next->next) {
1314 g_free(ref_id_list->next->data);
1315 ref_id_list = g_slist_remove
1316 (ref_id_list, ref_id_list->next->data);
1318 slist_free_strings(ref_id_list);
1319 g_slist_free(ref_id_list);
1326 new_ref = g_string_new("");
1327 for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1328 if (new_ref->len > 0)
1329 g_string_append(new_ref, "\n\t");
1330 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1333 slist_free_strings(ref_id_list);
1334 g_slist_free(ref_id_list);
1336 new_ref_str = new_ref->str;
1337 g_string_free(new_ref, FALSE);
1343 static void compose_quote_file(Compose *compose, MsgInfo *msginfo, FILE *fp)
1345 GtkSText *text = GTK_STEXT(compose->text);
1348 GdkColor *qcolor = NULL;
1349 gchar buf[BUFFSIZE];
1351 gchar *linep, *cur, *leftp;
1352 gint line_len, cur_len;
1357 // if (prefs_common.enable_color) qcolor = "e_color;
1358 if (prefs_common.quotemark && *prefs_common.quotemark)
1359 qmark = prefs_common.quotemark;
1362 quote_str = compose_quote_parse_fmt(compose, msginfo, qmark);
1363 g_return_if_fail(quote_str != NULL);
1364 qlen = strlen(quote_str);
1366 if (!prefs_common.linewrap_quote ||
1367 prefs_common.linewrap_len <= qlen) {
1368 while (fgets(buf, sizeof(buf), fp) != NULL) {
1369 gtk_stext_insert(text, NULL, qcolor, NULL,
1371 gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
1377 wrap_len = prefs_common.linewrap_len - qlen;
1379 while (fgets(buf, sizeof(buf), fp) != NULL) {
1381 str_len = strlen(buf);
1383 if (str_len <= wrap_len) {
1384 gtk_stext_insert(text, NULL, qcolor, NULL,
1386 gtk_stext_insert(text, NULL, qcolor, NULL, buf, -1);
1387 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
1391 linep = cur = leftp = buf;
1392 line_len = cur_len = 0;
1394 while (*cur != '\0') {
1395 ch_len = mblen(cur, MB_CUR_MAX);
1396 if (ch_len < 0) ch_len = 1;
1398 if (ch_len == 1 && isspace(*cur)) {
1399 linep = cur + ch_len;
1400 line_len = cur_len + ch_len;
1403 if (cur_len + ch_len > wrap_len && line_len > 0) {
1404 gtk_stext_insert(text, NULL, qcolor, NULL,
1407 if (isspace(*(linep - 1)))
1408 gtk_stext_insert(text, NULL,
1410 leftp, line_len - 1);
1412 gtk_stext_insert(text, NULL,
1415 gtk_stext_insert(text, NULL, NULL, NULL,
1419 cur_len = cur_len - line_len + ch_len;
1426 linep = cur + ch_len;
1427 line_len = cur_len + ch_len;
1434 gtk_stext_insert(text, NULL, qcolor, NULL,
1436 gtk_stext_insert(text, NULL, qcolor, NULL, leftp, -1);
1437 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
1446 static gchar *compose_quote_parse_fmt(Compose *compose, MsgInfo *msginfo,
1450 size_t buf_len = 1024;
1458 if (!fmt || *fmt == '\0') return 0;
1460 Xalloca(mbs, sizeof(wchar_t) + 1, return 0);
1461 Xalloca(wcsfmt, (strlen(fmt) + 1) * sizeof(wchar_t), return 0);
1462 mbstowcs(wcsfmt, fmt, strlen(fmt) + 1);
1465 ext_str = g_malloc(sizeof(gchar) * buf_len);
1466 g_return_val_if_fail(ext_str != NULL, NULL);
1471 len = wctomb(mbs, *sp);
1477 wctomb(mbs, *(++sp));
1482 str = msginfo->date;
1486 str = msginfo->from;
1490 if (!msginfo->fromname) {sp++; break;}
1491 p = msginfo->fromname;
1492 tmp[0] = tmp[1] = tmp[2] = '\0';
1494 if (*p && isalnum(*p))
1495 tmp[0] = toupper(*p);
1502 while (*p && !isspace(*p)) p++;
1503 while (*p && isspace(*p)) p++;
1504 if (*p && isalnum(*p))
1505 tmp[1] = toupper(*p);
1508 if (tmp[1]) str = tmp;
1512 str = msginfo->fromname;
1516 if (!msginfo->fromname) {sp++; break;}
1517 Xstrdup_a(str, msginfo->fromname,
1520 while (*p && !isspace(*p)) p++;
1525 str = msginfo->subject;
1537 if (!msginfo->msgid) {sp++; break;}
1538 Xalloca(str, strlen(msginfo->msgid) + 3,
1540 g_snprintf(str, strlen(msginfo->msgid) + 3,
1541 "<%s>", msginfo->msgid);
1553 while (ext_len + strlen(str) + 1 > buf_len)
1555 ext_str = g_realloc(ext_str,
1556 sizeof(gchar) * buf_len);
1557 g_return_val_if_fail(ext_str != NULL, NULL);
1558 strcpy(ext_str + ext_len, str);
1559 ext_len += strlen(str);
1561 } else if (*mbs == '\\') {
1562 wctomb(mbs, *(++sp));
1580 while (ext_len + strlen(str) + 1 > buf_len)
1582 ext_str = g_realloc(ext_str,
1583 sizeof(gchar) * buf_len);
1584 g_return_val_if_fail(ext_str != NULL, NULL);
1585 strcpy(ext_str + ext_len, str);
1586 ext_len += strlen(str);
1590 while (ext_len + len + 1 > buf_len) buf_len += 1024;
1591 ext_str = g_realloc(ext_str, sizeof(gchar) * buf_len);
1592 g_return_val_if_fail(ext_str != NULL, NULL);
1593 strcpy(ext_str + ext_len, mbs);
1600 ext_str = g_realloc(ext_str, strlen(ext_str) + 1);
1606 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1607 gboolean to_all, gboolean ignore_replyto,
1608 gboolean followup_and_reply_to)
1613 GHashTable *to_table;
1615 g_return_if_fail(compose->account != NULL);
1616 g_return_if_fail(msginfo != NULL);
1618 if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
1619 compose_entry_append(compose,
1620 ((compose->replyto && !ignore_replyto)
1622 : msginfo->from ? msginfo->from : ""),
1624 if (compose->account->protocol == A_NNTP)
1625 compose_entry_append(compose,
1626 compose->followup_to ? compose->followup_to
1627 : compose->newsgroups ? compose->newsgroups
1629 COMPOSE_NEWSGROUPS);
1631 if (msginfo->subject && *msginfo->subject) {
1632 gchar *buf, *buf2, *p;
1634 buf = g_strdup(msginfo->subject);
1635 while (!strncasecmp(buf, "Re:", 3)) {
1637 while (isspace(*p)) p++;
1638 memmove(buf, p, strlen(p) + 1);
1641 buf2 = g_strdup_printf("Re: %s", buf);
1642 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1646 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1648 if (!to_all || compose->account->protocol == A_NNTP) return;
1650 from = g_strdup(compose->replyto ? compose->replyto :
1651 msginfo->from ? msginfo->from : "");
1652 extract_address(from);
1654 cc_list = address_list_append(NULL, msginfo->to);
1655 cc_list = address_list_append(cc_list, compose->cc);
1657 to_table = g_hash_table_new(g_str_hash, g_str_equal);
1658 g_hash_table_insert(to_table, from, GINT_TO_POINTER(1));
1659 if (compose->account)
1660 g_hash_table_insert(to_table, compose->account->address,
1661 GINT_TO_POINTER(1));
1663 /* remove address on To: and that of current account */
1664 for (cur = cc_list; cur != NULL; ) {
1665 GSList *next = cur->next;
1667 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1668 cc_list = g_slist_remove(cc_list, cur->data);
1670 g_hash_table_insert(to_table, cur->data, cur);
1674 g_hash_table_destroy(to_table);
1678 for (cur = cc_list; cur != NULL; cur = cur->next)
1679 compose_entry_append(compose, (gchar *)cur->data,
1681 slist_free_strings(cc_list);
1682 g_slist_free(cc_list);
1686 #define SET_ENTRY(entry, str) \
1689 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1692 #define SET_ADDRESS(type, str) \
1695 compose_entry_append(compose, str, type); \
1698 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1700 g_return_if_fail(msginfo != NULL);
1702 SET_ENTRY(subject_entry, msginfo->subject);
1703 SET_ADDRESS(COMPOSE_TO, msginfo->to);
1704 SET_ADDRESS(COMPOSE_CC, compose->cc);
1705 SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1706 SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1710 GtkItemFactory *ifactory;
1711 GtkWidget *menuitem;
1713 ifactory = gtk_item_factory_from_widget(compose->menubar);
1714 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
1715 gtk_check_menu_item_set_active
1716 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1718 if (compose->replyto) {
1719 GtkItemFactory *ifactory;
1720 GtkWidget *menuitem;
1722 ifactory = gtk_item_factory_from_widget(compose->menubar);
1723 menuitem = gtk_item_factory_get_item
1724 (ifactory, "/Message/Reply to");
1725 gtk_check_menu_item_set_active
1726 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1734 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1741 size_t buf_len = 128;
1743 if (strlen(sigfile) < 2)
1746 sigprg = popen(sigfile+1, "r");
1749 buf = g_malloc(buf_len);
1752 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1753 "Unable to insert signature (malloc failed)\n", -1);
1759 while (!feof(sigprg)) {
1760 bzero(buf, buf_len);
1761 fread(buf, buf_len-1, 1, sigprg);
1762 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1770 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1771 "Can't exec file: ", -1);
1772 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1777 static void compose_insert_sig(Compose *compose)
1781 if (compose->account && compose->account->sig_path)
1782 sigfile = g_strdup(compose->account->sig_path);
1784 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1785 DEFAULT_SIGNATURE, NULL);
1788 if (!is_file_or_fifo_exist(sigfile) & (sigfile[0] != '|')) {
1793 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1794 if (prefs_common.sig_sep) {
1795 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1796 prefs_common.sig_sep, -1);
1797 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1801 if (sigfile[0] == '|')
1803 compose_exec_sig(compose, sigfile);
1807 compose_insert_file(compose, sigfile);
1812 static void compose_insert_file(Compose *compose, const gchar *file)
1814 GtkSText *text = GTK_STEXT(compose->text);
1815 gchar buf[BUFFSIZE];
1818 g_return_if_fail(file != NULL);
1820 if ((fp = fopen(file, "r")) == NULL) {
1821 FILE_OP_ERROR(file, "fopen");
1825 gtk_stext_freeze(text);
1827 while (fgets(buf, sizeof(buf), fp) != NULL)
1828 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1830 gtk_stext_thaw(text);
1835 static void compose_attach_info(Compose * compose, AttachInfo * ainfo,
1836 ContentType cnttype)
1838 gchar *text[N_ATTACH_COLS];
1841 text[COL_MIMETYPE] = ainfo->content_type;
1842 text[COL_SIZE] = to_human_readable(ainfo->size);
1843 text[COL_NAME] = ainfo->name;
1845 row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1846 gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1848 if (cnttype != MIME_MESSAGE_RFC822)
1849 compose_changed_cb(NULL, compose);
1852 static void compose_attach_append_with_type(Compose *compose,
1855 ContentType cnttype)
1860 if (!is_file_exist(file)) {
1861 g_warning(_("File %s doesn't exist\n"), file);
1864 if ((size = get_file_size(file)) < 0) {
1865 g_warning(_("Can't get file size of %s\n"), file);
1869 alertpanel_notice(_("File %s is empty\n"), file);
1873 if (!compose->use_attach) {
1874 GtkItemFactory *ifactory;
1875 GtkWidget *menuitem;
1877 ifactory = gtk_item_factory_from_widget(compose->menubar);
1878 menuitem = gtk_item_factory_get_item(ifactory,
1880 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1884 ainfo = g_new0(AttachInfo, 1);
1885 ainfo->file = g_strdup(file);
1887 if (cnttype == MIME_MESSAGE_RFC822) {
1888 ainfo->encoding = ENC_7BIT;
1889 ainfo->name = g_strdup_printf(_("Message: %s"),
1892 ainfo->encoding = ENC_BASE64;
1893 ainfo->name = g_strdup(g_basename(file));
1896 ainfo->content_type = g_strdup(type);
1899 compose_attach_info(compose, ainfo, cnttype);
1902 static void compose_attach_append(Compose *compose, const gchar *file,
1903 ContentType cnttype)
1906 gchar *text[N_ATTACH_COLS];
1910 if (!is_file_exist(file)) {
1911 g_warning(_("File %s doesn't exist\n"), file);
1914 if ((size = get_file_size(file)) < 0) {
1915 g_warning(_("Can't get file size of %s\n"), file);
1919 alertpanel_notice(_("File %s is empty\n"), file);
1923 if (!compose->use_attach) {
1924 GtkItemFactory *ifactory;
1925 GtkWidget *menuitem;
1927 ifactory = gtk_item_factory_from_widget(compose->menubar);
1928 menuitem = gtk_item_factory_get_item(ifactory,
1930 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1934 ainfo = g_new0(AttachInfo, 1);
1935 ainfo->file = g_strdup(file);
1937 if (cnttype == MIME_MESSAGE_RFC822) {
1938 ainfo->content_type = g_strdup("message/rfc822");
1939 ainfo->encoding = ENC_7BIT;
1940 ainfo->name = g_strdup_printf(_("Message: %s"),
1943 ainfo->content_type = procmime_get_mime_type(file);
1944 if (!ainfo->content_type)
1945 ainfo->content_type =
1946 g_strdup("application/octet-stream");
1947 ainfo->encoding = ENC_BASE64;
1948 ainfo->name = g_strdup(g_basename(file));
1952 compose_attach_info(compose, ainfo, cnttype);
1955 static void compose_wrap_line(Compose *compose)
1957 GtkSText *text = GTK_STEXT(compose->text);
1958 gint ch_len, last_ch_len;
1959 gchar cbuf[MB_CUR_MAX], last_ch;
1963 gint p_start, p_end;
1964 gint line_pos, cur_pos;
1965 gint line_len, cur_len;
1967 #define GET_STEXT(pos) \
1968 if (text->use_wchar) \
1969 ch_len = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
1971 cbuf[0] = GTK_STEXT_INDEX(text, (pos)); \
1975 gtk_stext_freeze(text);
1977 text_len = gtk_stext_get_length(text);
1979 /* check to see if the point is on the paragraph mark (empty line). */
1980 cur_pos = gtk_stext_get_point(text);
1982 if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
1984 goto compose_end; /* on the paragraph mark */
1985 GET_STEXT(cur_pos - 1);
1986 if (ch_len == 1 && *cbuf == '\n')
1987 goto compose_end; /* on the paragraph mark */
1990 /* find paragraph start. */
1991 line_end = quoted = 0;
1992 for (p_start = cur_pos; p_start >= 0; --p_start) {
1994 if (ch_len == 1 && *cbuf == '\n') {
1996 goto compose_end; /* quoted part */
2003 if (ch_len == 1 && strchr(">:#", *cbuf))
2005 else if (ch_len != 1 || !isspace(*cbuf))
2014 /* find paragraph end. */
2016 for (p_end = cur_pos; p_end < text_len; p_end++) {
2018 if (ch_len == 1 && *cbuf == '\n') {
2025 if (line_end && ch_len == 1 && strchr(">:#", *cbuf))
2026 goto compose_end; /* quoted part */
2031 if (p_end >= text_len)
2034 if (p_start >= p_end)
2037 line_len = cur_len = 0;
2041 for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
2051 if (ch_len == 1 && isspace(*cbuf))
2054 if (ch_len == 1 && *cbuf == '\n') {
2056 if (last_ch_len == 1 && !isspace(last_ch)) {
2057 if (cur_pos + 1 < p_end) {
2058 GET_STEXT(cur_pos + 1);
2059 if (ch_len == 1 && !isspace(*cbuf))
2063 gtk_stext_set_point(text, cur_pos + 1);
2064 gtk_stext_backward_delete(text, 1);
2066 gtk_stext_set_point(text, cur_pos);
2067 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
2077 last_ch_len = ch_len;
2081 line_pos = cur_pos + 1;
2082 line_len = cur_len + ch_len;
2085 if (cur_len + ch_len > prefs_common.linewrap_len &&
2089 GET_STEXT(line_pos - 1);
2090 if (ch_len == 1 && isspace(*cbuf)) {
2091 gtk_stext_set_point(text, line_pos);
2092 gtk_stext_backward_delete(text, 1);
2101 gtk_stext_set_point(text, line_pos);
2102 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2106 cur_len = cur_len - line_len + ch_len;
2112 line_pos = cur_pos + 1;
2113 line_len = cur_len + ch_len;
2119 gtk_stext_thaw(text);
2124 static void compose_wrap_line_all(Compose *compose)
2126 GtkSText *text = GTK_STEXT(compose->text);
2128 guint line_pos = 0, cur_pos = 0;
2129 gint line_len = 0, cur_len = 0;
2131 gchar cbuf[MB_CUR_MAX];
2133 gtk_stext_freeze(text);
2135 text_len = gtk_stext_get_length(text);
2137 for (; cur_pos < text_len; cur_pos++) {
2138 if (text->use_wchar)
2140 (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
2142 cbuf[0] = GTK_STEXT_INDEX(text, cur_pos);
2146 if (ch_len == 1 && *cbuf == '\n') {
2147 line_pos = cur_pos + 1;
2148 line_len = cur_len = 0;
2157 if (ch_len == 1 && isspace(*cbuf)) {
2158 line_pos = cur_pos + 1;
2159 line_len = cur_len + ch_len;
2162 if (cur_len + ch_len > prefs_common.linewrap_len &&
2166 if (text->use_wchar)
2167 tlen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
2169 cbuf[0] = GTK_STEXT_INDEX(text, line_pos - 1);
2172 if (tlen == 1 && isspace(*cbuf)) {
2173 gtk_stext_set_point(text, line_pos);
2174 gtk_stext_backward_delete(text, 1);
2182 gtk_stext_set_point(text, line_pos);
2183 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2187 cur_len = cur_len - line_len + ch_len;
2193 line_pos = cur_pos + 1;
2194 line_len = cur_len + ch_len;
2199 gtk_stext_thaw(text);
2202 static void compose_set_title(Compose *compose)
2207 edited = compose->modified ? _(" [Edited]") : "";
2208 if (compose->account && compose->account->address)
2209 str = g_strdup_printf(_("%s - Compose message%s"),
2210 compose->account->address, edited);
2212 str = g_strdup_printf(_("Compose message%s"), edited);
2213 gtk_window_set_title(GTK_WINDOW(compose->window), str);
2218 * compose_current_mail_account:
2220 * Find a current mail account (the currently selected account, or the
2221 * default account, if a news account is currently selected). If a
2222 * mail account cannot be found, display an error message.
2224 * Return value: Mail account, or NULL if not found.
2226 static PrefsAccount *
2227 compose_current_mail_account(void)
2231 if (cur_account && cur_account->protocol != A_NNTP)
2234 ac = account_get_default();
2235 if (!ac || ac->protocol == A_NNTP) {
2236 alertpanel_error(_("Account for sending mail is not specified.\n"
2237 "Please select a mail account before sending."));
2244 gboolean compose_check_for_valid_recipient(Compose *compose) {
2245 gchar *recipient_headers[] = {"To:", "Newsgroups:", "Cc:", "Bcc:", NULL};
2246 gboolean recipient_found = FALSE;
2250 for(list = compose->header_list; list; list = list->next) {
2253 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((compose_headerentry *)list->data)->combo)->entry));
2254 entry = gtk_entry_get_text(GTK_ENTRY(((compose_headerentry *)list->data)->entry));
2256 for(strptr = recipient_headers; *strptr != NULL; strptr++) {
2257 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2258 recipient_found = TRUE;
2263 return recipient_found;
2266 gint compose_send(Compose *compose)
2268 gchar tmp[MAXPATHLEN + 1];
2270 static gboolean lock = FALSE;
2274 g_return_val_if_fail(compose->account != NULL, -1);
2275 g_return_val_if_fail(compose->orig_account != NULL, -1);
2279 if(!compose_check_for_valid_recipient(compose)) {
2280 alertpanel_error(_("Recipient is not specified."));
2285 /* write to temporary file */
2286 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%d",
2287 get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
2289 if (prefs_common.linewrap_at_send)
2290 compose_wrap_line_all(compose);
2292 if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2297 if (!compose->to_list && !compose->newsgroup_list) {
2298 g_warning(_("can't get recipient list."));
2304 if (compose->to_list) {
2308 if (compose->account->protocol != A_NNTP)
2309 ac = compose->account;
2310 else if (compose->orig_account->protocol != A_NNTP)
2311 ac = compose->orig_account;
2312 else if (cur_account && cur_account->protocol != A_NNTP)
2315 ac = compose_current_mail_account();
2323 ac = compose->account;
2325 ok = send_message(tmp, ac, compose->to_list);
2326 statusbar_pop_all();
2329 if (ok == 0 && compose->newsgroup_list) {
2332 if (compose->account->protocol == A_NNTP)
2333 folder = FOLDER(compose->account->folder);
2335 folder = FOLDER(compose->orig_account->folder);
2337 ok = news_post(folder, tmp);
2339 alertpanel_error(_("Error occurred while posting the message to %s ."),
2340 compose->account->nntp_server);
2347 /* queue message if failed to send */
2349 if (prefs_common.queue_msg) {
2354 _("Error occurred while sending the message.\n"
2355 "Put this message into queue folder?"),
2356 _("OK"), _("Cancel"), NULL);
2357 if (G_ALERTDEFAULT == val) {
2358 ok = compose_queue(compose, tmp);
2360 alertpanel_error(_("Can't queue the message."));
2363 alertpanel_error(_("Error occurred while sending the message."));
2365 if (compose->mode == COMPOSE_REEDIT) {
2366 compose_remove_reedit_target(compose);
2367 if (compose->targetinfo)
2368 folderview_update_item
2369 (compose->targetinfo->folder, TRUE);
2373 /* save message to outbox */
2374 if (ok == 0 && prefs_common.savemsg) {
2375 if (compose_save_to_outbox(compose, tmp) < 0)
2377 (_("Can't save the message to outbox."));
2385 static gboolean compose_use_attach(Compose *compose) {
2386 return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2389 static gint compose_write_to_file(Compose *compose, const gchar *file,
2396 const gchar *out_codeset;
2397 EncodingType encoding;
2399 if ((fp = fopen(file, "w")) == NULL) {
2400 FILE_OP_ERROR(file, "fopen");
2404 /* chmod for security */
2405 if (change_file_mode_rw(fp, file) < 0) {
2406 FILE_OP_ERROR(file, "chmod");
2407 g_warning(_("can't change file mode\n"));
2410 /* get all composed text */
2411 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2412 len = strlen(chars);
2413 if (is_ascii_str(chars)) {
2414 buf = g_strdup(chars);
2415 out_codeset = "US-ASCII";
2416 encoding = ENC_7BIT;
2418 const gchar *src_codeset;
2420 out_codeset = conv_get_outgoing_charset_str();
2421 if (!strcasecmp(out_codeset, "US-ASCII"))
2422 out_codeset = "ISO-8859-1";
2423 encoding = procmime_get_encoding_for_charset(out_codeset);
2424 debug_print("charset = %s, encoding = %s\n",
2425 out_codeset, procmime_get_encoding_str(encoding));
2427 src_codeset = conv_get_current_charset_str();
2428 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
2433 alertpanel_error(_("Can't convert the codeset of the message."));
2440 if (compose_write_headers
2441 (compose, fp, out_codeset, encoding, is_draft) < 0) {
2442 g_warning(_("can't write headers\n"));
2449 if (compose_use_attach(compose)) {
2451 /* This prolog message is ignored by mime software and
2452 * because it would make our signing/encryption task
2453 * tougher, we don't emit it in that case */
2454 if (!compose->use_signing && !compose->use_encryption)
2456 fputs("This is a multi-part message in MIME format.\n", fp);
2458 fprintf(fp, "\n--%s\n", compose->boundary);
2459 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
2461 fprintf(fp, "Content-Transfer-Encoding: %s\n",
2462 procmime_get_encoding_str(encoding));
2468 if (encoding == ENC_BASE64) {
2469 gchar outbuf[B64_BUFFSIZE];
2472 for (i = 0; i < len; i += B64_LINE_SIZE) {
2473 l = MIN(B64_LINE_SIZE, len - i);
2474 to64frombits(outbuf, buf + i, l);
2478 } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
2479 FILE_OP_ERROR(file, "fwrite");
2487 if (compose_use_attach(compose))
2488 compose_write_attach(compose, fp);
2490 if (fclose(fp) == EOF) {
2491 FILE_OP_ERROR(file, "fclose");
2497 if (compose->use_signing) {
2498 if (rfc2015_sign(file, compose->account) < 0) {
2503 if (compose->use_encryption) {
2504 if (rfc2015_encrypt(file, compose->to_list) < 0) {
2509 #endif /* USE_GPGME */
2514 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
2520 if ((fp = fopen(file, "w")) == NULL) {
2521 FILE_OP_ERROR(file, "fopen");
2525 /* chmod for security */
2526 if (change_file_mode_rw(fp, file) < 0) {
2527 FILE_OP_ERROR(file, "chmod");
2528 g_warning(_("can't change file mode\n"));
2531 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2534 len = strlen(chars);
2535 if (fwrite(chars, sizeof(gchar), len, fp) != len) {
2536 FILE_OP_ERROR(file, "fwrite");
2545 if (fclose(fp) == EOF) {
2546 FILE_OP_ERROR(file, "fclose");
2553 static gint compose_save_to_outbox(Compose *compose, const gchar *file)
2560 debug_print(_("saving sent message...\n"));
2562 outbox = folder_get_default_outbox();
2563 path = folder_item_get_path(outbox);
2564 if (!is_dir_exist(path))
2565 make_dir_hier(path);
2567 folder_item_scan(outbox);
2568 if ((num = folder_item_add_msg(outbox, file, FALSE)) < 0) {
2570 g_warning(_("can't save message\n"));
2574 if ((fp = procmsg_open_mark_file(path, TRUE)) == NULL)
2575 g_warning(_("can't open mark file\n"));
2579 newmsginfo.msgnum = num;
2580 newmsginfo.flags.perm_flags = 0;
2581 newmsginfo.flags.tmp_flags = 0;
2582 procmsg_write_flags(&newmsginfo, fp);
2590 static gint compose_remove_reedit_target(Compose *compose)
2593 MsgInfo *msginfo = compose->targetinfo;
2595 g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
2596 if (!msginfo) return -1;
2598 item = msginfo->folder;
2599 g_return_val_if_fail(item != NULL, -1);
2601 folder_item_scan(item);
2602 if (procmsg_msg_exist(msginfo) &&
2603 (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
2604 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
2605 g_warning(_("can't remove the old message\n"));
2613 static gint compose_queue(Compose *compose, const gchar *file)
2616 gchar *tmp, *queue_path;
2619 gchar buf[BUFFSIZE];
2622 debug_print(_("queueing message...\n"));
2623 g_return_val_if_fail(compose->to_list != NULL, -1);
2624 g_return_val_if_fail(compose->account != NULL, -1);
2626 tmp = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
2627 G_DIR_SEPARATOR, (gint)compose);
2628 if ((fp = fopen(tmp, "w")) == NULL) {
2629 FILE_OP_ERROR(tmp, "fopen");
2633 if ((src_fp = fopen(file, "r")) == NULL) {
2634 FILE_OP_ERROR(file, "fopen");
2640 if (change_file_mode_rw(fp, tmp) < 0) {
2641 FILE_OP_ERROR(tmp, "chmod");
2642 g_warning(_("can't change file mode\n"));
2645 /* queueing variables */
2646 fprintf(fp, "AF:\n");
2647 fprintf(fp, "NF:0\n");
2648 fprintf(fp, "PS:10\n");
2649 fprintf(fp, "SRH:1\n");
2650 fprintf(fp, "SFN:\n");
2651 fprintf(fp, "DSR:\n");
2653 fprintf(fp, "MID:<%s>\n", compose->msgid);
2655 fprintf(fp, "MID:\n");
2656 fprintf(fp, "CFG:\n");
2657 fprintf(fp, "PT:0\n");
2658 fprintf(fp, "S:%s\n", compose->account->address);
2659 fprintf(fp, "RQ:\n");
2660 if (compose->account->smtp_server)
2661 fprintf(fp, "SSV:%s\n", compose->account->smtp_server);
2663 fprintf(fp, "SSV:\n");
2664 if (compose->account->nntp_server)
2665 fprintf(fp, "NSV:%s\n", compose->account->nntp_server);
2667 fprintf(fp, "NSV:\n");
2668 fprintf(fp, "SSH:\n");
2669 fprintf(fp, "R:<%s>", (gchar *)compose->to_list->data);
2670 for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
2671 fprintf(fp, ",<%s>", (gchar *)cur->data);
2673 /* Sylpheed account ID */
2674 fprintf(fp, "AID:%d\n", compose->account->account_id);
2677 while (fgets(buf, sizeof(buf), src_fp) != NULL) {
2678 if (fputs(buf, fp) == EOF) {
2679 FILE_OP_ERROR(tmp, "fputs");
2689 if (fclose(fp) == EOF) {
2690 FILE_OP_ERROR(tmp, "fclose");
2696 queue = folder_get_default_queue();
2698 folder_item_scan(queue);
2699 queue_path = folder_item_get_path(queue);
2700 if (!is_dir_exist(queue_path))
2701 make_dir_hier(queue_path);
2702 if ((num = folder_item_add_msg(queue, tmp, TRUE)) < 0) {
2703 g_warning(_("can't queue the message\n"));
2711 if (compose->mode == COMPOSE_REEDIT) {
2712 compose_remove_reedit_target(compose);
2713 if (compose->targetinfo &&
2714 compose->targetinfo->folder != queue)
2715 folderview_update_item
2716 (compose->targetinfo->folder, TRUE);
2719 if ((fp = procmsg_open_mark_file(queue_path, TRUE)) == NULL)
2720 g_warning(_("can't open mark file\n"));
2724 newmsginfo.msgnum = num;
2725 newmsginfo.flags.perm_flags = 0;
2726 newmsginfo.flags.tmp_flags = 0;
2727 procmsg_write_flags(&newmsginfo, fp);
2732 folder_item_scan(queue);
2733 folderview_update_item(queue, TRUE);
2738 static void compose_write_attach(Compose *compose, FILE *fp)
2741 GtkCList *clist = GTK_CLIST(compose->attach_clist);
2744 gchar filename[BUFFSIZE];
2747 for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
2749 if ((attach_fp = fopen(ainfo->file, "r")) == NULL) {
2750 g_warning(_("Can't open file %s\n"), ainfo->file);
2754 fprintf(fp, "\n--%s\n", compose->boundary);
2756 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
2757 fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
2758 fprintf(fp, "Content-Disposition: inline\n");
2760 conv_encode_header(filename, sizeof(filename),
2762 fprintf(fp, "Content-Type: %s;\n"
2764 ainfo->content_type, filename);
2765 fprintf(fp, "Content-Disposition: attachment;\n"
2766 " filename=\"%s\"\n", filename);
2769 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
2770 procmime_get_encoding_str(ainfo->encoding));
2772 if (ainfo->encoding == ENC_7BIT) {
2773 gchar buf[BUFFSIZE];
2775 while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
2777 if (len > 1 && buf[len - 1] == '\n' &&
2778 buf[len - 2] == '\r') {
2779 buf[len - 2] = '\n';
2780 buf[len - 1] = '\0';
2785 gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
2787 while ((len = fread(inbuf, sizeof(gchar),
2788 B64_LINE_SIZE, attach_fp))
2790 to64frombits(outbuf, inbuf, B64_LINE_SIZE);
2794 if (len > 0 && feof(attach_fp)) {
2795 to64frombits(outbuf, inbuf, len);
2804 fprintf(fp, "\n--%s--\n", compose->boundary);
2807 #define IS_IN_CUSTOM_HEADER(header) \
2808 (compose->account->add_customhdr && \
2809 custom_header_find(compose->account->customhdr_list, header) != NULL)
2811 static gint compose_write_headers_from_headerlist(Compose *compose,
2814 GSList *(*list_append_func) (GSList *list, const gchar *str),
2817 gchar buf[BUFFSIZE];
2818 gchar *str, *header_w_colon, *trans_hdr;
2819 gboolean first_address;
2821 compose_headerentry *headerentry;
2823 if (IS_IN_CUSTOM_HEADER(header)) {
2827 debug_print(_("Writing %s-header\n"), header);
2829 header_w_colon = g_strconcat(header, ":", NULL);
2830 trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
2832 first_address = TRUE;
2833 for(list = compose->header_list; list; list = list->next) {
2834 headerentry = ((compose_headerentry *)list->data);
2835 if(!strcmp(trans_hdr, gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)))) {
2836 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
2837 Xstrdup_a(str, str, return -1);
2839 if(list_append_func)
2840 *dest_list = list_append_func(*dest_list, str);
2841 compose_convert_header
2842 (buf, sizeof(buf), str,
2843 strlen(header) + 2);
2845 fprintf(fp, "%s: ", header);
2846 first_address = FALSE;
2850 fprintf(fp, "%s", buf);
2853 if(!first_address) {
2857 g_free(header_w_colon);
2862 static gint compose_write_headers(Compose *compose, FILE *fp,
2863 const gchar *charset, EncodingType encoding,
2866 gchar buf[BUFFSIZE];
2868 /* struct utsname utsbuf; */
2870 g_return_val_if_fail(fp != NULL, -1);
2871 g_return_val_if_fail(charset != NULL, -1);
2872 g_return_val_if_fail(compose->account != NULL, -1);
2873 g_return_val_if_fail(compose->account->address != NULL, -1);
2876 if (compose->account->add_date) {
2877 get_rfc822_date(buf, sizeof(buf));
2878 fprintf(fp, "Date: %s\n", buf);
2882 if (!IS_IN_CUSTOM_HEADER("From")) {
2883 if (compose->account->name && *compose->account->name) {
2884 compose_convert_header
2885 (buf, sizeof(buf), compose->account->name,
2887 fprintf(fp, "From: %s <%s>\n",
2888 buf, compose->account->address);
2890 fprintf(fp, "From: %s\n", compose->account->address);
2893 slist_free_strings(compose->to_list);
2894 g_slist_free(compose->to_list);
2895 compose->to_list = NULL;
2898 compose_write_headers_from_headerlist(compose, fp, "To", address_list_append, &compose->to_list);
2900 if (compose->use_to) {
2901 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
2903 Xstrdup_a(str, str, return -1);
2906 compose->to_list = address_list_append
2907 (compose->to_list, str);
2908 if (!IS_IN_CUSTOM_HEADER("To")) {
2909 compose_convert_header
2910 (buf, sizeof(buf), str,
2912 fprintf(fp, "To: %s\n", buf);
2918 slist_free_strings(compose->newsgroup_list);
2919 g_slist_free(compose->newsgroup_list);
2920 compose->newsgroup_list = NULL;
2923 compose_write_headers_from_headerlist(compose, fp, "Newsgroups", newsgroup_list_append, &compose->newsgroup_list);
2925 str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
2927 Xstrdup_a(str, str, return -1);
2931 compose->newsgroup_list =
2932 newsgroup_list_append(compose->newsgroup_list,
2934 if (!IS_IN_CUSTOM_HEADER("Newsgroups")) {
2935 compose_convert_header(buf, sizeof(buf), str,
2936 strlen("Newsgroups: "));
2937 fprintf(fp, "Newsgroups: %s\n", buf);
2943 compose_write_headers_from_headerlist(compose, fp, "Cc", address_list_append, &compose->to_list);
2945 if (compose->use_cc) {
2946 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
2948 Xstrdup_a(str, str, return -1);
2951 compose->to_list = address_list_append
2952 (compose->to_list, str);
2953 if (!IS_IN_CUSTOM_HEADER("Cc")) {
2954 compose_convert_header
2955 (buf, sizeof(buf), str,
2957 fprintf(fp, "Cc: %s\n", buf);
2964 compose_write_headers_from_headerlist(compose, fp, "Bcc", address_list_append, &compose->to_list);
2966 if (compose->use_bcc) {
2967 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
2969 Xstrdup_a(str, str, return -1);
2972 compose->to_list = address_list_append
2973 (compose->to_list, str);
2974 compose_convert_header(buf, sizeof(buf), str,
2976 fprintf(fp, "Bcc: %s\n", buf);
2981 if (!is_draft && !compose->to_list && !compose->newsgroup_list)
2985 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
2986 if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
2987 Xstrdup_a(str, str, return -1);
2990 compose_convert_header(buf, sizeof(buf), str,
2991 strlen("Subject: "));
2992 fprintf(fp, "Subject: %s\n", buf);
2997 if (compose->account->gen_msgid) {
2998 compose_generate_msgid(compose, buf, sizeof(buf));
2999 fprintf(fp, "Message-Id: <%s>\n", buf);
3000 compose->msgid = g_strdup(buf);
3004 if (compose->inreplyto && compose->to_list)
3005 fprintf(fp, "In-Reply-To: <%s>\n", compose->inreplyto);
3008 if (compose->references)
3009 fprintf(fp, "References: %s\n", compose->references);
3012 compose_write_headers_from_headerlist(compose, fp, "Followup-To", NULL, NULL);
3014 if (compose->use_followupto && !IS_IN_CUSTOM_HEADER("Followup-To")) {
3015 str = gtk_entry_get_text(GTK_ENTRY(compose->followup_entry));
3017 Xstrdup_a(str, str, return -1);
3021 compose_convert_header(buf, sizeof(buf), str,
3022 strlen("Followup-To: "));
3023 fprintf(fp, "Followup-To: %s\n", buf);
3029 compose_write_headers_from_headerlist(compose, fp, "Reply-To", NULL, NULL);
3031 if (compose->use_replyto && !IS_IN_CUSTOM_HEADER("Reply-To")) {
3032 str = gtk_entry_get_text(GTK_ENTRY(compose->reply_entry));
3034 Xstrdup_a(str, str, return -1);
3037 compose_convert_header(buf, sizeof(buf), str,
3038 strlen("Reply-To: "));
3039 fprintf(fp, "Reply-To: %s\n", buf);
3045 if (compose->account->organization &&
3046 !IS_IN_CUSTOM_HEADER("Organization")) {
3047 compose_convert_header(buf, sizeof(buf),
3048 compose->account->organization,
3049 strlen("Organization: "));
3050 fprintf(fp, "Organization: %s\n", buf);
3053 /* Program version and system info */
3054 /* uname(&utsbuf); */
3055 if (g_slist_length(compose->to_list) && !IS_IN_CUSTOM_HEADER("X-Mailer")) {
3056 fprintf(fp, "X-Mailer: %s (GTK+ %d.%d.%d; %s)\n",
3058 gtk_major_version, gtk_minor_version, gtk_micro_version,
3060 /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3062 if (g_slist_length(compose->newsgroup_list) && !IS_IN_CUSTOM_HEADER("X-Newsreader")) {
3063 fprintf(fp, "X-Newsreader: %s (GTK+ %d.%d.%d; %s)\n",
3065 gtk_major_version, gtk_minor_version, gtk_micro_version,
3067 /* utsbuf.sysname, utsbuf.release, utsbuf.machine); */
3070 /* custom headers */
3071 if (compose->account->add_customhdr) {
3074 for (cur = compose->account->customhdr_list; cur != NULL;
3076 CustomHeader *chdr = (CustomHeader *)cur->data;
3078 if (strcasecmp(chdr->name, "Date") != 0 &&
3079 strcasecmp(chdr->name, "From") != 0 &&
3080 strcasecmp(chdr->name, "To") != 0 &&
3081 strcasecmp(chdr->name, "Sender") != 0 &&
3082 strcasecmp(chdr->name, "Message-Id") != 0 &&
3083 strcasecmp(chdr->name, "In-Reply-To") != 0 &&
3084 strcasecmp(chdr->name, "References") != 0 &&
3085 strcasecmp(chdr->name, "Mime-Version") != 0 &&
3086 strcasecmp(chdr->name, "Content-Type") != 0 &&
3087 strcasecmp(chdr->name, "Content-Transfer-Encoding") != 0)
3088 compose_convert_header
3090 chdr->value ? chdr->value : "",
3091 strlen(chdr->name) + 2);
3092 fprintf(fp, "%s: %s\n", chdr->name, buf);
3097 fprintf(fp, "Mime-Version: 1.0\n");
3098 if (compose_use_attach(compose)) {
3099 get_rfc822_date(buf, sizeof(buf));
3100 subst_char(buf, ' ', '_');
3101 subst_char(buf, ',', '_');
3102 compose->boundary = g_strdup_printf("Multipart_%s_%08x",
3103 buf, (guint)compose);
3105 "Content-Type: multipart/mixed;\n"
3106 " boundary=\"%s\"\n", compose->boundary);
3108 fprintf(fp, "Content-Type: text/plain; charset=%s\n", charset);
3109 fprintf(fp, "Content-Transfer-Encoding: %s\n",
3110 procmime_get_encoding_str(encoding));
3113 /* Request Return Receipt */
3114 if (!IS_IN_CUSTOM_HEADER("Disposition-Notification-To")) {
3115 if (compose->return_receipt) {
3116 if (compose->account->name
3117 && *compose->account->name) {
3118 compose_convert_header(buf, sizeof(buf), compose->account->name, strlen("Disposition-Notification-To: "));
3119 fprintf(fp, "Disposition-Notification-To: %s <%s>\n", buf, compose->account->address);
3121 fprintf(fp, "Disposition-Notification-To: %s\n", compose->account->address);
3125 /* separator between header and body */
3131 #undef IS_IN_CUSTOM_HEADER
3133 static void compose_convert_header(gchar *dest, gint len, gchar *src,
3136 g_return_if_fail(src != NULL);
3137 g_return_if_fail(dest != NULL);
3139 if (len < 1) return;
3143 if (is_ascii_str(src)) {
3144 strncpy2(dest, src, len);
3145 dest[len - 1] = '\0';
3148 conv_encode_header(dest, len, src, header_len);
3151 static void compose_generate_msgid(Compose *compose, gchar *buf, gint len)
3160 if (compose->account && compose->account->address &&
3161 *compose->account->address) {
3162 if (strchr(compose->account->address, '@'))
3163 addr = g_strdup(compose->account->address);
3165 addr = g_strconcat(compose->account->address, "@",
3166 get_domain_name(), NULL);
3168 addr = g_strconcat(g_get_user_name(), "@", get_domain_name(),
3171 g_snprintf(buf, len, "%04d%02d%02d%02d%02d%02d.%08x.%s",
3172 lt->tm_year + 1900, lt->tm_mon + 1,
3173 lt->tm_mday, lt->tm_hour,
3174 lt->tm_min, lt->tm_sec,
3175 (guint)random(), addr);
3177 debug_print(_("generated Message-ID: %s\n"), buf);
3183 static void compose_add_entry_field(GtkWidget *table, GtkWidget **hbox,
3184 GtkWidget **entry, gint *count,
3185 const gchar *label_str,
3186 gboolean is_addr_entry)
3190 if (GTK_TABLE(table)->nrows < (*count) + 1)
3191 gtk_table_resize(GTK_TABLE(table), (*count) + 1, 2);
3193 *hbox = gtk_hbox_new(FALSE, 0);
3194 label = gtk_label_new
3195 (prefs_common.trans_hdr ? gettext(label_str) : label_str);
3196 gtk_box_pack_end(GTK_BOX(*hbox), label, FALSE, FALSE, 0);
3197 gtk_table_attach(GTK_TABLE(table), *hbox, 0, 1, *count, (*count) + 1,
3199 *entry = gtk_entry_new();
3201 (GTK_TABLE(table), *entry, 1, 2, *count, (*count) + 1, GTK_FILL | GTK_EXPAND, GTK_SHRINK, 0, 0);
3202 /* if (GTK_TABLE(table)->nrows > (*count) + 1)
3203 gtk_table_set_row_spacing(GTK_TABLE(table), *count, 4); */
3206 address_completion_register_entry(GTK_ENTRY(*entry));
3211 static void compose_create_header_entry(Compose *compose) {
3212 gchar *headers[] = {"To:", "Cc:", "Bcc:", "Newsgroups:", "Reply-To:", "Followup-To:", NULL};
3216 GList *combo_list = NULL;
3217 gchar **string, *header;
3218 compose_headerentry *headerentry = g_new0(compose_headerentry, 1);
3221 combo = gtk_combo_new();
3223 while(*string != NULL) {
3224 combo_list = g_list_append(combo_list, (prefs_common.trans_hdr ? gettext(*string) : *string));
3227 gtk_combo_set_popdown_strings(GTK_COMBO(combo), combo_list);
3228 g_list_free(combo_list);
3229 gtk_editable_set_editable(GTK_EDITABLE(GTK_COMBO(combo)->entry), FALSE);
3230 gtk_widget_show(combo);
3231 gtk_table_attach(GTK_TABLE(compose->header_table), combo, 0, 1, compose->header_nextrow, compose->header_nextrow+1, GTK_SHRINK, GTK_FILL, 0, 0);
3232 if(compose->header_last) {
3233 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(compose->header_last->combo)->entry));
3235 switch(compose->account->protocol) {
3237 header = _("Newsgroups:");
3244 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), header);
3247 entry = gtk_entry_new();
3248 gtk_widget_show(entry);
3249 gtk_table_attach(GTK_TABLE(compose->header_table), entry, 1, 2, compose->header_nextrow, compose->header_nextrow+1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
3251 gtk_signal_connect(GTK_OBJECT(entry), "key-press-event", GTK_SIGNAL_FUNC(compose_headerentry_key_press_event_cb), headerentry);
3252 gtk_signal_connect(GTK_OBJECT(entry), "changed", GTK_SIGNAL_FUNC(compose_headerentry_changed_cb), headerentry);
3254 address_completion_register_entry(GTK_ENTRY(entry));
3256 headerentry->compose = compose;
3257 headerentry->combo = combo;
3258 headerentry->entry = entry;
3259 headerentry->headernum = compose->header_nextrow;
3261 compose->header_nextrow++;
3262 compose->header_last = headerentry;
3265 static void compose_add_header_entry(Compose *compose, gchar *header, gchar *text) {
3266 compose_headerentry *last_header;
3268 last_header = compose->header_last;
3270 gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(last_header->combo)->entry), header);
3271 gtk_entry_set_text(GTK_ENTRY(last_header->entry), text);
3274 static Compose *compose_create(PrefsAccount *account, ComposeMode mode)
3280 GtkWidget *handlebox;
3282 GtkWidget *notebook;
3286 GtkWidget *table_vbox;
3288 GtkWidget *from_optmenu_hbox;
3290 GtkWidget *to_entry;
3292 GtkWidget *newsgroups_entry;
3293 GtkWidget *newsgroups_hbox;
3295 GtkWidget *header_scrolledwin;
3296 GtkWidget *header_table;
3297 GtkWidget *subject_entry;
3299 GtkWidget *cc_entry;
3301 GtkWidget *bcc_entry;
3302 GtkWidget *bcc_hbox;
3303 GtkWidget *reply_entry;
3304 GtkWidget *reply_hbox;
3305 GtkWidget *followup_entry;
3306 GtkWidget *followup_hbox;
3310 GtkWidget *attach_scrwin;
3311 GtkWidget *attach_clist;
3313 GtkWidget *edit_vbox;
3314 GtkWidget *ruler_hbox;
3316 GtkWidget *scrolledwin;
3322 gchar *titles[] = {_("MIME type"), _("Size"), _("Name")};
3323 guint n_menu_entries;
3324 GtkStyle *style, *new_style;
3327 gboolean success[1];
3329 GtkWidget *popupmenu;
3330 GtkWidget *menuitem;
3331 GtkItemFactory *popupfactory;
3332 GtkItemFactory *ifactory;
3338 GtkPspell * gtkpspell = NULL;
3341 g_return_val_if_fail(account != NULL, NULL);
3343 debug_print(_("Creating compose window...\n"));
3344 compose = g_new0(Compose, 1);
3346 compose->account = account;
3347 compose->orig_account = account;
3349 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3350 gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
3351 gtk_widget_set_usize(window, -1, prefs_common.compose_height);
3352 gtk_signal_connect(GTK_OBJECT(window), "delete_event",
3353 GTK_SIGNAL_FUNC(compose_delete_cb), compose);
3354 gtk_signal_connect(GTK_OBJECT(window), "destroy",
3355 GTK_SIGNAL_FUNC(compose_destroy_cb), compose);
3356 gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
3357 GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
3358 gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
3359 GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
3360 gtk_widget_realize(window);
3362 gtkut_widget_set_composer_icon(window);
3364 vbox = gtk_vbox_new(FALSE, 0);
3365 gtk_container_add(GTK_CONTAINER(window), vbox);
3367 n_menu_entries = sizeof(compose_entries) / sizeof(compose_entries[0]);
3368 menubar = menubar_create(window, compose_entries,
3369 n_menu_entries, "<Compose>", compose);
3370 gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
3372 handlebox = gtk_handle_box_new();
3373 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
3375 compose_toolbar_create(compose, handlebox);
3377 vbox2 = gtk_vbox_new(FALSE, 2);
3378 gtk_box_pack_start(GTK_BOX(vbox), vbox2, TRUE, TRUE, 0);
3379 gtk_container_set_border_width(GTK_CONTAINER(vbox2), BORDER_WIDTH);
3381 table_vbox = gtk_vbox_new(FALSE, 0);
3382 gtk_box_pack_start(GTK_BOX(vbox2), table_vbox, FALSE, TRUE, 0);
3383 gtk_container_set_border_width(GTK_CONTAINER(table_vbox),
3387 notebook = gtk_notebook_new();
3388 gtk_widget_set_usize(notebook, -1, 180);
3389 gtk_widget_show(notebook);
3391 /* table = gtk_table_new(8, 2, FALSE);
3392 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), table, gtk_label_new(_("Header")));
3393 gtk_box_pack_start(GTK_BOX(table_vbox), table, FALSE, TRUE, 0); */
3395 /* header labels and entries */
3396 header_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
3397 gtk_widget_show(header_scrolledwin);
3398 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(header_scrolledwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
3399 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), header_scrolledwin, gtk_label_new(_("Header")));
3400 /* gtk_table_attach_defaults(GTK_TABLE(table), header_scrolledwin,
3401 1, 2, count, count + 1); */
3403 header_table = gtk_table_new(2, 2, FALSE);
3404 gtk_widget_show(header_table);
3405 gtk_container_set_border_width(GTK_CONTAINER(header_table), 2);
3406 gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(header_scrolledwin), header_table);
3409 /* option menu for selecting accounts */
3410 hbox = gtk_hbox_new(FALSE, 0);
3411 label = gtk_label_new(prefs_common.trans_hdr ? _("From:") : "From:");
3412 gtk_box_pack_end(GTK_BOX(hbox), label, FALSE, FALSE, 0);
3413 gtk_table_attach(GTK_TABLE(header_table), hbox, 0, 1, count, count + 1,
3415 from_optmenu_hbox = compose_account_option_menu_create(compose);
3416 gtk_table_attach(GTK_TABLE(header_table), from_optmenu_hbox,
3417 1, 2, count, count + 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
3418 /* gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4); */
3422 compose_add_entry_field(header_table, &hbox, &subject_entry, &count,
3425 compose->header_table = header_table;
3426 compose->header_list = NULL;
3427 compose->header_nextrow = count;
3429 compose_create_header_entry(compose);
3432 compose_add_entry_field(table, &to_hbox, &to_entry, &count,
3434 gtk_table_set_row_spacing(GTK_TABLE(table), 0, 4);
3435 compose_add_entry_field(table, &newsgroups_hbox, &newsgroups_entry,
3436 &count, "Newsgroups:", FALSE);
3437 gtk_table_set_row_spacing(GTK_TABLE(table), 1, 4);
3439 gtk_table_set_row_spacing(GTK_TABLE(table), 2, 4);
3441 compose_add_entry_field(table, &cc_hbox, &cc_entry, &count,
3443 gtk_table_set_row_spacing(GTK_TABLE(table), 3, 4);
3444 compose_add_entry_field(table, &bcc_hbox, &bcc_entry, &count,
3446 gtk_table_set_row_spacing(GTK_TABLE(table), 4, 4);
3447 compose_add_entry_field(table, &reply_hbox, &reply_entry, &count,
3449 gtk_table_set_row_spacing(GTK_TABLE(table), 5, 4);
3450 compose_add_entry_field(table, &followup_hbox, &followup_entry, &count,
3451 "Followup-To:", FALSE);
3452 gtk_table_set_row_spacing(GTK_TABLE(table), 6, 4);
3454 gtk_table_set_col_spacings(GTK_TABLE(table), 4);
3456 gtk_signal_connect(GTK_OBJECT(to_entry), "activate",
3457 GTK_SIGNAL_FUNC(to_activated), compose);
3458 gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "activate",
3459 GTK_SIGNAL_FUNC(newsgroups_activated), compose);
3460 gtk_signal_connect(GTK_OBJECT(subject_entry), "activate",
3461 GTK_SIGNAL_FUNC(subject_activated), compose);
3462 gtk_signal_connect(GTK_OBJECT(cc_entry), "activate",
3463 GTK_SIGNAL_FUNC(cc_activated), compose);
3464 gtk_signal_connect(GTK_OBJECT(bcc_entry), "activate",
3465 GTK_SIGNAL_FUNC(bcc_activated), compose);
3466 gtk_signal_connect(GTK_OBJECT(reply_entry), "activate",
3467 GTK_SIGNAL_FUNC(replyto_activated), compose);
3468 gtk_signal_connect(GTK_OBJECT(followup_entry), "activate",
3469 GTK_SIGNAL_FUNC(followupto_activated), compose);
3471 gtk_signal_connect(GTK_OBJECT(subject_entry), "grab_focus",
3472 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3473 gtk_signal_connect(GTK_OBJECT(to_entry), "grab_focus",
3474 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3475 gtk_signal_connect(GTK_OBJECT(newsgroups_entry), "grab_focus",
3476 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3477 gtk_signal_connect(GTK_OBJECT(cc_entry), "grab_focus",
3478 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3479 gtk_signal_connect(GTK_OBJECT(bcc_entry), "grab_focus",
3480 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3481 gtk_signal_connect(GTK_OBJECT(reply_entry), "grab_focus",
3482 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3483 gtk_signal_connect(GTK_OBJECT(followup_entry), "grab_focus",
3484 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3487 /* attachment list */
3488 attach_scrwin = gtk_scrolled_window_new(NULL, NULL);
3489 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), attach_scrwin, gtk_label_new(_("Attachments")));
3490 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(attach_scrwin),
3491 GTK_POLICY_AUTOMATIC,
3493 gtk_widget_set_usize(attach_scrwin, -1, 80);
3495 attach_clist = gtk_clist_new_with_titles(N_ATTACH_COLS, titles);
3496 gtk_clist_set_column_justification(GTK_CLIST(attach_clist), COL_SIZE,
3498 gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_MIMETYPE, 240);
3499 gtk_clist_set_column_width(GTK_CLIST(attach_clist), COL_SIZE, 64);
3500 gtk_clist_set_selection_mode(GTK_CLIST(attach_clist),
3501 GTK_SELECTION_EXTENDED);
3502 for (i = 0; i < N_ATTACH_COLS; i++)
3503 GTK_WIDGET_UNSET_FLAGS
3504 (GTK_CLIST(attach_clist)->column[i].button,
3506 gtk_container_add(GTK_CONTAINER(attach_scrwin), attach_clist);
3508 gtk_signal_connect(GTK_OBJECT(attach_clist), "select_row",
3509 GTK_SIGNAL_FUNC(attach_selected), compose);
3510 gtk_signal_connect(GTK_OBJECT(attach_clist), "button_press_event",
3511 GTK_SIGNAL_FUNC(attach_button_pressed), compose);
3512 gtk_signal_connect(GTK_OBJECT(attach_clist), "key_press_event",
3513 GTK_SIGNAL_FUNC(attach_key_pressed), compose);
3516 gtk_drag_dest_set(attach_clist,
3517 GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
3519 gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received",
3520 GTK_SIGNAL_FUNC(compose_attach_drag_received_cb),
3524 edit_vbox = gtk_vbox_new(FALSE, 0);
3525 /* gtk_box_pack_start(GTK_BOX(vbox2), edit_vbox, TRUE, TRUE, 0); */
3528 ruler_hbox = gtk_hbox_new(FALSE, 0);
3529 gtk_box_pack_start(GTK_BOX(edit_vbox), ruler_hbox, FALSE, FALSE, 0);
3531 ruler = gtk_shruler_new();
3532 gtk_ruler_set_range(GTK_RULER(ruler), 0.0, 100.0, 1.0, 100.0);
3533 gtk_box_pack_start(GTK_BOX(ruler_hbox), ruler, TRUE, TRUE,
3535 gtk_widget_set_usize(ruler_hbox, 1, -1);
3538 scrolledwin = gtk_scrolled_window_new(NULL, NULL);
3539 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
3540 GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
3541 gtk_box_pack_start(GTK_BOX(edit_vbox), scrolledwin, TRUE, TRUE, 0);
3542 gtk_widget_set_usize(scrolledwin, prefs_common.compose_width, -1);
3544 text = gtk_stext_new(gtk_scrolled_window_get_hadjustment
3545 (GTK_SCROLLED_WINDOW(scrolledwin)),
3546 gtk_scrolled_window_get_vadjustment
3547 (GTK_SCROLLED_WINDOW(scrolledwin)));
3548 GTK_STEXT(text)->default_tab_width = 8;
3549 gtk_stext_set_editable(GTK_STEXT(text), TRUE);
3550 if (prefs_common.smart_wrapping) {
3551 gtk_stext_set_word_wrap(GTK_STEXT(text), TRUE);
3552 gtk_stext_set_wrap_rmargin(GTK_STEXT(text), prefs_common.linewrap_len);
3555 gtk_container_add(GTK_CONTAINER(scrolledwin), text);
3557 gtk_signal_connect(GTK_OBJECT(text), "changed",
3558 GTK_SIGNAL_FUNC(compose_changed_cb), compose);
3559 gtk_signal_connect(GTK_OBJECT(text), "grab_focus",
3560 GTK_SIGNAL_FUNC(compose_grab_focus_cb), compose);
3561 gtk_signal_connect_after(GTK_OBJECT(text), "button_press_event",
3562 GTK_SIGNAL_FUNC(compose_button_press_cb),
3565 gtk_signal_connect_after(GTK_OBJECT(text), "key_press_event",
3566 GTK_SIGNAL_FUNC(compose_key_press_cb),
3569 gtk_signal_connect_after(GTK_OBJECT(text), "size_allocate",
3570 GTK_SIGNAL_FUNC(compose_edit_size_alloc),
3574 gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1,
3576 gtk_signal_connect(GTK_OBJECT(text), "drag_data_received",
3577 GTK_SIGNAL_FUNC(compose_insert_drag_received_cb),
3580 if (prefs_common.enable_pspell) {
3581 gtkpspell = gtkpspell_new_with_config(gtkpspellconfig,
3582 prefs_common.pspell_path,
3583 prefs_common.dictionary,
3584 PSPELL_FASTMODE,NULL);
3585 if (gtkpspell == NULL)
3586 prefs_common.enable_pspell = FALSE;
3588 gtkpspell_attach(gtkpspell, GTK_STEXT(text));
3591 gtk_widget_show_all(vbox);
3593 /* pane between attach clist and text */
3594 paned = gtk_vpaned_new();
3595 gtk_container_add(GTK_CONTAINER(vbox2), paned);
3596 gtk_paned_add1(GTK_PANED(paned), notebook);
3597 gtk_paned_add2(GTK_PANED(paned), edit_vbox);
3598 gtk_widget_show_all(paned);
3600 style = gtk_widget_get_style(text);
3602 /* workaround for the slow down of GtkText when using Pixmap theme */
3603 if (style->engine) {
3604 GtkThemeEngine *engine;
3606 engine = style->engine;
3607 style->engine = NULL;
3608 new_style = gtk_style_copy(style);
3609 style->engine = engine;
3611 new_style = gtk_style_copy(style);
3613 if (prefs_common.textfont) {
3616 charset = conv_get_current_charset();
3617 if (MB_CUR_MAX == 1) {
3620 Xstrdup_a(fontstr, prefs_common.textfont, );
3621 if (fontstr && (p = strchr(fontstr, ',')) != NULL)
3623 font = gdk_font_load(fontstr);
3625 font = gdk_fontset_load(prefs_common.textfont);
3627 gdk_font_unref(new_style->font);
3628 new_style->font = font;
3632 gtk_widget_set_style(text, new_style);
3634 color[0] = quote_color;
3635 cmap = gdk_window_get_colormap(window->window);
3636 gdk_colormap_alloc_colors(cmap, color, 1, FALSE, TRUE, success);
3637 if (success[0] == FALSE) {
3638 g_warning("Compose: color allocation failed.\n");
3639 style = gtk_widget_get_style(text);
3640 quote_color = style->black;
3643 n_entries = sizeof(compose_popup_entries) /
3644 sizeof(compose_popup_entries[0]);
3645 popupmenu = menu_create_items(compose_popup_entries, n_entries,
3646 "<Compose>", &popupfactory,
3649 ifactory = gtk_item_factory_from_widget(menubar);
3650 menu_set_sensitive(ifactory, "/Edit/Undo", FALSE);
3651 menu_set_sensitive(ifactory, "/Edit/Redo", FALSE);
3654 if (account->protocol == A_NNTP) {
3655 gtk_widget_hide(to_hbox);
3656 gtk_widget_hide(to_entry);
3657 gtk_widget_hide(cc_hbox);
3658 gtk_widget_hide(cc_entry);
3659 gtk_table_set_row_spacing(GTK_TABLE(table), 1, 0);
3660 gtk_table_set_row_spacing(GTK_TABLE(table), 3, 0);
3662 gtk_widget_hide(newsgroups_hbox);
3663 gtk_widget_hide(newsgroups_entry);
3664 gtk_table_set_row_spacing(GTK_TABLE(table), 2, 0);
3666 menu_set_sensitive(ifactory, "/Message/Followup to", FALSE);
3670 switch (prefs_common.toolbar_style) {
3672 gtk_widget_hide(handlebox);
3675 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3679 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3683 gtk_toolbar_set_style(GTK_TOOLBAR(compose->toolbar),
3688 gtk_widget_show(window);
3690 address_completion_start(window);
3692 compose->window = window;
3693 compose->vbox = vbox;
3694 compose->menubar = menubar;
3695 compose->handlebox = handlebox;
3697 compose->vbox2 = vbox2;
3699 compose->table_vbox = table_vbox;
3700 compose->table = table;
3702 compose->to_hbox = to_hbox;
3703 compose->to_entry = to_entry;
3704 compose->newsgroups_hbox = newsgroups_hbox;
3705 compose->newsgroups_entry = newsgroups_entry;
3707 compose->subject_entry = subject_entry;
3709 compose->cc_hbox = cc_hbox;
3710 compose->cc_entry = cc_entry;
3711 compose->bcc_hbox = bcc_hbox;
3712 compose->bcc_entry = bcc_entry;
3713 compose->reply_hbox = reply_hbox;
3714 compose->reply_entry = reply_entry;
3715 compose->followup_hbox = followup_hbox;
3716 compose->followup_entry = followup_entry;
3718 compose->paned = paned;
3720 compose->attach_scrwin = attach_scrwin;
3721 compose->attach_clist = attach_clist;
3723 compose->edit_vbox = edit_vbox;
3724 compose->ruler_hbox = ruler_hbox;
3725 compose->ruler = ruler;
3726 compose->scrolledwin = scrolledwin;
3727 compose->text = text;
3729 compose->focused_editable = NULL;
3731 compose->popupmenu = popupmenu;
3732 compose->popupfactory = popupfactory;
3734 compose->mode = mode;
3736 compose->replyto = NULL;
3738 compose->bcc = NULL;
3739 compose->followup_to = NULL;
3740 compose->inreplyto = NULL;
3741 compose->references = NULL;
3742 compose->msgid = NULL;
3743 compose->boundary = NULL;
3746 compose->use_signing = FALSE;
3747 compose->use_encryption = FALSE;
3748 #endif /* USE_GPGME */
3750 compose->modified = FALSE;
3752 compose->return_receipt = FALSE;
3754 compose->to_list = NULL;
3755 compose->newsgroup_list = NULL;
3757 compose->exteditor_file = NULL;
3758 compose->exteditor_pid = -1;
3759 compose->exteditor_readdes = -1;
3760 compose->exteditor_tag = -1;
3762 compose_set_title(compose);
3765 compose->use_bcc = FALSE;
3766 compose->use_replyto = FALSE;
3767 compose->use_followupto = FALSE;
3771 compose->gtkpspell = gtkpspell;
3775 if (account->protocol != A_NNTP) {
3776 menuitem = gtk_item_factory_get_item(ifactory, "/Message/To");
3777 gtk_check_menu_item_set_active
3778 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
3779 gtk_widget_set_sensitive(menuitem, FALSE);
3780 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
3781 gtk_check_menu_item_set_active
3782 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
3783 gtk_widget_set_sensitive(menuitem, FALSE);
3786 /* *** NEW_HEADER_ENTRIES ***
3788 if (account->set_autocc && account->auto_cc && mode != COMPOSE_REEDIT) {
3789 compose->use_cc = TRUE;
3790 gtk_entry_set_text(GTK_ENTRY(cc_entry), account->auto_cc);
3791 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Cc");
3792 gtk_check_menu_item_set_active
3793 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
3797 /* *** NEW_HEADER_ENTRIES ***
3799 if (account->set_autobcc) {
3800 compose->use_bcc = TRUE;
3801 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
3802 gtk_check_menu_item_set_active
3803 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
3804 if (account->auto_bcc && mode != COMPOSE_REEDIT)
3805 gtk_entry_set_text(GTK_ENTRY(bcc_entry),
3808 if (account->set_autoreplyto) {
3809 compose->use_replyto = TRUE;
3810 menuitem = gtk_item_factory_get_item(ifactory,
3811 "/Message/Reply to");
3812 gtk_check_menu_item_set_active
3813 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
3814 if (account->auto_replyto && mode != COMPOSE_REEDIT)