diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-08-07 10:39:28 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-07 10:39:28 +0800 |
commit | 83b2e9c05c490db58c558c17e39c59ec2a6915eb (patch) | |
tree | 603f31eb8b8583a358083e040139b32b47e3ab9d /camel/ChangeLog | |
parent | 7216ef812939353bc70951c2a46b272f62a99372 (diff) | |
download | gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar.gz gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar.bz2 gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar.lz gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar.xz gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.tar.zst gsoc2013-evolution-83b2e9c05c490db58c558c17e39c59ec2a6915eb.zip |
Modify to take a headers_only argument which will then only fetch message
2001-08-06 Jeffrey Stedfast <fejj@ximian.com>
* providers/pop3/camel-pop3-folder.c (pop3_get_message_stream):
Modify to take a headers_only argument which will then only fetch
message headers.
(pop3_generate_uids): Pass in TRUE for headers_only.
(pop3_get_message): Pass in FALSE for headers_only and move the
camel_operation() stuff out of get_message_stream and in to here
instead.
(pop3_generate_uids): We also need to be using i+ 1 as the id
since we are starting at 0.
svn path=/trunk/; revision=11722
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 219209bd82..2f331d6696 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,6 +1,18 @@ 2001-08-06 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-folder.c (pop3_get_message_stream): + Modify to take a headers_only argument which will then only fetch + message headers. + (pop3_generate_uids): Pass in TRUE for headers_only. + (pop3_get_message): Pass in FALSE for headers_only and move the + camel_operation() stuff out of get_message_stream and in to here + instead. + (pop3_generate_uids): We also need to be using i+ 1 as the id + since we are starting at 0. + +2001-08-06 Jeffrey Stedfast <fejj@ximian.com> + + * providers/pop3/camel-pop3-folder.c (pop3_get_message_stream): New internal function to get a message stream by message sequence id (so that we can share code between pop3_get_message and pop3_generate_uids). |