aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-12-22 03:50:09 +0800
committerDan Winship <danw@src.gnome.org>2000-12-22 03:50:09 +0800
commitb1ed87891b6d5df213ac2168572d46ee1924f9ff (patch)
tree2dde5702c0cf51c83ccaadc513f4d98ae1767f9e /camel/ChangeLog
parentfbf92961aa7fd925a7283ccd134739363d3cb9b9 (diff)
downloadgsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.gz
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.bz2
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.lz
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.xz
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.zst
gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.zip
New CamelFolderSearch subclass that just reimplements body_contains (using
* providers/imap/camel-imap-search.c: New CamelFolderSearch subclass that just reimplements body_contains (using the IMAP SEARCH command). All other kinds of searching are done against the local summary. * providers/imap/camel-imap-folder.c (imap_search_by_expression): Use a CamelImapSearch to do searching. * providers/imap/camel-imap-utils.c (imap_translate_sexp, etc): No longer needed. * camel-folder-search.h: Add missing CAMEL_FOLDER_SEARCH_TYPE #define svn path=/trunk/; revision=7119
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 272f058ad4..a13109fe80 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,21 @@
2000-12-21 Dan Winship <danw@helixcode.com>
+ * providers/imap/camel-imap-search.c: New CamelFolderSearch
+ subclass that just reimplements body_contains (using the IMAP
+ SEARCH command). All other kinds of searching are done against the
+ local summary.
+
+ * providers/imap/camel-imap-folder.c (imap_search_by_expression):
+ Use a CamelImapSearch to do searching.
+
+ * providers/imap/camel-imap-utils.c (imap_translate_sexp, etc): No
+ longer needed.
+
+ * camel-folder-search.h: Add missing CAMEL_FOLDER_SEARCH_TYPE
+ #define
+
+2000-12-21 Dan Winship <danw@helixcode.com>
+
* camel-stream-buffer.c (camel_stream_buffer_gets): Update the
doc comment: since it always NUL-terminates the buffer, it reads
at most @max-1 bytes, not @max.