aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-remote-store.c
diff options
context:
space:
mode:
authorPeter Williams <peterw@src.gnome.org>2000-09-06 04:08:10 +0800
committerPeter Williams <peterw@src.gnome.org>2000-09-06 04:08:10 +0800
commitb1e66c4c60ca6d52c0a164a510e5199ca201bf98 (patch)
tree8a3bdab58ee5ba9a3374c77fa867bd19585a05ed /camel/camel-remote-store.c
parenta86c7ea0ab3775cc8fb141c1792c3b2bdb663a34 (diff)
downloadgsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar.gz
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar.bz2
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar.lz
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar.xz
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.tar.zst
gsoc2013-evolution-b1e66c4c60ca6d52c0a164a510e5199ca201bf98.zip
Cleanup of lots of exception handling ; bugfixes
svn path=/trunk/; revision=5202
Diffstat (limited to 'camel/camel-remote-store.c')
-rw-r--r--camel/camel-remote-store.c53
1 files changed, 35 insertions, 18 deletions
diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c
index d11fd0bcbd..afbd3a71ca 100644
--- a/camel/camel-remote-store.c
+++ b/camel/camel-remote-store.c
@@ -149,8 +149,8 @@ camel_remote_store_get_type (void)
static CamelServiceAuthType password_authtype = {
"SSH Tunneling",
- "This option will connect to the REMOTE server using a "
- "plaintext password.",
+ "This option will connect to the server using a "
+ "SSH tunnel.",
"",
TRUE
@@ -160,14 +160,12 @@ static CamelServiceAuthType password_authtype = {
static GList *
remote_query_auth_types_connected (CamelService *service, CamelException *ex)
{
- g_warning ("remote::query_auth_types_connected: not implemented. Defaulting.");
- return CSRVC (service)->query_auth_types_generic (service, ex);
+ return NULL;
}
static GList *
remote_query_auth_types_generic (CamelService *service, CamelException *ex)
{
- g_warning ("remote::query_auth_types_generic: not implemented. Defaulting.");
return NULL;
}
@@ -192,14 +190,6 @@ remote_get_name (CamelService *service, gboolean brief)
}
}
-static void
-refresh_folder_info (gpointer key, gpointer value, gpointer data)
-{
- CamelFolder *folder = CAMEL_FOLDER (value);
-
- camel_folder_refresh_info (folder, (CamelException *) data);
-}
-
static gboolean
timeout_cb (gpointer data)
{
@@ -277,9 +267,6 @@ remote_connect (CamelService *service, CamelException *ex)
store);
}
- /* Let's make sure that any of our folders are brought up to speed */
- g_hash_table_foreach (CAMEL_STORE (store)->folders, refresh_folder_info, ex);
-
return TRUE;
}
@@ -333,8 +320,15 @@ remote_send_string (CamelRemoteStore *store, CamelException *ex, char *fmt, va_l
/* create the command */
cmdbuf = g_strdup_vprintf (fmt, ap);
-
- d(fprintf (stderr, "sending : %s", cmdbuf));
+
+#if d(!)0
+ if (strncmp (cmdbuf, "PASS ", 5) == 0)
+ fprintf (stderr, "sending : PASS xxxx\n");
+ else if (strstr (cmdbuf, "LOGIN \""))
+ fprintf (stderr, "sending : ---- LOGIN \"xxxx\" \"xxxx\"\n");
+ else
+ fprintf (stderr, "sending : %s", cmdbuf);
+#endif
if (camel_stream_printf (store->ostream, "%s", cmdbuf) == -1) {
CamelException dex;
@@ -493,3 +487,26 @@ camel_remote_store_recv_line (CamelRemoteStore *store, char **dest,
return CRSC (store)->recv_line (store, dest, ex);
}
+
+static void
+refresh_folder_info (gpointer key, gpointer value, gpointer data)
+{
+ CamelFolder *folder = CAMEL_FOLDER (value);
+
+ camel_folder_refresh_info (folder, (CamelException *) data);
+}
+
+/**
+ * camel_remote_store_refresh_folders: Refresh the folders that I
+ * contain
+ * @store: a CamelRemoteStore
+ * @ex: a CamelException
+ *
+ * Refreshes the folders listed in the folders hashtable.
+ **/
+
+void
+camel_remote_store_refresh_folders (CamelRemoteStore *store, CamelException *ex)
+{
+ g_hash_table_foreach (CAMEL_STORE (store)->folders, refresh_folder_info, ex);
+}