aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-09-02 09:44:59 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-09-02 09:44:59 +0800
commit754164e503ba405f85d0ce5123b907a6c5809712 (patch)
tree7a183dd0d4373d9c78100776bdcb5d90f8b4d358 /mail/mail-ops.c
parenta029bb7982e6f00a84d5cf43f96188dac0be3c49 (diff)
downloadgsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar.gz
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar.bz2
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar.lz
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar.xz
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.tar.zst
gsoc2013-evolution-754164e503ba405f85d0ce5123b907a6c5809712.zip
Attach a callback to the postpone signal (send_to_url): Same (mail_reply):
2000-09-01 Jeffrey Stedfast <fejj@helixcode.com> * mail-callbacks.c (compose_msg): Attach a callback to the postpone signal (send_to_url): Same (mail_reply): Same (forward_msg): Same (composer_postpone_cb): Callback function for the postpone signal * mail-ops.c (mail_do_setup_outbox): New convenience function to load the Outbox folder (mail_do_setup_sentbox): Same, but for Sentbox. (do_send_mail): Now saves messages in Sentbox if sent successfully (mail_do_append_mail): New convenience async function for appending messages to a folder * component-factory.c: Added outbox_folder and sent_folder (owner_set_cb): Call our new convenience functions to load Outbox and Sentbox svn path=/trunk/; revision=5178
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c142
1 files changed, 130 insertions, 12 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 2a41177897..5b7690ae7f 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -344,11 +344,15 @@ do_send_mail (gpointer in_data, gpointer op_data, CamelException *ex)
/* now to save the message in Sentbox */
if (sentbox_folder) {
CamelMessageInfo *info;
+
+ mail_tool_camel_lock_up ();
info = g_new0 (CamelMessageInfo, 1);
info->flags = 0;
camel_folder_append_message (sentbox_folder, input->message, info, ex);
g_free (info);
+
+ mail_tool_camel_lock_down ();
}
}
@@ -398,6 +402,120 @@ mail_do_send_mail (const char *xport_uri,
mail_operation_queue (&op_send_mail, input, TRUE);
}
+/* ** APPEND MESSAGE TO FOLDER ******************************************** */
+
+typedef struct append_mail_input_s
+{
+ CamelFolder *folder;
+ CamelMimeMessage *message;
+ CamelMessageInfo *info;
+}
+append_mail_input_t;
+
+static gchar *describe_append_mail (gpointer in_data, gboolean gerund);
+static void setup_append_mail (gpointer in_data, gpointer op_data,
+ CamelException *ex);
+static void do_append_mail (gpointer in_data, gpointer op_data,
+ CamelException *ex);
+static void cleanup_append_mail (gpointer in_data, gpointer op_data,
+ CamelException *ex);
+
+static gchar *
+describe_append_mail (gpointer in_data, gboolean gerund)
+{
+ append_mail_input_t *input = (append_mail_input_t *) in_data;
+
+ if (gerund) {
+ if (input->message->subject && input->message->subject[0])
+ return g_strdup_printf (_("Appending \"%s\""),
+ input->message->subject);
+ else
+ return
+ g_strdup (_("Appending a message without a subject"));
+ } else {
+ if (input->message->subject && input->message->subject[0])
+ return g_strdup_printf (_("Appending \"%s\""),
+ input->message->subject);
+ else
+ return g_strdup (_("Appending a message without a subject"));
+ }
+}
+
+static void
+setup_append_mail (gpointer in_data, gpointer op_data, CamelException *ex)
+{
+ append_mail_input_t *input = (append_mail_input_t *) in_data;
+
+ if (!CAMEL_IS_MIME_MESSAGE (input->message)) {
+ camel_exception_set (ex, CAMEL_EXCEPTION_INVALID_PARAM,
+ "No message specified for append_mail operation.");
+ return;
+ }
+
+ if (!input->info) {
+ camel_exception_set (ex, CAMEL_EXCEPTION_INVALID_PARAM,
+ "No message info specified for append_mail operation.");
+ return;
+ }
+
+ if (!CAMEL_IS_FOLDER (input->folder)) {
+ camel_exception_set (ex, CAMEL_EXCEPTION_INVALID_PARAM,
+ "Bad done_folder specified for append_mail operation.");
+ return;
+ }
+
+ camel_object_ref (CAMEL_OBJECT (input->message));
+ camel_object_ref (CAMEL_OBJECT (input->folder));
+}
+
+static void
+do_append_mail (gpointer in_data, gpointer op_data, CamelException *ex)
+{
+ append_mail_input_t *input = (append_mail_input_t *) in_data;
+
+ camel_mime_message_set_date (input->message,
+ CAMEL_MESSAGE_DATE_CURRENT, 0);
+
+ mail_tool_camel_lock_up ();
+
+ /* now to save the message in the specified folder */
+ camel_folder_append_message (input->folder, input->message, input->info, ex);
+
+ mail_tool_camel_lock_down ();
+}
+
+static void
+cleanup_append_mail (gpointer in_data, gpointer op_data, CamelException *ex)
+{
+ append_mail_input_t *input = (append_mail_input_t *) in_data;
+
+ camel_object_unref (CAMEL_OBJECT (input->message));
+ camel_object_unref (CAMEL_OBJECT (input->folder));
+}
+
+static const mail_operation_spec op_append_mail = {
+ describe_append_mail,
+ 0,
+ setup_append_mail,
+ do_append_mail,
+ cleanup_append_mail
+};
+
+void
+mail_do_append_mail (CamelFolder *folder,
+ CamelMimeMessage *message,
+ CamelMessageInfo *info)
+{
+ append_mail_input_t *input;
+
+ input = g_new (append_mail_input_t, 1);
+ input->folder = folder;
+ input->message = message;
+ input->info = info;
+
+ mail_operation_queue (&op_append_mail, input, TRUE);
+}
+
/* ** EXPUNGE FOLDER ****************************************************** */
static gchar *describe_expunge_folder (gpointer in_data, gboolean gerund);
@@ -1712,11 +1830,11 @@ typedef struct edit_messages_data_s {
static gchar *describe_edit_messages (gpointer in_data, gboolean gerund);
static void setup_edit_messages (gpointer in_data, gpointer op_data,
- CamelException *ex);
+ CamelException *ex);
static void do_edit_messages (gpointer in_data, gpointer op_data,
- CamelException *ex);
+ CamelException *ex);
static void cleanup_edit_messages (gpointer in_data, gpointer op_data,
- CamelException *ex);
+ CamelException *ex);
static gchar *
describe_edit_messages (gpointer in_data, gboolean gerund)
@@ -1736,20 +1854,20 @@ static void
setup_edit_messages (gpointer in_data, gpointer op_data, CamelException *ex)
{
edit_messages_input_t *input = (edit_messages_input_t *) in_data;
-
+
if (!input->uids) {
camel_exception_set (ex, CAMEL_EXCEPTION_INVALID_PARAM,
/* doesn't need i18n */
"No UIDs specified to edit.");
return;
}
-
+
if (!CAMEL_IS_FOLDER (input->folder)) {
camel_exception_set (ex, CAMEL_EXCEPTION_INVALID_PARAM,
"No folder to fetch the messages from specified.");
return;
}
-
+
camel_object_ref (CAMEL_OBJECT (input->folder));
}
@@ -1758,21 +1876,21 @@ do_edit_messages (gpointer in_data, gpointer op_data, CamelException *ex)
{
edit_messages_input_t *input = (edit_messages_input_t *) in_data;
edit_messages_data_t *data = (edit_messages_data_t *) op_data;
-
+
int i;
-
+
data->messages = g_ptr_array_new ();
-
+
for (i = 0; i < input->uids->len; i++) {
CamelMimeMessage *message;
-
+
mail_tool_camel_lock_up ();
message = camel_folder_get_message (input->folder, input->uids->pdata[i], ex);
mail_tool_camel_lock_down ();
-
+
if (message)
g_ptr_array_add (data->messages, message);
-
+
g_free (input->uids->pdata[i]);
}
}