aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-05 21:27:33 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-05 21:27:33 +0800
commit8eef58bfe428505bc48fe4a2df67d81d04516526 (patch)
tree7ddcab23a0fa78f2f832577a714de74913fc7bc5
parentad5ce76972838c60f316b4467d940499c57fc1ba (diff)
downloadgsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar.gz
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar.bz2
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar.lz
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar.xz
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.tar.zst
gsoc2013-evolution-8eef58bfe428505bc48fe4a2df67d81d04516526.zip
dont set X-Evolution-Source here anymore, set in caller.
2004-05-05 Not Zed <NotZed@Ximian.com> * providers/imap/camel-imap-folder.c (get_message_simple): dont set X-Evolution-Source here anymore, set in caller. (imap_get_message): move the busted server get into the retry loop. only leave the simple cache test outside of it. svn path=/trunk/; revision=25805
-rw-r--r--camel/ChangeLog7
-rw-r--r--camel/providers/imap/camel-imap-folder.c32
2 files changed, 22 insertions, 17 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 1f827df7ca..cba0110ce0 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,10 @@
+2004-05-05 Not Zed <NotZed@Ximian.com>
+
+ * providers/imap/camel-imap-folder.c (get_message_simple): dont
+ set X-Evolution-Source here anymore, set in caller.
+ (imap_get_message): move the busted server get into the retry
+ loop. only leave the simple cache test outside of it.
+
2004-05-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-session.h: Get rid of #ifdef ENABLE_THREADS stuff, that
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index b1c6e2c341..4e4745c6ec 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -1943,8 +1943,6 @@ get_message_simple (CamelImapFolder *imap_folder, const char *uid,
CamelStream *stream, CamelException *ex)
{
CamelMimeMessage *msg;
- CamelImapStore *imap_store =
- CAMEL_IMAP_STORE (CAMEL_FOLDER (imap_folder)->parent_store);
int ret;
if (!stream) {
@@ -1966,9 +1964,6 @@ get_message_simple (CamelImapFolder *imap_folder, const char *uid,
return NULL;
}
- /* FIXME, this shouldn't be done this way. */
- camel_medium_set_header (CAMEL_MEDIUM (msg), "X-Evolution-Source",
- imap_store->base_url);
return msg;
}
@@ -1993,17 +1988,10 @@ imap_get_message (CamelFolder *folder, const char *uid, CamelException *ex)
CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
CamelImapStore *store = CAMEL_IMAP_STORE (folder->parent_store);
CamelMessageInfo *mi;
- CamelMimeMessage *msg;
+ CamelMimeMessage *msg = NULL;
CamelStream *stream = NULL;
int retry;
- /* If the server doesn't support IMAP4rev1, or we already have
- * the whole thing cached, fetch it in one piece.
- */
- if (store->server_level < IMAP_LEVEL_IMAP4REV1 || store->braindamaged ||
- (stream = camel_imap_folder_fetch_data (imap_folder, uid, "", TRUE, NULL)))
- return get_message_simple (imap_folder, uid, stream, ex);
-
mi = camel_folder_summary_uid (folder->summary, uid);
if (mi == NULL) {
camel_exception_setv(ex, CAMEL_EXCEPTION_FOLDER_INVALID_UID,
@@ -2011,11 +1999,16 @@ imap_get_message (CamelFolder *folder, const char *uid, CamelException *ex)
return NULL;
}
+ /* If its cached in full, just get it as is, this is only a shortcut,
+ since we get stuff from the cache anyway. It affects a busted connection though. */
+ if ( (stream = camel_imap_folder_fetch_data(imap_folder, uid, "", TRUE, NULL))
+ && (msg = get_message_simple(imap_folder, uid, stream, ex)))
+ goto done;
+
/* All this mess is so we silently retry a fetch if we fail with
service_unavailable, without an (equivalent) mess of gotos */
retry = 0;
do {
- msg = NULL;
retry++;
camel_exception_clear(ex);
@@ -2024,8 +2017,11 @@ imap_get_message (CamelFolder *folder, const char *uid, CamelException *ex)
&& !camel_imap_store_connected(store, ex))
goto fail;
- /* If the message is small or only 1 part, fetch it in one piece. */
- if (mi->size < IMAP_SMALL_BODY_SIZE || !mi->content->childs) {
+ /* If the message is small or only 1 part, or server doesn't do 4v1 (properly) fetch it in one piece. */
+ if (store->server_level < IMAP_LEVEL_IMAP4REV1
+ || store->braindamaged
+ || mi->size < IMAP_SMALL_BODY_SIZE
+ || !mi->content->childs) {
msg = get_message_simple (imap_folder, uid, NULL, ex);
} else {
if (content_info_incomplete (mi->content)) {
@@ -2091,7 +2087,7 @@ imap_get_message (CamelFolder *folder, const char *uid, CamelException *ex)
&& retry < 2
&& camel_exception_get_id(ex) == CAMEL_EXCEPTION_SERVICE_UNAVAILABLE);
- /* FIXME, this shouldn't be done this way. */
+done: /* FIXME, this shouldn't be done this way. */
if (msg)
camel_medium_set_header (CAMEL_MEDIUM (msg), "X-Evolution-Source", store->base_url);
fail:
@@ -2821,6 +2817,8 @@ parse_fetch_response (CamelImapFolder *imap_folder, char *response)
uid, part_spec,
body, body_len, NULL);
CAMEL_IMAP_FOLDER_UNLOCK (imap_folder, cache_lock);
+ if (stream == NULL)
+ stream = camel_stream_mem_new_with_buffer (body, body_len);
}
if (stream)