aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-message.c
diff options
context:
space:
mode:
authorBertrand Guiheneuf <bertrand@src.gnome.org>1999-05-21 00:37:03 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-05-21 00:37:03 +0800
commit1cf9ad83368e754a5b8072f3ed820785609eb709 (patch)
tree5985f6c6444b0bb89df1b99c3787d4d6312c7cc4 /camel/camel-mime-message.c
parent429847f57bdfa7955db50ea9fc9e2cecdb5ab081 (diff)
downloadgsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar.gz
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar.bz2
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar.lz
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar.xz
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.tar.zst
gsoc2013-evolution-1cf9ad83368e754a5b8072f3ed820785609eb709.zip
sync
svn path=/trunk/; revision=935
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r--camel/camel-mime-message.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c
index 5f7689eab5..c561b89fee 100644
--- a/camel/camel-mime-message.c
+++ b/camel/camel-mime-message.c
@@ -491,14 +491,21 @@ camel_mime_message_get_message_number (CamelMimeMessage *mime_message)
#define WHPTF gmime_write_header_pair_to_file
-
+static void
+_write_recipients_to_file (CamelDataWrapper *data_wrapper, FILE *file)
+{
+
+}
static void
-_write_to_file(CamelDataWrapper *data_wrapper, FILE *file)
+_write_to_file (CamelDataWrapper *data_wrapper, FILE *file)
{
CamelMimeMessage *mm = CAMEL_MIME_MESSAGE (data_wrapper);
+ WHPTF (file, "From", mm->from);
+ WHPTF (file, "Reply-To", mm->reply_to);
WHPTF (file, "Date", mm->received_date);
+ WHPTF (file, "Subject", mm->subject);
CAMEL_DATA_WRAPPER_CLASS (parent_class)->write_to_file (data_wrapper, file);
}