diff options
author | NotZed <notzed@zedzone.helixcode.com> | 2000-02-14 13:39:02 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-02-14 13:39:02 +0800 |
commit | aeaa2ed70043e607e1da431d8f33726590f4c83b (patch) | |
tree | 6b017340f52b51b3eb55c0c847089ec5ca505263 /camel/providers/mbox/camel-mbox-folder.h | |
parent | ddcfc699c72ee253307f2939492eb469beba3834 (diff) | |
download | gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.gz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.bz2 gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.lz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.xz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.zst gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.zip |
New file, implements the search api for mbox folders.
2000-02-13 NotZed <notzed@zedzone.helixcode.com>
* providers/mbox/camel-mbox-search.c: New file, implements the
search api for mbox folders.
* providers/mbox/Makefile.am: Link with ibex.
* camel-folder.c (camel_folder_has_search_capability): Api
additions.
(camel_folder_search_by_expression): Ditto.
2000-02-12 NotZed <notzed@zedzone.helixcode.com>
* providers/mbox/camel-mbox-folder.c (_set_name): Setup index
filename as well.
(_init_with_store): Init index filename. Hmm, none of these
names ever seem to get free'd (FIXME?)
* providers/mbox/camel-mbox-folder.h: Add index file name.
2000-02-12 NotZed <notzed@helixcode.com>
* camel-folder.h: Add folder search functions.
** Created ChangeLog just for camel **
- refer to ../ChangeLog for changes prior to this date.
svn path=/trunk/; revision=1772
Diffstat (limited to 'camel/providers/mbox/camel-mbox-folder.h')
-rw-r--r-- | camel/providers/mbox/camel-mbox-folder.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-folder.h b/camel/providers/mbox/camel-mbox-folder.h index 9fdc765103..76288d5c3c 100644 --- a/camel/providers/mbox/camel-mbox-folder.h +++ b/camel/providers/mbox/camel-mbox-folder.h @@ -54,7 +54,8 @@ typedef struct { gchar *folder_file_path; /* contains the messages */ gchar *summary_file_path; /* contains the messages summary */ gchar *folder_dir_path; /* contains the subfolders */ - + gchar *index_file_path; /* index of body contents */ + CamelMboxSummary *internal_summary; /* internal summary object */ GList *uid_array; |