diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-22 03:50:09 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-22 03:50:09 +0800 |
commit | b1ed87891b6d5df213ac2168572d46ee1924f9ff (patch) | |
tree | 2dde5702c0cf51c83ccaadc513f4d98ae1767f9e /camel/providers/imap/Makefile.am | |
parent | fbf92961aa7fd925a7283ccd134739363d3cb9b9 (diff) | |
download | gsoc2013-evolution-b1ed87891b6d5df213ac2168572d46ee1924f9ff.tar.gz 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/providers/imap/Makefile.am')
-rw-r--r-- | camel/providers/imap/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/imap/Makefile.am b/camel/providers/imap/Makefile.am index 19646f1960..03dec12608 100644 --- a/camel/providers/imap/Makefile.am +++ b/camel/providers/imap/Makefile.am @@ -25,6 +25,7 @@ libcamelimap_la_SOURCES = \ camel-imap-command.c \ camel-imap-folder.c \ camel-imap-provider.c \ + camel-imap-search.c \ camel-imap-store.c \ camel-imap-summary.c \ camel-imap-utils.c @@ -33,6 +34,7 @@ libcamelimapinclude_HEADERS = \ camel-imap-auth.h \ camel-imap-command.h \ camel-imap-folder.h \ + camel-imap-search.h \ camel-imap-store.h \ camel-imap-stream.h \ camel-imap-summary.h \ |