diff options
author | Not Zed <NotZed@Ximian.com> | 2001-07-11 15:28:40 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-07-11 15:28:40 +0800 |
commit | 96496c1392cea9179b9bfbf2b6895e69a6dd13af (patch) | |
tree | e244cf9b9dfb4def14dfc9acf34bcb634d0b9a37 /camel/providers/local | |
parent | 50e64dee0a5c75d4a6a5df1c41bac37165f2f51b (diff) | |
download | gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar.gz gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar.bz2 gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar.lz gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar.xz gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.tar.zst gsoc2013-evolution-96496c1392cea9179b9bfbf2b6895e69a6dd13af.zip |
Create the messageinfo itself, so we can properly set the size.
2001-07-11 Not Zed <NotZed@Ximian.com>
* camel-filter-driver.c (camel_filter_driver_filter_mbox): Create
the messageinfo itself, so we can properly set the size.
* camel-movemail.c (camel_movemail_solaris): Write out the from
line between each message.
2001-07-10 Not Zed <NotZed@Ximian.com>
* providers/local/camel-local-summary.c (local_summary_add): Copy
the size across from the source message info if supplied.
* camel-stream-null.c: Added a 'written' member which keeps track
of how much has been written to the stream.
* camel-movemail.c (camel_movemail): If we have BROKEN_SPOOL
defined, then use the solaris movemail to quote from lines that
sendmail didn't.
(camel_movemail_solaris): Compile this in if BROKEN_SPOOL defined.
svn path=/trunk/; revision=10989
Diffstat (limited to 'camel/providers/local')
-rw-r--r-- | camel/providers/local/camel-local-summary.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/local/camel-local-summary.c b/camel/providers/local/camel-local-summary.c index 25cdf0d045..a1f1c1334b 100644 --- a/camel/providers/local/camel-local-summary.c +++ b/camel/providers/local/camel-local-summary.c @@ -393,6 +393,7 @@ local_summary_add(CamelLocalSummary *cls, CamelMimeMessage *msg, const CamelMess } mi->flags = mi->flags | (info->flags & 0xffff); + mi->size = info->size; } mi->flags &= ~(CAMEL_MESSAGE_FOLDER_NOXEV|CAMEL_MESSAGE_FOLDER_FLAGGED); xev = camel_local_summary_encode_x_evolution(cls, mi); |