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 "quote_fmt.h"
102 #include "template.h"
105 # include "rfc2015.h"
115 #define N_ATTACH_COLS 3
117 #define B64_LINE_SIZE 57
118 #define B64_BUFFSIZE 77
120 #define MAX_REFERENCES_LEN 999
122 static GdkColor quote_color = {0, 0, 0, 0xbfff};
124 static GList *compose_list = NULL;
126 static Compose *compose_create (PrefsAccount *account,
128 static void compose_toolbar_create (Compose *compose,
129 GtkWidget *container);
130 static GtkWidget *compose_account_option_menu_create
132 static void compose_set_template_menu (Compose *compose);
133 static void compose_destroy (Compose *compose);
135 static gint compose_parse_header (Compose *compose,
137 static gchar *compose_parse_references (const gchar *ref,
140 static gchar *compose_quote_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,
180 static void compose_write_attach (Compose *compose,
182 static gint compose_write_headers (Compose *compose,
184 const gchar *charset,
185 EncodingType encoding,
188 static void compose_convert_header (gchar *dest,
192 static void compose_generate_msgid (Compose *compose,
196 static void compose_attach_info_free (AttachInfo *ainfo);
197 static void compose_attach_remove_selected (Compose *compose);
199 static void compose_attach_property (Compose *compose);
200 static void compose_attach_property_create (gboolean *cancelled);
201 static void attach_property_ok (GtkWidget *widget,
202 gboolean *cancelled);
203 static void attach_property_cancel (GtkWidget *widget,
204 gboolean *cancelled);
205 static gint attach_property_delete_event (GtkWidget *widget,
207 gboolean *cancelled);
208 static void attach_property_key_pressed (GtkWidget *widget,
210 gboolean *cancelled);
212 static void compose_exec_ext_editor (Compose *compose);
213 static gint compose_exec_ext_editor_real (const gchar *file);
214 static gboolean compose_ext_editor_kill (Compose *compose);
215 static void compose_input_cb (gpointer data,
217 GdkInputCondition condition);
218 static void compose_set_ext_editor_sensitive (Compose *compose,
221 static gint calc_cursor_xpos (GtkSText *text,
225 static void compose_create_header_entry (Compose *compose);
226 static void compose_add_header_entry (Compose *compose, gchar *header, gchar *text);
228 /* callback functions */
230 static gboolean compose_edit_size_alloc (GtkEditable *widget,
231 GtkAllocation *allocation,
232 GtkSHRuler *shruler);
234 static void toolbar_send_cb (GtkWidget *widget,
236 static void toolbar_send_later_cb (GtkWidget *widget,
238 static void toolbar_draft_cb (GtkWidget *widget,
240 static void toolbar_insert_cb (GtkWidget *widget,
242 static void toolbar_attach_cb (GtkWidget *widget,
244 static void toolbar_sig_cb (GtkWidget *widget,
246 static void toolbar_ext_editor_cb (GtkWidget *widget,
248 static void toolbar_linewrap_cb (GtkWidget *widget,
250 static void toolbar_address_cb (GtkWidget *widget,
254 static void select_account(Compose * compose, PrefsAccount * ac);
255 static void account_activated (GtkMenuItem *menuitem,
258 static void attach_selected (GtkCList *clist,
263 static void attach_button_pressed (GtkWidget *widget,
264 GdkEventButton *event,
266 static void attach_key_pressed (GtkWidget *widget,
270 static void compose_send_cb (gpointer data,
273 static void compose_send_later_cb (gpointer data,
277 static void compose_draft_cb (gpointer data,
281 static void compose_attach_cb (gpointer data,
284 static void compose_insert_file_cb (gpointer data,
288 static void compose_close_cb (gpointer data,
292 static void compose_address_cb (gpointer data,
295 static void compose_template_activate_cb(GtkWidget *widget,
298 static void compose_ext_editor_cb (gpointer data,
302 static gint compose_delete_cb (GtkWidget *widget,
305 static void compose_destroy_cb (GtkWidget *widget,
308 static void compose_cut_cb (Compose *compose);
309 static void compose_copy_cb (Compose *compose);
310 static void compose_paste_cb (Compose *compose);
311 static void compose_allsel_cb (Compose *compose);
313 static void compose_grab_focus_cb (GtkWidget *widget,
316 static void compose_changed_cb (GtkEditable *editable,
318 static void compose_button_press_cb (GtkWidget *widget,
319 GdkEventButton *event,
322 static void compose_key_press_cb (GtkWidget *widget,
327 static void compose_toggle_to_cb (gpointer data,
330 static void compose_toggle_cc_cb (gpointer data,
333 static void compose_toggle_bcc_cb (gpointer data,
336 static void compose_toggle_replyto_cb (gpointer data,
339 static void compose_toggle_followupto_cb(gpointer data,
342 static void compose_toggle_attach_cb (gpointer data,
345 static void compose_toggle_ruler_cb (gpointer data,
349 static void compose_toggle_sign_cb (gpointer data,
352 static void compose_toggle_encrypt_cb (gpointer data,
356 static void compose_toggle_return_receipt_cb(gpointer data, guint action,
359 static void compose_attach_drag_received_cb (GtkWidget *widget,
360 GdkDragContext *drag_context,
363 GtkSelectionData *data,
367 static void compose_insert_drag_received_cb (GtkWidget *widget,
368 GdkDragContext *drag_context,
371 GtkSelectionData *data,
376 static void to_activated (GtkWidget *widget,
378 static void newsgroups_activated (GtkWidget *widget,
380 static void subject_activated (GtkWidget *widget,
382 static void cc_activated (GtkWidget *widget,
384 static void bcc_activated (GtkWidget *widget,
386 static void replyto_activated (GtkWidget *widget,
388 static void followupto_activated (GtkWidget *widget,
390 static void compose_attach_parts(Compose * compose,
393 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
395 gboolean ignore_replyto,
396 gboolean followup_and_reply_to);
398 void compose_headerentry_changed_cb (GtkWidget *entry,
399 compose_headerentry *headerentry);
400 void compose_headerentry_key_press_event_cb (GtkWidget *entry,
402 compose_headerentry *headerentry);
404 Compose * compose_generic_new (PrefsAccount *account,
408 static GtkItemFactoryEntry compose_popup_entries[] =
410 {N_("/_Add..."), NULL, compose_attach_cb, 0, NULL},
411 {N_("/_Remove"), NULL, compose_attach_remove_selected, 0, NULL},
412 {N_("/---"), NULL, NULL, 0, "<Separator>"},
413 {N_("/_Property..."), NULL, compose_attach_property, 0, NULL}
416 static GtkItemFactoryEntry compose_entries[] =
418 {N_("/_File"), NULL, NULL, 0, "<Branch>"},
419 {N_("/_File/_Attach file"), "<control>M", compose_attach_cb, 0, NULL},
420 {N_("/_File/_Insert file"), "<control>I", compose_insert_file_cb, 0, NULL},
421 {N_("/_File/Insert si_gnature"), "<control>G", compose_insert_sig, 0, NULL},
422 {N_("/_File/---"), NULL, NULL, 0, "<Separator>"},
423 {N_("/_File/_Close"), "<alt>W", compose_close_cb, 0, NULL},
425 {N_("/_Edit"), NULL, NULL, 0, "<Branch>"},
426 {N_("/_Edit/_Undo"), "<control>Z", NULL, 0, NULL},
427 {N_("/_Edit/_Redo"), "<control>Y", NULL, 0, NULL},
428 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
429 {N_("/_Edit/Cu_t"), "<control>X", compose_cut_cb, 0, NULL},
430 {N_("/_Edit/_Copy"), "<control>C", compose_copy_cb, 0, NULL},
431 {N_("/_Edit/_Paste"), "<control>V", compose_paste_cb, 0, NULL},
432 {N_("/_Edit/Select _all"), "<control>A", compose_allsel_cb, 0, NULL},
433 {N_("/_Edit/---"), NULL, NULL, 0, "<Separator>"},
434 {N_("/_Edit/_Wrap current paragraph"), "<alt>L", compose_wrap_line, 0, NULL},
435 {N_("/_Edit/Wrap all long _lines"),
436 "<shift><alt>L", compose_wrap_line_all, 0, NULL},
437 {N_("/_Edit/Edit with e_xternal editor"),
438 "<alt>X", compose_ext_editor_cb, 0, NULL},
440 {N_("/_Message"), NULL, NULL, 0, "<Branch>"},
441 {N_("/_Message/_Send"), "<control>Return",
442 compose_send_cb, 0, NULL},
443 {N_("/_Message/Send _later"), "<shift><alt>S",
444 compose_send_later_cb, 0, NULL},
445 {N_("/_Message/Save to _draft folder"),
446 "<alt>D", compose_draft_cb, 0, NULL},
447 #if 0 /* NEW COMPOSE GUI */
448 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
449 {N_("/_Message/_To"), NULL, compose_toggle_to_cb , 0, "<ToggleItem>"},
450 {N_("/_Message/_Cc"), NULL, compose_toggle_cc_cb , 0, "<ToggleItem>"},
451 {N_("/_Message/_Bcc"), NULL, compose_toggle_bcc_cb , 0, "<ToggleItem>"},
452 {N_("/_Message/_Reply to"), NULL, compose_toggle_replyto_cb, 0, "<ToggleItem>"},
453 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
454 {N_("/_Message/_Followup to"), NULL, compose_toggle_followupto_cb, 0, "<ToggleItem>"},
455 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
456 {N_("/_Message/_Attach"), NULL, compose_toggle_attach_cb, 0, "<ToggleItem>"},
459 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
460 {N_("/_Message/Si_gn"), NULL, compose_toggle_sign_cb , 0, "<ToggleItem>"},
461 {N_("/_Message/_Encrypt"), NULL, compose_toggle_encrypt_cb, 0, "<ToggleItem>"},
462 #endif /* USE_GPGME */
463 {N_("/_Message/---"), NULL, NULL, 0, "<Separator>"},
464 {N_("/_Message/_Request Return Receipt"), NULL, compose_toggle_return_receipt_cb, 0, "<ToggleItem>"},
465 {N_("/_Tool"), NULL, NULL, 0, "<Branch>"},
466 {N_("/_Tool/Show _ruler"), NULL, compose_toggle_ruler_cb, 0, "<ToggleItem>"},
467 {N_("/_Tool/_Address book"), "<alt>A", compose_address_cb , 0, NULL},
468 {N_("/_Tool/_Template"), NULL, NULL, 0, "<Branch>"},
469 {N_("/_Help"), NULL, NULL, 0, "<LastBranch>"},
470 {N_("/_Help/_About"), NULL, about_show, 0, NULL}
473 static GtkTargetEntry compose_mime_types[] =
475 {"text/uri-list", 0, 0}
478 Compose * compose_new(PrefsAccount *account)
480 return compose_generic_new(account, NULL, NULL);
483 Compose * compose_new_with_recipient(PrefsAccount *account, const gchar *to)
485 return compose_generic_new(account, to, NULL);
488 Compose * compose_new_with_folderitem(PrefsAccount *account, FolderItem *item)
490 return compose_generic_new(account, NULL, item);
493 static void set_compose_entries(Compose * compose, const gchar * mailto)
495 gchar * subject = NULL;
504 Xstrdup_a(tmp_mailto, mailto, return);
508 p = strchr(cur, '?');
520 p = strchr(cur, '=');
528 p = strchr(cur, '&');
535 if (g_strcasecmp(field, "subject")==0) {
536 Xstrdup_a(subject, value, );
538 decode_uri(subject, value);
540 else if (g_strcasecmp(field, "cc")==0)
542 else if (g_strcasecmp(field, "bcc")==0)
544 else if (g_strcasecmp(field, "body")==0) {
545 Xstrdup_a(body, value, );
547 decode_uri(body, value);
553 compose_entry_append(compose, to, COMPOSE_TO);
555 gtk_widget_grab_focus(compose->text);
560 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), subject);
562 compose_entry_append(compose, cc, COMPOSE_CC);
564 compose_entry_append(compose, bcc, COMPOSE_BCC);
566 gtk_stext_insert(GTK_STEXT(compose->text),
567 NULL, NULL, NULL, body, -1);
568 gtk_stext_insert(GTK_STEXT(compose->text),
569 NULL, NULL, NULL, "\n", 1);
573 Compose * compose_generic_new(PrefsAccount *account, const gchar *to, FolderItem *item)
577 if (item && item->prefs && item->prefs->enable_default_account)
578 account = account_find_from_id(item->prefs->default_account);
580 if (!account) account = cur_account;
581 g_return_val_if_fail(account != NULL, NULL);
583 compose = compose_create(account, COMPOSE_NEW);
584 compose->replyinfo = NULL;
586 if (prefs_common.auto_sig)
587 compose_insert_sig(compose);
588 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
589 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
591 if (account->protocol != A_NNTP) {
593 set_compose_entries(compose, to);
595 } else if(item && item->prefs->enable_default_to) {
596 compose_entry_append(compose, item->prefs->default_to, COMPOSE_TO);
598 if (item && item->ret_rcpt) {
599 GtkItemFactory *ifactory;
601 ifactory = gtk_item_factory_from_widget(compose->menubar);
602 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
606 compose_entry_append(compose, to, COMPOSE_NEWSGROUPS);
609 gtk_widget_grab_focus(compose->subject_entry);
611 if (prefs_common.auto_exteditor)
612 compose_exec_ext_editor(compose);
617 #define CHANGE_FLAGS(msginfo) \
619 if (msginfo->folder->folder->change_flags != NULL) \
620 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
626 Compose * compose_new_followup_and_replyto(PrefsAccount *account,
627 const gchar *followupto, gchar * to)
631 if (!account) account = cur_account;
632 g_return_val_if_fail(account != NULL, NULL);
633 g_return_val_if_fail(account->protocol != A_NNTP, NULL);
635 compose = compose_create(account, COMPOSE_NEW);
637 if (prefs_common.auto_sig)
638 compose_insert_sig(compose);
639 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
640 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
642 compose_entry_append(compose, to, COMPOSE_TO);
643 compose_entry_append(compose, followupto, COMPOSE_NEWSGROUPS);
644 gtk_widget_grab_focus(compose->subject_entry);
650 void compose_reply(MsgInfo *msginfo, gboolean quote, gboolean to_all,
651 gboolean ignore_replyto)
653 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, FALSE);
656 void compose_followup_and_reply_to(MsgInfo *msginfo, gboolean quote,
658 gboolean ignore_replyto)
660 compose_generic_reply(msginfo, quote, to_all, ignore_replyto, TRUE);
663 static void compose_generic_reply(MsgInfo *msginfo, gboolean quote,
665 gboolean ignore_replyto,
666 gboolean followup_and_reply_to)
669 PrefsAccount *account;
670 PrefsAccount *reply_account;
673 g_return_if_fail(msginfo != NULL);
674 g_return_if_fail(msginfo->folder != NULL);
677 /* select the account set in folderitem's property (if enabled) */
678 if (msginfo->folder->prefs && msginfo->folder->prefs->enable_default_account)
679 account = account_find_from_id(msginfo->folder->prefs->default_account);
681 /* select the account for the whole folder (IMAP / NNTP) */
683 account = msginfo->folder->folder->account;
685 /* select account by to: and cc: header if enabled */
686 if (prefs_common.reply_account_autosel) {
687 if (!account && msginfo->to) {
689 Xstrdup_a(to, msginfo->to, return);
691 account = account_find_from_address(to);
695 if(!get_header_from_msginfo(msginfo, cc, sizeof(cc), "CC:")) { /* Found a CC header */
697 account = account_find_from_address(cc);
702 /* select current account */
703 if (!account) account = cur_account;
704 g_return_if_fail(account != NULL);
706 if (ignore_replyto && account->protocol == A_NNTP &&
707 !followup_and_reply_to) {
709 account_find_from_address(account->address);
711 reply_account = compose_current_mail_account();
715 reply_account = account;
717 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
718 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
720 CHANGE_FLAGS(msginfo);
722 compose = compose_create(account, COMPOSE_REPLY);
723 compose->replyinfo = procmsg_msginfo_copy(msginfo);
725 #if 0 /* NEW COMPOSE GUI */
726 if (followup_and_reply_to) {
727 gtk_widget_show(compose->to_hbox);
728 gtk_widget_show(compose->to_entry);
729 gtk_table_set_row_spacing(GTK_TABLE(compose->table), 1, 4);
730 compose->use_to = TRUE;
733 if (msginfo->folder && msginfo->folder->ret_rcpt) {
734 GtkItemFactory *ifactory;
736 ifactory = gtk_item_factory_from_widget(compose->menubar);
737 menu_set_toggle(ifactory, "/Message/Request Return Receipt", TRUE);
740 if (compose_parse_header(compose, msginfo) < 0) return;
741 compose_reply_set_entry(compose, msginfo, to_all, ignore_replyto,
742 followup_and_reply_to);
744 text = GTK_STEXT(compose->text);
745 gtk_stext_freeze(text);
751 if (prefs_common.quotemark && *prefs_common.quotemark)
752 qmark = prefs_common.quotemark;
756 quote_str = compose_quote_fmt(compose, msginfo,
757 prefs_common.quotefmt,
761 if (prefs_common.auto_sig)
762 compose_insert_sig(compose);
763 gtk_editable_set_position(GTK_EDITABLE(text), 0);
764 gtk_stext_set_point(text, 0);
766 if (quote && prefs_common.linewrap_quote) {
767 compose_wrap_line_all(compose);
770 gtk_stext_thaw(text);
771 gtk_widget_grab_focus(compose->text);
773 if (prefs_common.auto_exteditor)
774 compose_exec_ext_editor(compose);
778 static gchar *procmime_get_file_name(MimeInfo *mimeinfo)
783 g_return_val_if_fail(mimeinfo != NULL, NULL);
785 base = mimeinfo->filename ? mimeinfo->filename
786 : mimeinfo->name ? mimeinfo->name : NULL;
788 if (MIME_TEXT_HTML == mimeinfo->mime_type && base == NULL){
789 filename = g_strdup_printf("%s%smimetmp%i.html",
796 base = base ? base : "";
797 base = g_basename(base);
799 filename = g_strdup_printf("%s%smimetmp%i",
807 filename = g_strconcat(get_mime_tmp_dir(), G_DIR_SEPARATOR_S,
813 static gchar * mime_extract_file(gchar * source, MimeInfo *partinfo)
817 if (!partinfo) return;
819 filename = procmime_get_file_name(partinfo);
821 if (procmime_get_part(filename, source, partinfo) < 0)
823 (_("Can't get the part of multipart message."));
828 static void compose_attach_parts(Compose * compose,
838 gint boundary_len = 0;
840 glong fpos, prev_fpos;
845 g_return_if_fail(msginfo != NULL);
849 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
850 mimeinfo = procmime_scan_mime_header(fp);
851 if (!mimeinfo) break;
853 if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
854 rfc2015_is_encrypted(mimeinfo)) {
855 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_ENCRYPTED);
857 if (MSG_IS_ENCRYPTED(msginfo->flags) &&
858 !msginfo->plaintext_file &&
859 !msginfo->decryption_failed) {
860 rfc2015_decrypt_message(msginfo, mimeinfo, fp);
861 if (msginfo->plaintext_file &&
862 !msginfo->decryption_failed) {
870 #else /* !USE_GPGME */
871 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
872 mimeinfo = procmime_scan_mime_header(fp);
873 #endif /* USE_GPGME */
876 if (!mimeinfo) return;
877 if (mimeinfo->mime_type == MIME_TEXT)
880 if ((fp = procmsg_open_message(msginfo)) == NULL) return;
882 g_return_if_fail(mimeinfo != NULL);
883 g_return_if_fail(mimeinfo->mime_type != MIME_TEXT);
885 if (mimeinfo->mime_type == MIME_MULTIPART) {
886 g_return_if_fail(mimeinfo->boundary != NULL);
887 g_return_if_fail(mimeinfo->sub == NULL);
889 g_return_if_fail(fp != NULL);
891 boundary = mimeinfo->boundary;
894 boundary_len = strlen(boundary);
896 /* look for first boundary */
897 while ((p = fgets(buf, sizeof(buf), fp)) != NULL)
898 if (IS_BOUNDARY(buf, boundary, boundary_len)) break;
905 if ((fpos = ftell(fp)) < 0) {
911 for (npart = 0;; npart++) {
913 gboolean eom = FALSE;
917 partinfo = procmime_scan_mime_header(fp);
918 if (!partinfo) break;
921 procmime_mimeinfo_insert(mimeinfo, partinfo);
923 procmime_mimeinfo_free(partinfo);
925 /* look for next boundary */
927 while ((p = fgets(buf, sizeof(buf), fp)) != NULL) {
928 if (IS_BOUNDARY(buf, boundary, boundary_len)) {
929 if (buf[2 + boundary_len] == '-' &&
930 buf[2 + boundary_len + 1] == '-')
936 eom = TRUE; /* broken MIME message */
939 partinfo->size = fpos - prev_fpos - strlen(buf);
944 source = procmsg_get_message_file_path(msginfo);
946 g_return_if_fail(mimeinfo != NULL);
948 if (!mimeinfo->main && mimeinfo->parent)
950 filename = mime_extract_file(source, mimeinfo);
952 compose_attach_append_with_type(compose, filename,
953 mimeinfo->content_type,
954 mimeinfo->mime_type);
959 if (mimeinfo->sub && mimeinfo->sub->children)
961 filename = mime_extract_file(source, mimeinfo->sub);
963 compose_attach_append_with_type(compose, filename,
964 mimeinfo->content_type,
965 mimeinfo->sub->mime_type);
970 if (mimeinfo->children) {
973 child = mimeinfo->children;
975 filename = mime_extract_file(source, child);
977 compose_attach_append_with_type(compose, filename,
989 procmime_mimeinfo_free_all(mimeinfo);
993 #define INSERT_FW_HEADER(var, hdr) \
994 if (msginfo->var && *msginfo->var) { \
995 gtk_stext_insert(text, NULL, NULL, NULL, hdr, -1); \
996 gtk_stext_insert(text, NULL, NULL, NULL, msginfo->var, -1); \
997 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1); \
1000 Compose *compose_forward(PrefsAccount * account, MsgInfo *msginfo,
1004 /* PrefsAccount *account; */
1007 g_return_val_if_fail(msginfo != NULL, NULL);
1008 g_return_val_if_fail(msginfo->folder != NULL, NULL);
1010 account = msginfo->folder->folder->account;
1011 if (!account && msginfo->to && prefs_common.forward_account_autosel) {
1013 Xstrdup_a(to, msginfo->to, return);
1014 extract_address(to);
1015 account = account_find_from_address(to);
1018 if(!account && prefs_common.forward_account_autosel) {
1020 if(!get_header_from_msginfo(msginfo,cc,sizeof(cc),"CC:")){ /* Found a CC header */
1021 extract_address(cc);
1022 account = account_find_from_address(cc);
1026 if (account == NULL) {
1027 account = cur_account;
1029 account = msginfo->folder->folder->account;
1030 if (!account) account = cur_account;
1033 g_return_val_if_fail(account != NULL, NULL);
1035 MSG_UNSET_PERM_FLAGS(msginfo->flags, MSG_REPLIED);
1036 MSG_SET_PERM_FLAGS(msginfo->flags, MSG_FORWARDED);
1037 CHANGE_FLAGS(msginfo);
1039 compose = compose_create(account, COMPOSE_FORWARD);
1041 if (msginfo->subject && *msginfo->subject) {
1042 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Fw: ");
1043 gtk_entry_append_text(GTK_ENTRY(compose->subject_entry),
1047 text = GTK_STEXT(compose->text);
1048 gtk_stext_freeze(text);
1053 msgfile = procmsg_get_message_file_path(msginfo);
1054 if (!is_file_exist(msgfile))
1055 g_warning(_("%s: file not exist\n"), msgfile);
1057 compose_attach_append(compose, msgfile,
1058 MIME_MESSAGE_RFC822);
1065 if (prefs_common.fw_quotemark && *prefs_common.fw_quotemark)
1066 qmark = prefs_common.fw_quotemark;
1070 quote_str = compose_quote_fmt(compose, msginfo,
1071 prefs_common.fw_quotefmt, qmark);
1072 compose_attach_parts(compose, msginfo);
1075 if (prefs_common.auto_sig)
1076 compose_insert_sig(compose);
1077 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1078 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1080 gtk_stext_thaw(text);
1081 #if 0 /* NEW COMPOSE GUI */
1082 if (account->protocol != A_NNTP)
1083 gtk_widget_grab_focus(compose->to_entry);
1085 gtk_widget_grab_focus(compose->newsgroups_entry);
1087 gtk_widget_grab_focus(compose->header_last->entry);
1089 if (prefs_common.auto_exteditor)
1090 compose_exec_ext_editor(compose);
1095 #undef INSERT_FW_HEADER
1097 Compose * compose_forward_multiple(PrefsAccount * account,
1098 GSList *msginfo_list)
1105 g_return_val_if_fail(msginfo_list != NULL, NULL);
1107 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1108 if ( ((MsgInfo *)msginfo->data)->folder == NULL )
1112 if (account == NULL) {
1113 account = cur_account;
1115 account = msginfo->folder->folder->account;
1116 if (!account) account = cur_account;
1119 g_return_val_if_fail(account != NULL, NULL);
1121 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1122 MSG_UNSET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_REPLIED);
1123 MSG_SET_PERM_FLAGS(((MsgInfo *)msginfo->data)->flags, MSG_FORWARDED);
1124 CHANGE_FLAGS(((MsgInfo *)msginfo->data));
1127 compose = compose_create(account, COMPOSE_FORWARD);
1129 text = GTK_STEXT(compose->text);
1130 gtk_stext_freeze(text);
1132 for (msginfo = msginfo_list; msginfo != NULL; msginfo = msginfo->next) {
1133 msgfile = procmsg_get_message_file_path((MsgInfo *)msginfo->data);
1134 if (!is_file_exist(msgfile))
1135 g_warning(_("%s: file not exist\n"), msgfile);
1137 compose_attach_append(compose, msgfile,
1138 MIME_MESSAGE_RFC822);
1142 if (prefs_common.auto_sig)
1143 compose_insert_sig(compose);
1144 gtk_editable_set_position(GTK_EDITABLE(compose->text), 0);
1145 gtk_stext_set_point(GTK_STEXT(compose->text), 0);
1147 gtk_stext_thaw(text);
1148 #if 0 /* NEW COMPOSE GUI */
1149 if (account->protocol != A_NNTP)
1150 gtk_widget_grab_focus(compose->to_entry);
1152 gtk_widget_grab_focus(compose->newsgroups_entry);
1158 void compose_reedit(MsgInfo *msginfo)
1161 PrefsAccount *account;
1164 gchar buf[BUFFSIZE];
1166 g_return_if_fail(msginfo != NULL);
1167 g_return_if_fail(msginfo->folder != NULL);
1169 account = msginfo->folder->folder->account;
1171 if(!account&& prefs_common.reedit_account_autosel) {
1172 gchar from[BUFFSIZE];
1173 if(!get_header_from_msginfo(msginfo,from,sizeof(from),"FROM:")){ /* Found a FROM header */
1174 extract_address(from);
1175 account = account_find_from_address(from);
1178 if (!account) account = cur_account;
1179 g_return_if_fail(account != NULL);
1181 compose = compose_create(account, COMPOSE_REEDIT);
1182 compose->targetinfo = procmsg_msginfo_copy(msginfo);
1184 if (compose_parse_header(compose, msginfo) < 0) return;
1185 compose_reedit_set_entry(compose, msginfo);
1187 text = GTK_STEXT(compose->text);
1188 gtk_stext_freeze(text);
1190 if ((fp = procmime_get_first_text_content(msginfo)) == NULL)
1191 g_warning(_("Can't get text part\n"));
1193 while (fgets(buf, sizeof(buf), fp) != NULL)
1194 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1197 compose_attach_parts(compose, msginfo);
1199 gtk_stext_thaw(text);
1200 gtk_widget_grab_focus(compose->text);
1202 if (prefs_common.auto_exteditor)
1203 compose_exec_ext_editor(compose);
1206 GList *compose_get_compose_list(void)
1208 return compose_list;
1211 void compose_entry_append(Compose *compose, const gchar *address,
1212 ComposeEntryType type)
1218 if (!address || *address == '\0') return;
1220 #if 0 /* NEW COMPOSE GUI */
1223 entry = GTK_ENTRY(compose->cc_entry);
1226 entry = GTK_ENTRY(compose->bcc_entry);
1228 case COMPOSE_NEWSGROUPS:
1229 entry = GTK_ENTRY(compose->newsgroups_entry);
1233 entry = GTK_ENTRY(compose->to_entry);
1237 text = gtk_entry_get_text(entry);
1239 gtk_entry_append_text(entry, ", ");
1240 gtk_entry_append_text(entry, address);
1248 header = N_("Bcc:");
1250 case COMPOSE_REPLYTO:
1251 header = N_("Reply-To:");
1253 case COMPOSE_NEWSGROUPS:
1254 header = N_("Newsgroups:");
1256 case COMPOSE_FOLLOWUPTO:
1257 header = N_( "Followup-To:");
1264 header = prefs_common.trans_hdr ? gettext(header) : header;
1266 compose_add_header_entry(compose, header, (gchar *)address);
1269 static gint compose_parse_header(Compose *compose, MsgInfo *msginfo)
1271 static HeaderEntry hentry[] = {{"Reply-To:", NULL, TRUE},
1272 {"Cc:", NULL, FALSE},
1273 {"References:", NULL, FALSE},
1274 {"Bcc:", NULL, FALSE},
1275 {"Newsgroups:", NULL, FALSE},
1276 {"Followup-To:", NULL, FALSE},
1277 {"X-Mailing-List:", NULL, FALSE},
1278 {"X-BeenThere:", NULL, FALSE},
1279 {NULL, NULL, FALSE}};
1289 H_X_MAILING_LIST = 6,
1295 g_return_val_if_fail(msginfo != NULL, -1);
1297 if ((fp = procmsg_open_message(msginfo)) == NULL) return -1;
1298 procheader_get_header_fields(fp, hentry);
1301 if (hentry[H_REPLY_TO].body != NULL) {
1302 conv_unmime_header_overwrite(hentry[H_REPLY_TO].body);
1303 compose->replyto = hentry[H_REPLY_TO].body;
1304 hentry[H_REPLY_TO].body = NULL;
1306 if (hentry[H_CC].body != NULL) {
1307 conv_unmime_header_overwrite(hentry[H_CC].body);
1308 compose->cc = hentry[H_CC].body;
1309 hentry[H_CC].body = NULL;
1311 if (hentry[H_X_MAILING_LIST].body != NULL) {
1312 /* this is good enough to parse debian-devel */
1313 char * buf = g_malloc(strlen(hentry[H_X_MAILING_LIST].body) + 1);
1314 g_return_val_if_fail(buf != NULL, -1 );
1315 if (1 == sscanf(hentry[H_X_MAILING_LIST].body, "<%[^>]>", buf))
1316 compose->mailinglist = g_strdup(buf);
1318 g_free(hentry[H_X_MAILING_LIST].body);
1319 hentry[H_X_MAILING_LIST].body = NULL ;
1321 if (hentry[H_X_BEENTHERE].body != NULL) {
1322 /* this is good enough to parse the sylpheed-claws lists */
1323 char * buf = g_malloc(strlen(hentry[H_X_BEENTHERE].body) + 1);
1324 g_return_val_if_fail(buf != NULL, -1 );
1325 if (1 == sscanf(hentry[H_X_BEENTHERE].body, "%[^>]", buf))
1326 compose->mailinglist = g_strdup(buf);
1328 g_free(hentry[H_X_BEENTHERE].body);
1329 hentry[H_X_BEENTHERE].body = NULL ;
1331 if (hentry[H_REFERENCES].body != NULL) {
1332 if (compose->mode == COMPOSE_REEDIT)
1333 compose->references = hentry[H_REFERENCES].body;
1335 compose->references = compose_parse_references
1336 (hentry[H_REFERENCES].body, msginfo->msgid);
1337 g_free(hentry[H_REFERENCES].body);
1339 hentry[H_REFERENCES].body = NULL;
1341 if (hentry[H_BCC].body != NULL) {
1342 if (compose->mode == COMPOSE_REEDIT) {
1343 conv_unmime_header_overwrite(hentry[H_BCC].body);
1344 compose->bcc = hentry[H_BCC].body;
1346 g_free(hentry[H_BCC].body);
1347 hentry[H_BCC].body = NULL;
1349 if (hentry[H_NEWSGROUPS].body != NULL) {
1350 compose->newsgroups = hentry[H_NEWSGROUPS].body;
1351 hentry[H_NEWSGROUPS].body = NULL;
1353 if (hentry[H_FOLLOWUP_TO].body != NULL) {
1354 conv_unmime_header_overwrite(hentry[H_FOLLOWUP_TO].body);
1355 compose->followup_to = hentry[H_FOLLOWUP_TO].body;
1356 hentry[H_FOLLOWUP_TO].body = NULL;
1359 if (compose->mode == COMPOSE_REEDIT && msginfo->inreplyto)
1360 compose->inreplyto = g_strdup(msginfo->inreplyto);
1361 else if (compose->mode != COMPOSE_REEDIT &&
1362 msginfo->msgid && *msginfo->msgid) {
1363 compose->inreplyto = g_strdup(msginfo->msgid);
1365 if (!compose->references) {
1366 if (msginfo->inreplyto && *msginfo->inreplyto)
1367 compose->references =
1368 g_strdup_printf("<%s>\n\t<%s>",
1372 compose->references =
1373 g_strconcat("<", msginfo->msgid, ">",
1381 static gchar *compose_parse_references(const gchar *ref, const gchar *msgid)
1383 GSList *ref_id_list, *cur;
1387 ref_id_list = references_list_append(NULL, ref);
1388 if (!ref_id_list) return NULL;
1389 if (msgid && *msgid)
1390 ref_id_list = g_slist_append(ref_id_list, g_strdup(msgid));
1395 for (cur = ref_id_list; cur != NULL; cur = cur->next)
1396 /* "<" + Message-ID + ">" + CR+LF+TAB */
1397 len += strlen((gchar *)cur->data) + 5;
1399 if (len > MAX_REFERENCES_LEN) {
1400 /* remove second message-ID */
1401 if (ref_id_list && ref_id_list->next &&
1402 ref_id_list->next->next) {
1403 g_free(ref_id_list->next->data);
1404 ref_id_list = g_slist_remove
1405 (ref_id_list, ref_id_list->next->data);
1407 slist_free_strings(ref_id_list);
1408 g_slist_free(ref_id_list);
1415 new_ref = g_string_new("");
1416 for (cur = ref_id_list; cur != NULL; cur = cur->next) {
1417 if (new_ref->len > 0)
1418 g_string_append(new_ref, "\n\t");
1419 g_string_sprintfa(new_ref, "<%s>", (gchar *)cur->data);
1422 slist_free_strings(ref_id_list);
1423 g_slist_free(ref_id_list);
1425 new_ref_str = new_ref->str;
1426 g_string_free(new_ref, FALSE);
1431 static gchar *compose_quote_fmt(Compose *compose, MsgInfo *msginfo,
1432 const gchar *fmt, const gchar *qmark)
1434 GtkSText *text = GTK_STEXT(compose->text);
1435 gchar *quote_str = NULL;
1440 if (qmark != NULL) {
1441 quote_fmt_init(msginfo, NULL);
1442 quote_fmt_scan_string(qmark);
1445 buf = quote_fmt_get_buffer();
1447 alertpanel_error(_("Quote mark format error."));
1449 Xstrdup_a(quote_str, buf, return NULL)
1452 quote_fmt_init(msginfo, quote_str);
1453 quote_fmt_scan_string(fmt);
1456 buf = quote_fmt_get_buffer();
1458 alertpanel_error(_("Message reply/forward format error."));
1462 gtk_stext_freeze(text);
1463 gtk_stext_set_point(text, 0);
1464 gtk_stext_forward_delete(text, gtk_stext_get_length(text));
1466 for (p = buf; *p != '\0'; ) {
1467 lastp = strchr(p, '\n');
1468 len = lastp ? lastp - p + 1 : -1;
1469 gtk_stext_insert(text, NULL, NULL, NULL, p, len);
1476 gtk_stext_thaw(text);
1481 static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
1482 gboolean to_all, gboolean ignore_replyto,
1483 gboolean followup_and_reply_to)
1488 GHashTable *to_table;
1490 g_return_if_fail(compose->account != NULL);
1491 g_return_if_fail(msginfo != NULL);
1493 if ((compose->account->protocol != A_NNTP) || followup_and_reply_to)
1494 compose_entry_append(compose,
1495 ((compose->mailinglist && !ignore_replyto)
1496 ? compose->mailinglist
1497 : (compose->replyto && !ignore_replyto)
1499 : msginfo->from ? msginfo->from : ""),
1501 if (compose->account->protocol == A_NNTP)
1503 compose_entry_append(compose,
1504 msginfo->from ? msginfo->from : "",
1507 compose_entry_append(compose,
1508 compose->followup_to ? compose->followup_to
1509 : compose->newsgroups ? compose->newsgroups
1511 COMPOSE_NEWSGROUPS);
1513 compose_entry_append(compose,
1514 compose->followup_to ? compose->followup_to
1515 : compose->newsgroups ? compose->newsgroups
1517 COMPOSE_NEWSGROUPS);
1520 if (msginfo->subject && *msginfo->subject) {
1521 gchar *buf, *buf2, *p;
1523 buf = g_strdup(msginfo->subject);
1524 while (!strncasecmp(buf, "Re:", 3)) {
1526 while (isspace(*p)) p++;
1527 memmove(buf, p, strlen(p) + 1);
1530 buf2 = g_strdup_printf("Re: %s", buf);
1531 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), buf2);
1535 gtk_entry_set_text(GTK_ENTRY(compose->subject_entry), "Re: ");
1537 if (!to_all || compose->account->protocol == A_NNTP) return;
1539 from = g_strdup(compose->replyto ? compose->replyto :
1540 msginfo->from ? msginfo->from : "");
1541 extract_address(from);
1543 cc_list = address_list_append(NULL, msginfo->to);
1544 cc_list = address_list_append(cc_list, compose->cc);
1546 to_table = g_hash_table_new(g_str_hash, g_str_equal);
1547 g_hash_table_insert(to_table, from, GINT_TO_POINTER(1));
1548 if (compose->account)
1549 g_hash_table_insert(to_table, compose->account->address,
1550 GINT_TO_POINTER(1));
1552 /* remove address on To: and that of current account */
1553 for (cur = cc_list; cur != NULL; ) {
1554 GSList *next = cur->next;
1556 if (g_hash_table_lookup(to_table, cur->data) != NULL)
1557 cc_list = g_slist_remove(cc_list, cur->data);
1559 g_hash_table_insert(to_table, cur->data, cur);
1563 g_hash_table_destroy(to_table);
1567 for (cur = cc_list; cur != NULL; cur = cur->next)
1568 compose_entry_append(compose, (gchar *)cur->data,
1570 slist_free_strings(cc_list);
1571 g_slist_free(cc_list);
1575 #define SET_ENTRY(entry, str) \
1578 gtk_entry_set_text(GTK_ENTRY(compose->entry), str); \
1581 #define SET_ADDRESS(type, str) \
1584 compose_entry_append(compose, str, type); \
1587 static void compose_reedit_set_entry(Compose *compose, MsgInfo *msginfo)
1589 g_return_if_fail(msginfo != NULL);
1591 SET_ENTRY(subject_entry, msginfo->subject);
1592 SET_ADDRESS(COMPOSE_TO, msginfo->to);
1593 SET_ADDRESS(COMPOSE_CC, compose->cc);
1594 SET_ADDRESS(COMPOSE_BCC, compose->bcc);
1595 SET_ADDRESS(COMPOSE_REPLYTO, compose->replyto);
1597 #if 0 /* NEW COMPOSE GUI */
1599 GtkItemFactory *ifactory;
1600 GtkWidget *menuitem;
1602 ifactory = gtk_item_factory_from_widget(compose->menubar);
1603 menuitem = gtk_item_factory_get_item(ifactory, "/Message/Bcc");
1604 gtk_check_menu_item_set_active
1605 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1607 if (compose->replyto) {
1608 GtkItemFactory *ifactory;
1609 GtkWidget *menuitem;
1611 ifactory = gtk_item_factory_from_widget(compose->menubar);
1612 menuitem = gtk_item_factory_get_item
1613 (ifactory, "/Message/Reply to");
1614 gtk_check_menu_item_set_active
1615 (GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1623 static void compose_exec_sig(Compose *compose, gchar *sigfile)
1630 size_t buf_len = 128;
1632 if (strlen(sigfile) < 2)
1635 sigprg = popen(sigfile+1, "r");
1638 buf = g_malloc(buf_len);
1641 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1642 "Unable to insert signature (malloc failed)\n", -1);
1648 while (!feof(sigprg)) {
1649 bzero(buf, buf_len);
1650 fread(buf, buf_len-1, 1, sigprg);
1651 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, buf, -1);
1659 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1660 "Can't exec file: ", -1);
1661 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, \
1666 static void compose_insert_sig(Compose *compose)
1670 if (compose->account && compose->account->sig_path)
1671 sigfile = g_strdup(compose->account->sig_path);
1673 sigfile = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1674 DEFAULT_SIGNATURE, NULL);
1677 if (!is_file_or_fifo_exist(sigfile) & (sigfile[0] != '|')) {
1682 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL, "\n\n", 2);
1683 if (prefs_common.sig_sep) {
1684 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1685 prefs_common.sig_sep, -1);
1686 gtk_stext_insert(GTK_STEXT(compose->text), NULL, NULL, NULL,
1690 if (sigfile[0] == '|')
1692 compose_exec_sig(compose, sigfile);
1696 compose_insert_file(compose, sigfile);
1701 static void compose_insert_file(Compose *compose, const gchar *file)
1703 GtkSText *text = GTK_STEXT(compose->text);
1704 gchar buf[BUFFSIZE];
1708 g_return_if_fail(file != NULL);
1710 if ((fp = fopen(file, "r")) == NULL) {
1711 FILE_OP_ERROR(file, "fopen");
1715 gtk_stext_freeze(text);
1717 while (fgets(buf, sizeof(buf), fp) != NULL) {
1718 /* Strip <CR> if DOS/Windoze file, replace <CR> with <LF> if MAC file */
1720 if (len > 1 && buf[len - 2] == '\r' && buf[len - 1] == '\n') {
1721 buf[len - 2] = '\n';
1722 buf[len - 1] = '\0';
1725 if (buf[len] == '\r')
1729 gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
1732 gtk_stext_thaw(text);
1737 static void compose_attach_info(Compose * compose, AttachInfo * ainfo,
1738 ContentType cnttype)
1740 gchar *text[N_ATTACH_COLS];
1743 text[COL_MIMETYPE] = ainfo->content_type;
1744 text[COL_SIZE] = to_human_readable(ainfo->size);
1745 text[COL_NAME] = ainfo->name;
1747 row = gtk_clist_append(GTK_CLIST(compose->attach_clist), text);
1748 gtk_clist_set_row_data(GTK_CLIST(compose->attach_clist), row, ainfo);
1750 if (cnttype != MIME_MESSAGE_RFC822)
1751 compose_changed_cb(NULL, compose);
1754 static void compose_attach_append_with_type(Compose *compose,
1757 ContentType cnttype)
1762 if (!is_file_exist(file)) {
1763 g_warning(_("File %s doesn't exist\n"), file);
1766 if ((size = get_file_size(file)) < 0) {
1767 g_warning(_("Can't get file size of %s\n"), file);
1771 alertpanel_notice(_("File %s is empty\n"), file);
1774 #if 0 /* NEW COMPOSE GUI */
1775 if (!compose->use_attach) {
1776 GtkItemFactory *ifactory;
1777 GtkWidget *menuitem;
1779 ifactory = gtk_item_factory_from_widget(compose->menubar);
1780 menuitem = gtk_item_factory_get_item(ifactory,
1782 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1786 ainfo = g_new0(AttachInfo, 1);
1787 ainfo->file = g_strdup(file);
1789 if (cnttype == MIME_MESSAGE_RFC822) {
1790 ainfo->encoding = ENC_7BIT;
1791 ainfo->name = g_strdup_printf(_("Message: %s"),
1794 ainfo->encoding = ENC_BASE64;
1795 ainfo->name = g_strdup(g_basename(file));
1798 ainfo->content_type = g_strdup(type);
1801 compose_attach_info(compose, ainfo, cnttype);
1804 static void compose_attach_append(Compose *compose, const gchar *file,
1805 ContentType cnttype)
1808 gchar *text[N_ATTACH_COLS];
1812 if (!is_file_exist(file)) {
1813 g_warning(_("File %s doesn't exist\n"), file);
1816 if ((size = get_file_size(file)) < 0) {
1817 g_warning(_("Can't get file size of %s\n"), file);
1821 alertpanel_notice(_("File %s is empty\n"), file);
1824 #if 0 /* NEW COMPOSE GUI */
1825 if (!compose->use_attach) {
1826 GtkItemFactory *ifactory;
1827 GtkWidget *menuitem;
1829 ifactory = gtk_item_factory_from_widget(compose->menubar);
1830 menuitem = gtk_item_factory_get_item(ifactory,
1832 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1836 ainfo = g_new0(AttachInfo, 1);
1837 ainfo->file = g_strdup(file);
1839 if (cnttype == MIME_MESSAGE_RFC822) {
1840 ainfo->content_type = g_strdup("message/rfc822");
1841 ainfo->encoding = ENC_7BIT;
1842 ainfo->name = g_strdup_printf(_("Message: %s"),
1845 ainfo->content_type = procmime_get_mime_type(file);
1846 if (!ainfo->content_type)
1847 ainfo->content_type =
1848 g_strdup("application/octet-stream");
1849 ainfo->encoding = ENC_BASE64;
1850 ainfo->name = g_strdup(g_basename(file));
1854 compose_attach_info(compose, ainfo, cnttype);
1857 static void compose_wrap_line(Compose *compose)
1859 GtkSText *text = GTK_STEXT(compose->text);
1860 gint ch_len, last_ch_len;
1861 gchar cbuf[MB_LEN_MAX], last_ch;
1865 gint p_start, p_end;
1866 gint line_pos, cur_pos;
1867 gint line_len, cur_len;
1869 #define GET_STEXT(pos) \
1870 if (text->use_wchar) \
1871 ch_len = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, (pos))); \
1873 cbuf[0] = GTK_STEXT_INDEX(text, (pos)); \
1877 gtk_stext_freeze(text);
1879 text_len = gtk_stext_get_length(text);
1881 /* check to see if the point is on the paragraph mark (empty line). */
1882 cur_pos = gtk_stext_get_point(text);
1884 if ((ch_len == 1 && *cbuf == '\n') || cur_pos == text_len) {
1886 goto compose_end; /* on the paragraph mark */
1887 GET_STEXT(cur_pos - 1);
1888 if (ch_len == 1 && *cbuf == '\n')
1889 goto compose_end; /* on the paragraph mark */
1892 /* find paragraph start. */
1893 line_end = quoted = 0;
1894 for (p_start = cur_pos; p_start >= 0; --p_start) {
1896 if (ch_len == 1 && *cbuf == '\n') {
1898 goto compose_end; /* quoted part */
1905 if (ch_len == 1 && strchr(">:#", *cbuf))
1907 else if (ch_len != 1 || !isspace(*cbuf))
1916 /* find paragraph end. */
1918 for (p_end = cur_pos; p_end < text_len; p_end++) {
1920 if (ch_len == 1 && *cbuf == '\n') {
1927 if (line_end && ch_len == 1 && strchr(">:#", *cbuf))
1928 goto compose_end; /* quoted part */
1933 if (p_end >= text_len)
1936 if (p_start >= p_end)
1939 line_len = cur_len = 0;
1943 for (cur_pos = p_start; cur_pos < p_end; cur_pos++) {
1953 if (ch_len == 1 && isspace(*cbuf))
1956 if (ch_len == 1 && *cbuf == '\n') {
1958 if (last_ch_len == 1 && !isspace(last_ch)) {
1959 if (cur_pos + 1 < p_end) {
1960 GET_STEXT(cur_pos + 1);
1961 if (ch_len == 1 && !isspace(*cbuf))
1965 gtk_stext_set_point(text, cur_pos + 1);
1966 gtk_stext_backward_delete(text, 1);
1968 gtk_stext_set_point(text, cur_pos);
1969 gtk_stext_insert(text, NULL, NULL, NULL, " ", 1);
1979 last_ch_len = ch_len;
1983 line_pos = cur_pos + 1;
1984 line_len = cur_len + ch_len;
1987 if (cur_len + ch_len > prefs_common.linewrap_len &&
1991 GET_STEXT(line_pos - 1);
1992 if (ch_len == 1 && isspace(*cbuf)) {
1993 gtk_stext_set_point(text, line_pos);
1994 gtk_stext_backward_delete(text, 1);
2003 gtk_stext_set_point(text, line_pos);
2004 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2008 cur_len = cur_len - line_len + ch_len;
2014 line_pos = cur_pos + 1;
2015 line_len = cur_len + ch_len;
2021 gtk_stext_thaw(text);
2026 /* return indent length */
2027 static guint get_indent_length(GtkSText *text, guint start_pos,
2029 gint indent_len = 0;
2031 gchar cbuf[MB_CUR_MAX];
2033 for (i = start_pos; i < text_len; i++) {
2034 if (text->use_wchar)
2036 (cbuf, (wchar_t)GTK_STEXT_INDEX(text, i));
2038 cbuf[0] = GTK_STEXT_INDEX(text, i);
2043 /* allow space, tab, > or | */
2044 if (cbuf[0] != ' ' && cbuf[0] != '\t' &&
2045 cbuf[0] != '>' && cbuf[0] != '|')
2053 /* insert quotation string when line was wrapped, we know these
2054 are single byte characters */
2055 static guint ins_quote(GtkSText *text, guint quote_len, guint indent_len,
2056 guint prev_line_pos, guint text_len,
2062 for (i = 0; i < indent_len; i++) {
2063 ch = GTK_STEXT_INDEX(text, prev_line_pos + i);
2064 gtk_stext_insert(text, NULL, NULL, NULL, &ch, 1);
2066 ins_len = indent_len;
2069 gtk_stext_insert(text, NULL, NULL, NULL, quote_fmt, quote_len);
2070 ins_len = quote_len;
2078 /* Darko: used when I debug wrapping */
2079 void dump_text(GtkSText *text, int pos, int tlen, int breakoncr)
2084 printf("%d [", pos);
2085 for (i = pos; i < tlen; i++)
2087 ch = GTK_STEXT_INDEX(text, i);
2088 if (breakoncr && ch == '\n')
2096 static void compose_wrap_line_all(Compose *compose)
2098 GtkSText *text = GTK_STEXT(compose->text);
2100 guint line_pos = 0, cur_pos = 0, p_pos = 0;
2101 gint line_len = 0, cur_len = 0;
2103 gint is_new_line = 1, do_delete = 0;
2104 guint qlen = 0, i_len = 0;
2105 guint linewrap_quote = prefs_common.linewrap_quote;
2106 guint linewrap_len = prefs_common.linewrap_len;
2107 gchar *qfmt = prefs_common.quotemark;
2108 gchar cbuf[MB_LEN_MAX];
2110 gtk_stext_freeze(text);
2112 /* make text buffer contiguous */
2113 gtk_stext_compact_buffer(text);
2115 tlen = gtk_stext_get_length(text);
2117 for (; cur_pos < tlen; cur_pos++) {
2118 /* mark position of new line - needed for quotation wrap */
2119 if (linewrap_quote && is_new_line) {
2120 qlen = gtkstext_str_strcmp(text, cur_pos, tlen, qfmt);
2123 i_len = get_indent_length(text, cur_pos, tlen);
2129 printf("new line i_len=%d qlen=%d p_pos=", i_len, qlen);
2130 dump_text(text, p_pos, tlen, 1);
2134 /* get character(s) at current position */
2135 if (text->use_wchar)
2137 (cbuf, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
2139 cbuf[0] = GTK_STEXT_INDEX(text, cur_pos);
2143 /* fix line length for tabs */
2144 if (ch_len == 1 && *cbuf == '\t') {
2145 guint tab_width = text->default_tab_width;
2146 guint tab_offset = line_len % tab_width;
2149 printf("found tab at pos=%d line_len=%d ", cur_pos,
2153 line_len += tab_width - tab_offset - 1;
2157 printf("new_len=%d\n", line_len);
2161 /* we have encountered line break */
2162 if (ch_len == 1 && *cbuf == '\n') {
2165 gchar cb[MB_CUR_MAX];
2168 printf("found CR at %d\n", cur_pos);
2170 /* if it's just quotation + newline skip it */
2171 if (i_len && (cur_pos + 1 < tlen)) {
2172 /* check if text at new line matches indent */
2173 ilen = gtkstext_strncmp(text, cur_pos + 1,
2174 p_pos, i_len, tlen);
2175 if (cur_pos + ilen < tlen) {
2176 if (text->use_wchar)
2177 clen = wctomb(cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos + ilen + 1));
2179 cb[0] = GTK_STEXT_INDEX(text,
2180 cur_pos + ilen + 1);
2183 /* no need to join the lines */
2184 if ((clen == 1) && (cb[0] == '\n'))
2190 printf("qlen=%d l_len=%d wrap_len=%d do_del=%d\n",
2191 qlen, line_len, linewrap_len, do_delete);
2193 /* should we delete to perform smart wrapping */
2194 if (qlen && line_len < linewrap_len && do_delete) {
2195 /* get rid of newline */
2196 gtk_stext_set_point(text, cur_pos);
2197 gtk_stext_forward_delete(text, 1);
2200 /* if text starts with quote fmt or with
2201 indent string, delete them */
2203 ilen = gtkstext_strncmp(text, cur_pos,
2207 gtk_stext_forward_delete(text,
2213 if (gtkstext_str_strcmp(text, cur_pos,
2215 gtk_stext_forward_delete(text,
2221 if (text->use_wchar)
2223 (cb, (wchar_t)GTK_STEXT_INDEX(text, cur_pos));
2225 cb[0] = GTK_STEXT_INDEX(text, cur_pos);
2229 /* insert space if it's alphanumeric */
2230 if ((cur_pos != line_pos) &&
2231 ((clen > 1) || isalnum(cb[0]))) {
2232 gtk_stext_insert(text, NULL, NULL,
2234 gtk_stext_compact_buffer(text);
2238 /* and start over with current line */
2239 cur_pos = p_pos - 1;
2241 line_len = cur_len = 0;
2246 printf("after delete l_pos=");
2247 dump_text(text, line_pos, tlen, 1);
2252 /* mark new line beginning */
2253 line_pos = cur_pos + 1;
2254 line_len = cur_len = 0;
2266 /* possible line break */
2267 if (ch_len == 1 && isspace(*cbuf)) {
2268 line_pos = cur_pos + 1;
2269 line_len = cur_len + ch_len;
2272 /* are we over wrapping length set in preferences ? */
2273 if (cur_len + ch_len > linewrap_len) {
2277 printf("should wrap cur_pos=%d ", cur_pos);
2278 dump_text(text, p_pos, tlen, 1);
2279 dump_text(text, line_pos, tlen, 1);
2281 /* force wrapping if it is one long word but not URL */
2282 if (p_pos + i_len == line_pos)
2283 if (!is_url_string(text, line_pos, tlen))
2284 line_pos = cur_pos - 1;
2286 printf("new line_pos=%d\n", line_pos);
2289 /* if next character is space delete it */
2290 if (text->use_wchar)
2291 clen = wctomb(cbuf, (wchar_t)GTK_STEXT_INDEX(text, line_pos - 1));
2293 cbuf[0] = GTK_STEXT_INDEX(text, line_pos - 1);
2296 if (clen == 1 && isspace(*cbuf)) {
2297 if (p_pos + i_len != line_pos ||
2298 !is_url_string(text, line_pos, tlen)) {
2299 gtk_stext_set_point(text, line_pos);
2300 gtk_stext_backward_delete(text, 1);
2309 /* if it is URL at beginning of line don't wrap */
2310 if (p_pos + i_len == line_pos &&
2311 is_url_string(text, line_pos, tlen)) {
2313 printf("found URL at ");
2314 dump_text(text, line_pos, tlen, 1);
2320 gtk_stext_set_point(text, line_pos);
2321 gtk_stext_insert(text, NULL, NULL, NULL, "\n", 1);
2322 gtk_stext_compact_buffer(text);
2326 cur_len = cur_len - line_len + ch_len;
2329 printf("after CR insert ");
2330 dump_text(text, line_pos, tlen, 1);
2333 /* should we insert quotation ? */
2334 if (linewrap_quote && qlen) {
2335 /* only if line is not already quoted */
2336 if (!gtkstext_str_strcmp(text, line_pos,
2340 if (line_pos - p_pos > i_len) {
2341 ins_len = ins_quote(text,
2348 gtk_stext_compact_buffer(text);
2352 /* for loop will increase it */
2353 cur_pos = line_pos - 1;
2356 /* start over with current line */
2360 printf("after quote insert ");
2361 dump_text(text, line_pos, tlen, 1);
2369 line_pos = cur_pos + 1;
2370 line_len = cur_len + ch_len;
2372 /* advance to next character in buffer */
2376 gtk_stext_thaw(text);
2379 static void compose_set_title(Compose *compose)
2384 edited = compose->modified ? _(" [Edited]") : "";
2385 if (compose->account && compose->account->address)
2386 str = g_strdup_printf(_("%s - Compose message%s"),
2387 compose->account->address, edited);
2389 str = g_strdup_printf(_("Compose message%s"), edited);
2390 gtk_window_set_title(GTK_WINDOW(compose->window), str);
2395 * compose_current_mail_account:
2397 * Find a current mail account (the currently selected account, or the
2398 * default account, if a news account is currently selected). If a
2399 * mail account cannot be found, display an error message.
2401 * Return value: Mail account, or NULL if not found.
2403 static PrefsAccount *
2404 compose_current_mail_account(void)
2408 if (cur_account && cur_account->protocol != A_NNTP)
2411 ac = account_get_default();
2412 if (!ac || ac->protocol == A_NNTP) {
2413 alertpanel_error(_("Account for sending mail is not specified.\n"
2414 "Please select a mail account before sending."));
2421 gboolean compose_check_for_valid_recipient(Compose *compose) {
2422 gchar *recipient_headers_mail[] = {"To:", "Cc:", "Bcc:", NULL};
2423 gchar *recipient_headers_news[] = {"Newsgroups:", NULL};
2424 gboolean recipient_found = FALSE;
2428 /* free to and newsgroup list */
2429 slist_free_strings(compose->to_list);
2430 g_slist_free(compose->to_list);
2431 compose->to_list = NULL;
2433 slist_free_strings(compose->newsgroup_list);
2434 g_slist_free(compose->newsgroup_list);
2435 compose->newsgroup_list = NULL;
2437 /* search header entries for to and newsgroup entries */
2438 for(list = compose->header_list; list; list = list->next) {
2441 header = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(((compose_headerentry *)list->data)->combo)->entry));
2442 entry = gtk_editable_get_chars(GTK_EDITABLE(((compose_headerentry *)list->data)->entry), 0, -1);
2444 if(entry[0] != '\0') {
2445 for(strptr = recipient_headers_mail; *strptr != NULL; strptr++) {
2446 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2447 compose->to_list = address_list_append(compose->to_list, entry);
2448 recipient_found = TRUE;
2451 for(strptr = recipient_headers_news; *strptr != NULL; strptr++) {
2452 if(!strcmp(header, (prefs_common.trans_hdr ? gettext(*strptr) : *strptr))) {
2453 compose->newsgroup_list = newsgroup_list_append(compose->newsgroup_list, entry);
2454 recipient_found = TRUE;
2460 return recipient_found;
2463 gint compose_send(Compose *compose)
2469 val = compose_queue(compose, &msgnum, &folder);
2471 alertpanel_error(_("Could not queue message for sending"));
2475 val = procmsg_send_message_queue(folder_item_fetch_msg(folder, msgnum));
2477 folder_item_remove_msg(folder, msgnum);
2478 folderview_update_item(folder, TRUE);
2484 #if 0 /* compose restructure */
2485 gint compose_send(Compose *compose)
2487 gchar tmp[MAXPATHLEN + 1];
2489 static gboolean lock = FALSE;
2493 g_return_val_if_fail(compose->account != NULL, -1);
2494 g_return_val_if_fail(compose->orig_account != NULL, -1);
2498 if(!compose_check_for_valid_recipient(compose)) {
2499 alertpanel_error(_("Recipient is not specified."));
2504 /* write to temporary file */
2505 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%d",
2506 get_rc_dir(), G_DIR_SEPARATOR, (gint)compose);
2508 if (prefs_common.linewrap_at_send)
2509 compose_wrap_line_all(compose);
2511 if (compose_write_to_file(compose, tmp, FALSE) < 0) {
2516 if (!compose->to_list && !compose->newsgroup_list) {
2517 g_warning(_("can't get recipient list."));
2523 if (compose->to_list) {
2526 #if 0 /* NEW COMPOSE GUI */
2527 if (compose->account->protocol != A_NNTP)
2528 ac = compose->account;
2529 else if (compose->orig_account->protocol != A_NNTP)
2530 ac = compose->orig_account;
2531 else if (cur_account && cur_account->protocol != A_NNTP)
2534 ac = compose_current_mail_account();
2542 ac = compose->account;
2544 ok = send_message(tmp, ac, compose->to_list);
2545 statusbar_pop_all();
2548 if (ok == 0 && compose->newsgroup_list) {
2551 if (compose->account->protocol == A_NNTP)
2552 folder = FOLDER(compose->account->folder);
2554 folder = FOLDER(compose->orig_account->folder);
2556 ok = news_post(folder, tmp);
2558 alertpanel_error(_("Error occurred while posting the message to %s ."),
2559 compose->account->nntp_server);
2566 /* queue message if failed to send */
2568 if (prefs_common.queue_msg) {
2573 _("Error occurred while sending the message.\n"
2574 "Put this message into queue folder?"),
2575 _("OK"), _("Cancel"), NULL);
2576 if (G_ALERTDEFAULT == val) {
2577 ok = compose_queue(compose, tmp);
2579 alertpanel_error(_("Can't queue the message."));
2582 alertpanel_error(_("Error occurred while sending the message."));
2584 if (compose->mode == COMPOSE_REEDIT) {
2585 compose_remove_reedit_target(compose);
2586 if (compose->targetinfo)
2587 folderview_update_item
2588 (compose->targetinfo->folder, TRUE);
2592 /* save message to outbox */
2593 if (ok == 0 && prefs_common.savemsg) {
2594 if (compose_save_to_outbox(compose, tmp) < 0)
2596 (_("Can't save the message to outbox."));
2605 static gboolean compose_use_attach(Compose *compose) {
2606 return(gtk_clist_get_row_data(GTK_CLIST(compose->attach_clist), 0) != NULL);
2609 static gint compose_write_to_file(Compose *compose, const gchar *file,
2616 const gchar *out_codeset;
2617 EncodingType encoding;
2619 if ((fp = fopen(file, "a+")) == NULL) {
2620 FILE_OP_ERROR(file, "fopen");
2624 /* chmod for security */
2625 if (change_file_mode_rw(fp, file) < 0) {
2626 FILE_OP_ERROR(file, "chmod");
2627 g_warning(_("can't change file mode\n"));
2630 /* get all composed text */
2631 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2632 len = strlen(chars);
2633 if (is_ascii_str(chars)) {
2634 buf = g_strdup(chars);
2635 out_codeset = CS_US_ASCII;
2636 encoding = ENC_7BIT;
2638 const gchar *src_codeset;
2640 out_codeset = conv_get_outgoing_charset_str();
2641 if (!strcasecmp(out_codeset, CS_US_ASCII))
2642 out_codeset = CS_ISO_8859_1;
2643 encoding = procmime_get_encoding_for_charset(out_codeset);
2645 src_codeset = conv_get_current_charset_str();
2646 /* if current encoding is US-ASCII, set it the same as
2647 outgoing one to prevent code conversion failure */
2648 if (!strcasecmp(src_codeset, CS_US_ASCII))
2649 src_codeset = out_codeset;
2651 debug_print("src encoding = %s, out encoding = %s, transfer encoding = %s\n",
2652 src_codeset, out_codeset, procmime_get_encoding_str(encoding));
2654 buf = conv_codeset_strdup(chars, src_codeset, out_codeset);
2659 alertpanel_error(_("Can't convert the codeset of the message."));
2666 if (compose_write_headers
2667 (compose, fp, out_codeset, encoding, is_draft) < 0) {
2668 g_warning(_("can't write headers\n"));
2675 if (compose_use_attach(compose)) {
2677 /* This prolog message is ignored by mime software and
2678 * because it would make our signing/encryption task
2679 * tougher, we don't emit it in that case */
2680 if (!compose->use_signing && !compose->use_encryption)
2682 fputs("This is a multi-part message in MIME format.\n", fp);
2684 fprintf(fp, "\n--%s\n", compose->boundary);
2685 fprintf(fp, "Content-Type: text/plain; charset=%s\n",
2687 fprintf(fp, "Content-Transfer-Encoding: %s\n",
2688 procmime_get_encoding_str(encoding));
2694 if (encoding == ENC_BASE64) {
2695 gchar outbuf[B64_BUFFSIZE];
2698 for (i = 0; i < len; i += B64_LINE_SIZE) {
2699 l = MIN(B64_LINE_SIZE, len - i);
2700 to64frombits(outbuf, buf + i, l);
2704 } else if (fwrite(buf, sizeof(gchar), len, fp) != len) {
2705 FILE_OP_ERROR(file, "fwrite");
2713 if (compose_use_attach(compose))
2714 compose_write_attach(compose, fp);
2716 if (fclose(fp) == EOF) {
2717 FILE_OP_ERROR(file, "fclose");
2723 if (compose->use_signing) {
2724 if (rfc2015_sign(file, compose->account) < 0) {
2729 if (compose->use_encryption) {
2730 if (rfc2015_encrypt(file, compose->to_list) < 0) {
2735 #endif /* USE_GPGME */
2740 static gint compose_write_body_to_file(Compose *compose, const gchar *file)
2746 if ((fp = fopen(file, "w")) == NULL) {
2747 FILE_OP_ERROR(file, "fopen");
2751 /* chmod for security */
2752 if (change_file_mode_rw(fp, file) < 0) {
2753 FILE_OP_ERROR(file, "chmod");
2754 g_warning(_("can't change file mode\n"));
2757 chars = gtk_editable_get_chars(GTK_EDITABLE(compose->text), 0, -1);
2760 len = strlen(chars);
2761 if (fwrite(chars, sizeof(gchar), len, fp) != len) {
2762 FILE_OP_ERROR(file, "fwrite");
2771 if (fclose(fp) == EOF) {
2772 FILE_OP_ERROR(file, "fclose");
2779 static gint compose_save_to_outbox(Compose *compose, const gchar *file)
2786 debug_print(_("saving sent message...\n"));
2788 outbox = folder_get_default_outbox();
2789 path = folder_item_get_path(outbox);
2790 if (!is_dir_exist(path))
2791 make_dir_hier(path);
2793 folder_item_scan(outbox);
2794 if ((num = folder_item_add_msg(outbox, file, FALSE)) < 0) {
2796 g_warning(_("can't save message\n"));
2800 if ((fp = procmsg_open_mark_file(path, TRUE)) == NULL)
2801 g_warning(_("can't open mark file\n"));
2805 newmsginfo.msgnum = num;
2806 newmsginfo.flags.perm_flags = 0;
2807 newmsginfo.flags.tmp_flags = 0;
2808 procmsg_write_flags(&newmsginfo, fp);
2816 static gint compose_remove_reedit_target(Compose *compose)
2819 MsgInfo *msginfo = compose->targetinfo;
2821 g_return_val_if_fail(compose->mode == COMPOSE_REEDIT, -1);
2822 if (!msginfo) return -1;
2824 item = msginfo->folder;
2825 g_return_val_if_fail(item != NULL, -1);
2827 folder_item_scan(item);
2828 if (procmsg_msg_exist(msginfo) &&
2829 (item->stype == F_DRAFT || item->stype == F_QUEUE)) {
2830 if (folder_item_remove_msg(item, msginfo->msgnum) < 0) {
2831 g_warning(_("can't remove the old message\n"));
2839 static gint compose_queue(Compose *compose, gint *msgnum, FolderItem **item)
2842 gchar *tmpfilename, *queue_path;
2845 gchar buf[BUFFSIZE];
2847 static gboolean lock = FALSE;
2848 PrefsAccount *mailac = NULL, *newsac = NULL;
2850 debug_print(_("queueing message...\n"));
2851 g_return_val_if_fail(compose->account != NULL, -1);
2852 g_return_val_if_fail(compose->orig_account != NULL, -1);
2856 if(!compose_check_for_valid_recipient(compose)) {
2857 alertpanel_error(_("Recipient is not specified."));
2862 if (!compose->to_list && !compose->newsgroup_list) {
2863 g_warning(_("can't get recipient list."));
2864 unlink(tmpfilename);
2869 if (prefs_common.linewrap_at_send)
2870 compose_wrap_line_all(compose);
2872 /* write to temporary file */
2873 tmpfilename = g_strdup_printf("%s%cqueue.%d", g_get_tmp_dir(),
2874 G_DIR_SEPARATOR, (gint)compose);
2875 if ((fp = fopen(tmpfilename, "w")) == NULL) {
2876 FILE_OP_ERROR(tmpfilename, "fopen");
2877 g_free(tmpfilename);
2880 if (change_file_mode_rw(fp, tmpfilename) < 0) {
2881 FILE_OP_ERROR(tmpfilename, "chmod");
2882 g_warning(_("can't change file mode\n"));
2885 if(compose->to_list) {
2886 if (compose->account->protocol != A_NNTP)
2887 mailac = compose->account;
2888 else if (compose->orig_account->protocol != A_NNTP)
2889 mailac = compose->orig_account;
2890 else if (cur_account && cur_account->protocol != A_NNTP)
2891 mailac = cur_account;
2892 else if (!(mailac = compose_current_mail_account())) {
2893 unlink(tmpfilename);
2895 alertpanel_error(_("No account for sending mails available!"));
2900 if(compose->newsgroup_list) {
2901 if (compose->account->protocol == A_NNTP)
2902 newsac = compose->account;
2903 else if(!(newsac = compose->orig_account) || (newsac->protocol != A_NNTP)) {
2904 unlink(tmpfilename);
2906 alertpanel_error(_("No account for posting news available!"));
2911 /* queueing variables */
2912 fprintf(fp, "AF:\n");
2913 fprintf(fp, "NF:0\n");
2914 fprintf(fp, "PS:10\n");
2915 fprintf(fp, "SRH:1\n");
2916 fprintf(fp, "SFN:\n");
2917 fprintf(fp, "DSR:\n");
2919 fprintf(fp, "MID:<%s>\n", compose->msgid);
2921 fprintf(fp, "MID:\n");
2922 fprintf(fp, "CFG:\n");
2923 fprintf(fp, "PT:0\n");
2924 fprintf(fp, "S:%s\n", compose->account->address);
2925 fprintf(fp, "RQ:\n");
2927 fprintf(fp, "SSV:%s\n", mailac->smtp_server);
2929 fprintf(fp, "SSV:\n");
2931 fprintf(fp, "NSV:%s\n", newsac->nntp_server);
2933 fprintf(fp, "NSV:\n");
2934 fprintf(fp, "SSH:\n");
2935 /* write recepient list */
2937 if(compose->to_list) {
2938 fprintf(fp, "<%s>", (gchar *)compose->to_list->data);
2939 for (cur = compose->to_list->next; cur != NULL; cur = cur->next)
2940 fprintf(fp, ",<%s>", (gchar *)cur->data);
2943 /* write newsgroup list */
2945 if(compose->newsgroup_list) {
2946 fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data);
2947 for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next)
2948 fprintf(fp, ",%s", (gchar *)cur->data);
2951 /* Sylpheed account IDs */
2953 fprintf(fp, "MAID:%d\n", mailac->account_id);
2956 fprintf(fp, "NAID:%d\n", newsac->account_id);
2961 if (compose_write_to_file(compose, tmpfilename, FALSE) < 0) {
2962 unlink(tmpfilename);
2968 queue = folder_get_default_queue();
2970 folder_item_scan(queue);
2971 queue_path = folder_item_get_path(queue);
2972 if (!is_dir_exist(queue_path))
2973 make_dir_hier(queue_path);
2974 if ((num = folder_item_add_msg(queue, tmpfilename, TRUE)) < 0) {
2975 g_warning(_("can't queue the message\n"));
2976 unlink(tmpfilename);
2977 g_free(tmpfilename);
2981 g_free(tmpfilename);
2983 if (compose->mode == COMPOSE_REEDIT) {
2984 compose_remove_reedit_target(compose);
2985 if (compose->targetinfo &&
2986 compose->targetinfo->folder != queue)
2987 folderview_update_item
2988 (compose->targetinfo->folder, TRUE);
2991 if ((fp = procmsg_open_mark_file(queue_path, TRUE)) == NULL)
2992 g_warning(_("can't open mark file\n"));
2996 newmsginfo.msgnum = num;
2997 newmsginfo.flags.perm_flags = 0;
2998 newmsginfo.flags.tmp_flags = 0;
2999 procmsg_write_flags(&newmsginfo, fp);
3004 folder_item_scan(queue);
3005 folderview_update_item(queue, TRUE);
3007 if((msgnum != NULL) && (item != NULL)) {
3015 static void compose_write_attach(Compose *compose, FILE *fp)
3018 GtkCList *clist = GTK_CLIST(compose->attach_clist);
3021 gchar filename[BUFFSIZE];
3024 for (row = 0; (ainfo = gtk_clist_get_row_data(clist, row)) != NULL;
3026 if ((attach_fp = fopen(ainfo->file, "r")) == NULL) {
3027 g_warning(_("Can't open file %s\n"), ainfo->file);
3031 fprintf(fp, "\n--%s\n", compose->boundary);
3033 if (!strcmp2(ainfo->content_type, "message/rfc822")) {
3034 fprintf(fp, "Content-Type: %s\n", ainfo->content_type);
3035 fprintf(fp, "Content-Disposition: inline\n");
3037 conv_encode_header(filename, sizeof(filename),
3039 fprintf(fp, "Content-Type: %s;\n"
3041 ainfo->content_type, filename);
3042 fprintf(fp, "Content-Disposition: attachment;\n"
3043 " filename=\"%s\"\n", filename);
3046 fprintf(fp, "Content-Transfer-Encoding: %s\n\n",
3047 procmime_get_encoding_str(ainfo->encoding));
3049 if (ainfo->encoding == ENC_7BIT) {
3050 gchar buf[BUFFSIZE];
3052 while (fgets(buf, sizeof(buf), attach_fp) != NULL) {
3057 gchar inbuf[B64_LINE_SIZE], outbuf[B64_BUFFSIZE];
3059 while ((len = fread(inbuf, sizeof(gchar),
3060 B64_LINE_SIZE, attach_fp))
3062 to64frombits(outbuf, inbuf, B64_LINE_SIZE);
3066 if (len > 0 && feof(attach_fp)) {
3067 to64frombits(outbuf, inbuf, len);
3076 fprintf(fp, "\n--%s--\n", compose->boundary);
3079 #define IS_IN_CUSTOM_HEADER(header) \
3080 (compose->account->add_customhdr && \
3081 custom_header_find(compose->account->customhdr_list, header) != NULL)
3083 static gint compose_write_headers_from_headerlist(Compose *compose,
3087 gchar buf[BUFFSIZE];
3088 gchar *str, *header_w_colon, *trans_hdr;
3089 gboolean first_address;
3091 compose_headerentry *headerentry;
3093 if (IS_IN_CUSTOM_HEADER(header)) {
3097 debug_print(_("Writing %s-header\n"), header);
3099 header_w_colon = g_strconcat(header, ":", NULL);
3100 trans_hdr = (prefs_common.trans_hdr ? gettext(header_w_colon) : header_w_colon);
3102 first_address = TRUE;
3103 for(list = compose->header_list; list; list = list->next) {
3104 headerentry = ((compose_headerentry *)list->data);
3105 if(!strcmp(trans_hdr, gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(headerentry->combo)->entry)))) {
3106 str = gtk_entry_get_text(GTK_ENTRY(headerentry->entry));
3107 Xstrdup_a(str, str, return -1);
3109 if(str[0] != '\0') {
3110 compose_convert_header
3111 (buf, sizeof(buf), str,
3112 strlen(header) + 2);
3114 fprintf(fp, "%s: ", header);
3115 first_address = FALSE;
3119 fprintf(fp, "%s", buf);
3123 if(!first_address) {
3127 g_free(header_w_colon);
3132 static gint compose_write_headers(Compose *compose, FILE *fp,
3133 const gchar *charset, EncodingType encoding,
3136 gchar buf[BUFFSIZE];
3138 /* struct utsname utsbuf; */
3140 g_return_val_if_fail(fp != NULL, -1);
3141 g_return_val_if_fail(charset != NULL, -1);
3142 g_return_val_if_fail(compose->account != NULL, -1);
3143 g_return_val_if_fail(compose->account->address != NULL, -1);
3146 if (compose->account->add_date) {
3147 get_rfc822_date(buf, sizeof(buf));
3148 fprintf(fp, "Date: %s\n", buf);
3152 if (!IS_IN_CUSTOM_HEADER("From")) {
3153 if (compose->account->name && *compose->account->name) {
3154 compose_convert_header
3155 (buf, sizeof(buf), compose->account->name,
3157 fprintf(fp, "From: %s <%s>\n",
3158 buf, compose->account->address);
3160 fprintf(fp, "From: %s\n", compose->account->address);
3163 slist_free_strings(compose->to_list);
3164 g_slist_free(compose->to_list);
3165 compose->to_list = NULL;
3168 compose_write_headers_from_headerlist(compose, fp, "To");
3169 #if 0 /* NEW COMPOSE GUI */
3170 if (compose->use_to) {
3171 str = gtk_entry_get_text(GTK_ENTRY(compose->to_entry));
3173 Xstrdup_a(str, str, return -1);
3176 compose->to_list = address_list_append
3177 (compose->to_list, str);
3178 if (!IS_IN_CUSTOM_HEADER("To")) {
3179 compose_convert_header
3180 (buf, sizeof(buf), str,
3182 fprintf(fp, "To: %s\n", buf);
3188 slist_free_strings(compose->newsgroup_list);
3189 g_slist_free(compose->newsgroup_list);
3190 compose->newsgroup_list = NULL;
3193 compose_write_headers_from_headerlist(compose, fp, "Newsgroups");
3194 #if 0 /* NEW COMPOSE GUI */
3195 str = gtk_entry_get_text(GTK_ENTRY(compose->newsgroups_entry));
3197 Xstrdup_a(str, str, return -1);
3201 compose->newsgroup_list =
3202 newsgroup_list_append(compose->newsgroup_list,
3204 if (!IS_IN_CUSTOM_HEADER("Newsgroups")) {
3205 compose_convert_header(buf, sizeof(buf), str,
3206 strlen("Newsgroups: "));
3207 fprintf(fp, "Newsgroups: %s\n", buf);
3213 compose_write_headers_from_headerlist(compose, fp, "Cc");
3214 #if 0 /* NEW COMPOSE GUI */
3215 if (compose->use_cc) {
3216 str = gtk_entry_get_text(GTK_ENTRY(compose->cc_entry));
3218 Xstrdup_a(str, str, return -1);
3221 compose->to_list = address_list_append
3222 (compose->to_list, str);
3223 if (!IS_IN_CUSTOM_HEADER("Cc")) {
3224 compose_convert_header
3225 (buf, sizeof(buf), str,
3227 fprintf(fp, "Cc: %s\n", buf);
3234 compose_write_headers_from_headerlist(compose, fp, "Bcc");
3235 #if 0 /* NEW COMPOSE GUI */
3236 if (compose->use_bcc) {
3237 str = gtk_entry_get_text(GTK_ENTRY(compose->bcc_entry));
3239 Xstrdup_a(str, str, return -1);
3242 compose->to_list = address_list_append
3243 (compose->to_list, str);
3244 compose_convert_header(buf, sizeof(buf), str,
3246 fprintf(fp, "Bcc: %s\n", buf);
3251 if (!is_draft && !compose->to_list && !compose->newsgroup_list)
3255 str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
3256 if (*str != '\0' && !IS_IN_CUSTOM_HEADER("Subject")) {
3257 Xstrdup_a(str, str, return -1);