aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-10-24 04:28:56 +0800
committerMilan Crha <mcrha@redhat.com>2009-10-24 04:28:56 +0800
commita952dca522c1e1e9f7d883dfb67d5b444d4dd649 (patch)
tree2549c857e9731ef4ecb96f8e46fc59b4ac2888be /plugins
parent35d40887f0fb15d335f6cf206fc2526ee72def1b (diff)
downloadgsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar.gz
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar.bz2
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar.lz
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar.xz
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.tar.zst
gsoc2013-evolution-a952dca522c1e1e9f7d883dfb67d5b444d4dd649.zip
Bug #575208 - Use complete template message with all attachments
Diffstat (limited to 'plugins')
-rw-r--r--plugins/templates/templates.c70
1 files changed, 9 insertions, 61 deletions
diff --git a/plugins/templates/templates.c b/plugins/templates/templates.c
index f6832695d7..9e95b4f9dc 100644
--- a/plugins/templates/templates.c
+++ b/plugins/templates/templates.c
@@ -432,65 +432,13 @@ e_plugin_lib_get_configure_widget (EPlugin *epl)
return hbox;
}
-/* borrowed from plugins/mail-to-task/ */
-static gchar *
-get_content (CamelMimeMessage *message)
-{
- CamelDataWrapper *content;
- CamelStream *mem;
- CamelContentType *type;
- CamelMimePart *mime_part = CAMEL_MIME_PART (message);
- gchar *str, *convert_str = NULL;
- gsize bytes_read, bytes_written;
- gint count = 2;
-
- content = camel_medium_get_content_object ((CamelMedium *) message);
- if (!content)
- return NULL;
-
- /* Get non-multipart content from multipart message. */
- while (CAMEL_IS_MULTIPART (content) && count > 0) {
- mime_part = camel_multipart_get_part (CAMEL_MULTIPART (content), 0);
- content = camel_medium_get_content_object (CAMEL_MEDIUM (mime_part));
- count--;
- }
-
- if (!mime_part)
- return NULL;
-
- type = camel_mime_part_get_content_type (mime_part);
- if (!camel_content_type_is (type, "text", "plain"))
- return NULL;
-
- mem = camel_stream_mem_new ();
- camel_data_wrapper_decode_to_stream (content, mem);
-
- str = g_strndup ((const gchar *)((CamelStreamMem *) mem)->buffer->data, ((CamelStreamMem *) mem)->buffer->len);
- camel_object_unref (mem);
-
- /* convert to UTF-8 string */
- if (str && content->mime_type->params && content->mime_type->params->value) {
- convert_str = g_convert (str, strlen (str),
- "UTF-8", content->mime_type->params->value,
- &bytes_read, &bytes_written, NULL);
- }
-
- if (convert_str) {
- g_free (str);
- return convert_str;
- }
- else
- return str;
-
-}
-
static void
create_new_message (CamelFolder *folder, const gchar *uid, CamelMimeMessage *message, gpointer data)
{
GtkAction *action = data;
CamelMimeMessage *new, *template;
struct _camel_header_raw *header;
- gchar *cont;
+ CamelStream *mem;
g_return_if_fail (data != NULL);
g_return_if_fail (message != NULL);
@@ -501,6 +449,14 @@ create_new_message (CamelFolder *folder, const gchar *uid, CamelMimeMessage *mes
/* The new message we are creating */
new = camel_mime_message_new();
+ /* make the exact copy of the template message, with all
+ its attachments and message structure */
+ mem = camel_stream_mem_new ();
+ camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (template), mem);
+ camel_stream_reset (mem);
+ camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (new), mem);
+ camel_object_unref (mem);
+
/* Add the headers from the message we are replying to, so CC and that
* stuff is preserved. */
header = ((CamelMimePart *)message)->headers;
@@ -513,11 +469,6 @@ create_new_message (CamelFolder *folder, const gchar *uid, CamelMimeMessage *mes
header = header->next;
}
- camel_mime_part_set_encoding((CamelMimePart *) new, CAMEL_TRANSFER_ENCODING_8BIT);
-
- /* Get the template content. */
- cont = get_content (template);
-
/* Set the To: field to the same To: field of the message we are replying to. */
camel_mime_message_set_recipients (new, CAMEL_RECIPIENT_TYPE_TO,
camel_mime_message_get_from (message));
@@ -529,9 +480,6 @@ create_new_message (CamelFolder *folder, const gchar *uid, CamelMimeMessage *mes
camel_mime_message_set_recipients (new, CAMEL_RECIPIENT_TYPE_BCC,
camel_mime_message_get_recipients (template, CAMEL_RECIPIENT_TYPE_BCC));
- camel_mime_part_set_content((CamelMimePart *)new,
- cont, (gint) g_utf8_strlen(cont, -1), "text");
-
/* Create the composer */
em_utils_edit_message (new, folder);