diff options
-rw-r--r-- | camel/ChangeLog | 28 | ||||
-rw-r--r-- | mail/ChangeLog | 12 |
2 files changed, 40 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 48d8dbf1c0..192e99e9ff 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,31 @@ +2000-08-22 Peter Williams <peterw@helixcode.com> + + * camel-service.c (camel_service_new): Connect automatically if the + URL is not empty. + (finalize): Disconnect automatically if connected. + (camel_service_query_auth_types): Split into two functions; one to + be called if we're connected to an actual server (_connected), one + to be called if we're just gauging the general authtypes supported + (_generic). + (is_connected): Remove. + + * camel-store.c (camel_store_get_folder): Don't connect explicitly to + the service. + + * providers/nntp/camel-nntp-store.c (query_auth_types_generic): Split + the query_auth_types function. Hook it up in _new. + (finalize): Don't try to disconnect here. + + * providers/pop3/camel-pop3-store.c (query_auth_types_generic): Same. + (finalize): Don't try to disconnect here. + + * providers/imap/camel-imap-store.c (query_auth_types_generic): Same. + (finalize): Don't try to disconnect here. + + * providers/smtp/camel-smtp-transport.c (query_auth_types_generic): Split + the query_auth_types (dummy, in this case) function. Hook it up in _new. + (finalize): Don't try to disconnect here. + 2000-08-21 JP Rosevear <jpr@helixcode.com> * providers/nntp/camel-nntp-folder.c (nntp_folder_get_subfolder_names): diff --git a/mail/ChangeLog b/mail/ChangeLog index 7782416393..e82d95c7ee 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,17 @@ 2000-08-22 Peter Williams <peterw@helixcode.com> + * mail-tools.c (mail_tool_get_folder_from_urlname): Don't connect + to the service explicitly. + (mail_tool_send_via_transport): Don't connect to the transport + explicitly. + (mail_tool_get_root_of_store): Same. + + * mail-config-gui.c (do_test_service): Just try camel_session_get_service, + which will now connect for us. + + * message-thread.h: Add a note about *next being the first member + of struct _container... if it isn't, everything goes Very Wrong. + * message-thread.c (free_container): Extra debug print. (remove_node): Handle the case of empty containers holding the child that we're interested in. |