diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-07-26 06:11:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-07-26 06:11:11 +0800 |
commit | 16fe42c893218a56e9b7fb1cd9418f8569a0f51f (patch) | |
tree | 44ccf1c7836589c3c38e61155d72732c5c2f2712 /camel/ChangeLog | |
parent | cfaa972fcb46ff0d071d367084e910ec91f4f3c4 (diff) | |
download | gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar.gz gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar.bz2 gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar.lz gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar.xz gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.tar.zst gsoc2013-evolution-16fe42c893218a56e9b7fb1cd9418f8569a0f51f.zip |
Remove "possibly non-fatal" exception strings, all exceptions are fatal
2002-07-25 Jeffrey Stedfast <fejj@ximian.com>
* providers/smtp/camel-smtp-transport.c: Remove "possibly
non-fatal" exception strings, all exceptions are fatal unless
their caller decides otherwise.
(connect_to_server): If smtp_helo() fails due to us getting
disconnected, treat the exception as fatal.
(smtp_connect): Abort if smtp_helo() fails and we got
disconnected.
(smtp_send_to): If smtp_mail() fails, abort the send operation.
(smtp_set_exception): If respbuf was NULL, then we got
disconnected and so update our state accordingly.
(smtp_disconnect): Only send a QUIT if we are still in the
connected state (or, at least think we are).
svn path=/trunk/; revision=17595
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 5fcb8b2e84..4234616488 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,12 +1,28 @@ +2002-07-25 Jeffrey Stedfast <fejj@ximian.com> + + * providers/smtp/camel-smtp-transport.c: Remove "possibly + non-fatal" exception strings, all exceptions are fatal unless + their caller decides otherwise. + (connect_to_server): If smtp_helo() fails due to us getting + disconnected, treat the exception as fatal. + (smtp_connect): Abort if smtp_helo() fails and we got + disconnected. + (smtp_send_to): If smtp_mail() fails, abort the send operation. + (smtp_set_exception): If respbuf was NULL, then we got + disconnected and so update our state accordingly. + (smtp_disconnect): Only send a QUIT if we are still in the + connected state (or, at least think we are). + 2002-07-24 Peter Williams <peterw@ximian.com> - * providers/imap/camel-imap-folder.c (imap_expunge_uids_resyncing): It - would help to mark the UIDs as deleted before we try to expunge them - (in the case when no other UIDs were marked deleted this didn't happen.) - Also fix an FMR. - (imap_expunge_uids_offline): Trigger a folder_changed event with our - own changeinfo because camel_imap_response_free won't be able to do that - for us. + * providers/imap/camel-imap-folder.c + (imap_expunge_uids_resyncing): It would help to mark the UIDs as + deleted before we try to expunge them + (in the case when no other UIDs were marked deleted this didn't + happen.) Also fix an FMR. + (imap_expunge_uids_offline): Trigger a folder_changed event with + our own changeinfo because camel_imap_response_free won't be able + to do that for us. 2002-07-25 Jeffrey Stedfast <fejj@ximian.com> |