aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-03-17 17:23:49 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-03-17 17:23:49 +0800
commitbc5fc28e5b2e3602b186ee430d45c48c919ae9da (patch)
treeaac73e0cd1cac5beaf610e49773fd4fac98a4a5f /camel/providers
parentcf4811b131d3d791da98de338a477a452663d183 (diff)
downloadgsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar.gz
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar.bz2
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar.lz
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar.xz
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.tar.zst
gsoc2013-evolution-bc5fc28e5b2e3602b186ee430d45c48c919ae9da.zip
See bug #55618.
2004-03-17 Not Zed <NotZed@Ximian.com> * See bug #55618. * camel-disco-diary.c (camel_disco_diary_new): seek to the end of the file after we open it. c99 apparently says the file merely adds to the end of the file when you write, not that it is opened and positioned at the end of the file (linux's man pages are out of date). * camel-folder-summary.c (content_info_new): setup the content type as well, from the headers. * providers/imap/camel-imap-summary.c (camel_imap_summary_add_offline): copy size from the source info. svn path=/trunk/; revision=25096
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/imap/camel-imap-summary.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-summary.c b/camel/providers/imap/camel-imap-summary.c
index bebc672866..6251f8b85b 100644
--- a/camel/providers/imap/camel-imap-summary.c
+++ b/camel/providers/imap/camel-imap-summary.c
@@ -238,6 +238,8 @@ camel_imap_summary_add_offline (CamelFolderSummary *summary, const char *uid,
tag = tag->next;
}
+ mi->size = info->size;
+
/* Set uid and add to summary */
camel_message_info_set_uid (mi, g_strdup (uid));
camel_folder_summary_add (summary, mi);