diff options
author | bertrand <bertrand@helixcode.com> | 2000-03-04 03:42:47 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-03-04 03:42:47 +0800 |
commit | c343245386b1aaab492357963776fe82a5c80796 (patch) | |
tree | ea71e7ed6a5a299a7b48727b0b14493896e35b36 /camel/providers | |
parent | 1fdf94dc2046d9f382d84324dc8674e719c1a57e (diff) | |
download | gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar.gz gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar.bz2 gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar.lz gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar.xz gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.tar.zst gsoc2013-evolution-c343245386b1aaab492357963776fe82a5c80796.zip |
in the case of images, put the content object output stream in the url.
2000-03-03 bertrand <bertrand@helixcode.com>
* camel-formatter.c (handle_image): in the case
of images, put the content object output stream
in the url. This allows the message browser
to show inline images.
svn path=/trunk/; revision=2021
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/mbox/camel-mbox-folder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-folder.c b/camel/providers/mbox/camel-mbox-folder.c index d188cf778e..5b37bee6e7 100644 --- a/camel/providers/mbox/camel-mbox-folder.c +++ b/camel/providers/mbox/camel-mbox-folder.c @@ -860,7 +860,6 @@ static void _append_message (CamelFolder *folder, CamelMimeMessage *message, CamelException *ex) { CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder); - //guint new_msg_number; CamelStream *output_stream; guint32 tmp_file_size; guint32 next_uid; @@ -873,6 +872,7 @@ _append_message (CamelFolder *folder, CamelMimeMessage *message, CamelException CAMEL_LOG_FULL_DEBUG ("Entering CamelMboxFolder::append_message\n"); tmp_message_filename = g_strdup_printf ("%s.tmp", mbox_folder->folder_file_path); + /* write the message itself */ output_stream = camel_stream_fs_new_with_name (tmp_message_filename, CAMEL_STREAM_FS_WRITE); if (output_stream != NULL) { |