diff options
author | 6 <NotZed@Ximian.com> | 2001-09-27 05:30:19 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-27 05:30:19 +0800 |
commit | 765b48a3987909383d1c05d09ccb6bb700eef325 (patch) | |
tree | ff6ce52c57cb622b0643b3b9d517b8486a453334 /camel/ChangeLog | |
parent | e48a259382fdda16dd1a919b3f73612d9b5525fd (diff) | |
download | gsoc2013-evolution-765b48a3987909383d1c05d09ccb6bb700eef325.tar.gz gsoc2013-evolution-765b48a3987909383d1c05d09ccb6bb700eef325.tar.zst gsoc2013-evolution-765b48a3987909383d1c05d09ccb6bb700eef325.zip |
If we get a search error, just abort, dont try and fall back and copy to
2001-09-26 <NotZed@Ximian.com>
* camel-filter-driver.c (camel_filter_driver_filter_message): If
we get a search error, just abort, dont try and fall back and copy
to inbox.
(camel_filter_driver_filter_message): Make sure we ALWAYS use
exceptions for important things - like moving messages to inbox!
(camel_filter_driver_filter_message): If we have the source
folder, use camel_folder_set_message_flags rather then poking the
info directly, which skips changed events. This means filtering
immediate doesn't lose changed events.
(do_flag): Same here.
(do_colour): Same thing but using set_tag.
(do_score): Same again.
(camel_filter_driver_filter_folder): Use ~0 as the 'set' arg to
set_flags, just saves typing.
(open_folder): We cache folders that we couldn't open as well as
those ones we could. Use magic token FOLDER_INVALID =
(void *)~0 as the marker.
(close_folder): Handle FOLDER_INVALID case properly.
svn path=/trunk/; revision=13169
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index a28037b561..b4c552572b 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,24 @@ +2001-09-26 <NotZed@Ximian.com> + + * camel-filter-driver.c (camel_filter_driver_filter_message): If + we get a search error, just abort, dont try and fall back and copy + to inbox. + (camel_filter_driver_filter_message): Make sure we ALWAYS use + exceptions for important things - like moving messages to inbox! + (camel_filter_driver_filter_message): If we have the source + folder, use camel_folder_set_message_flags rather then poking the + info directly, which skips changed events. This means filtering + immediate doesn't lose changed events. + (do_flag): Same here. + (do_colour): Same thing but using set_tag. + (do_score): Same again. + (camel_filter_driver_filter_folder): Use ~0 as the 'set' arg to + set_flags, just saves typing. + (open_folder): We cache folders that we couldn't open as well as + those ones we could. Use magic token FOLDER_INVALID = + (void *)~0 as the marker. + (close_folder): Handle FOLDER_INVALID case properly. + 2001-09-26 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-message.c |