[evolution-data-server] Bug #648844 - IMAP Error: LIST failed: wildcards not permitted in username
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Bug #648844 - IMAP Error: LIST failed: wildcards not permitted in username
- Date: Thu, 28 Apr 2011 08:50:10 +0000 (UTC)
commit 763820964d9aba5f115aa298ce62bb8bae8ee19b
Author: Milan Crha <mcrha redhat com>
Date: Thu Apr 28 10:49:24 2011 +0200
Bug #648844 - IMAP Error: LIST failed: wildcards not permitted in username
camel/providers/imap/camel-imap-store.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 233e171..da6f344 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -2606,7 +2606,7 @@ get_folders_sync (CamelImapStore *imap_store,
CamelStoreInfo *si;
const gchar *pattern = ppattern;
CamelImapStoreNamespace *ns;
- gboolean success = TRUE;
+ gboolean success = TRUE, first_namespace = TRUE;
/* We do a LIST followed by LSUB, and merge the results. LSUB may not be a strict
subset of LIST for some servers, so we can't use either or separately */
@@ -2615,7 +2615,7 @@ get_folders_sync (CamelImapStore *imap_store,
if (!pattern)
pattern = "";
- for (ns = imap_store->summary->namespace; ns; ns = ns->next) {
+ for (ns = imap_store->summary->namespace; ns; ns = ns->next, first_namespace = FALSE) {
for (k = 0; k < 2; k++) {
gchar *tmp = NULL;
@@ -2632,7 +2632,7 @@ get_folders_sync (CamelImapStore *imap_store,
}
for (j = 0; j < 2; j++) {
- response = camel_imap_command (imap_store, NULL, cancellable, error,
+ response = camel_imap_command (imap_store, NULL, cancellable, first_namespace ? error : NULL,
"%s \"\" %G", j==1 ? "LSUB" : "LIST",
pattern);
if (!response) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]