aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index ce8fbb2673..662881695b 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -2,6 +2,8 @@
* providers/pop3/camel-pop3-folder.c (pop3_get_message_stream):
Set the total bytes expected to 0 if the response is empty too.
+ (pop3_refresh_info): Return of there was an error generating pop3
+ uids.
* camel-mime-utils.c (header_raw_check_mailing_list): regfree the
pattern before continue'ing. This was showing up quite a bit under
ttore Perazzoli <ettore@helixcode.com> * * Copyright (C) 2000 Helix Code, Inc. */ #include <Bonobo.h> module GNOME { module Evolution { interface Shell; struct FolderType { string name; string icon_name; }; typedef sequence<FolderType> FolderTypeList; interface ShellComponentListener; interface ShellComponent : Bonobo::Unknown { readonly attribute FolderTypeList supported_types; /* FIXME: Can we use an attribute here? */ exception AlreadyOwned {}; void setOwner (in Shell shell, in string evolution_homedir) raises (AlreadyOwned); exception NotOwned {}; void unsetOwner () raises (NotOwned); /* FIXME: We might want more exceptions here. */ exception NotFound {}; exception UnsupportedType {}; exception InternalError {}; Bonobo::Control createView (in string physical_uri, in string type) raises (NotFound, UnsupportedType, InternalError); exception Busy {}; void addFolderAsync (in ShellComponentListener listener, in string physical_uri, in string type) raises (Busy); void removeFolderAsync (in ShellComponentListener listener, in string physical_uri) raises (Busy); void populateFolderContextMenu (in Bonobo::UIContainer uih, in string physical_uri, in string type); }; interface ShellComponentListener { enum Result { OK, UNSUPPORTED_OPERATION, UNSUPPORTED_TYPE, EXISTS, INVALID_URI, PERMISSION_DENIED, HAS_SUBFOLDERS, NO_SPACE }; void notifyResult (in Result result); }; }; };