aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@src.gnome.org>2004-01-16 19:21:09 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-01-16 19:21:09 +0800
commitd339547a607f0af1451c9f3db3cd9a20a80ca788 (patch)
tree2f24aa734e4eb9ef09234822b5d5825283f74b4c /plugins
parent820f781d7a7de4c3ec42e08a668dde353ef8b272 (diff)
downloadgsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar.gz
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar.bz2
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar.lz
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar.xz
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.tar.zst
gsoc2013-evolution-d339547a607f0af1451c9f3db3cd9a20a80ca788.zip
*** empty log message ***
svn path=/trunk/; revision=24269
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-account-setup/camel-gw-listener.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c
index 7830f17ba0..8863eb5dbe 100644
--- a/plugins/groupwise-account-setup/camel-gw-listener.c
+++ b/plugins/groupwise-account-setup/camel-gw-listener.c
@@ -24,7 +24,7 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
-
+
#include "camel-gw-listener.h"
#include <string.h>
@@ -36,8 +36,7 @@ static GList *groupwise_accounts = NULL;
struct _CamelGwListenerPrivate {
GConfClient *gconf_client;
/* we get notification about mail account changes form this object */
- EAccountList *account_list;
-
+ EAccountList *account_list;
};
struct _GwAccountInfo {
@@ -54,10 +53,10 @@ typedef struct _GwAccountInfo GwAccountInfo;
#define PARENT_TYPE G_TYPE_OBJECT
static GObjectClass *parent_class = NULL;
-
+
static void dispose (GObject *object);
static void finalize (GObject *object);
-
+
static void
camel_gw_listener_class_init (CamelGwListenerClass *class)
@@ -70,14 +69,12 @@ camel_gw_listener_class_init (CamelGwListenerClass *class)
/* virtual method override */
object_class->dispose = dispose;
object_class->finalize = finalize;
-
}
static void
camel_gw_listener_init (CamelGwListener *config_listener, CamelGwListenerClass *class)
{
- config_listener->priv = g_new0 (CamelGwListenerPrivate, 1);
-
+ config_listener->priv = g_new0 (CamelGwListenerPrivate, 1);
}
static void
@@ -89,7 +86,6 @@ dispose (GObject *object)
g_object_unref (config_listener->priv->account_list);
G_OBJECT_CLASS (parent_class)->dispose (object);
-
}
static void
@@ -117,7 +113,6 @@ finalize (GObject *object)
}
g_list_free (groupwise_accounts);
-
}
/*determines whehter the passed in account is groupwise or not by looking at source url */
@@ -126,14 +121,12 @@ static gboolean
is_groupwise_account (EAccount *account)
{
if (account->source->url != NULL) {
-
return (strncmp (account->source->url, GROUPWISE_URI_PREFIX, GROUPWISE_PREFIX_LENGTH ) == 0);
} else {
return FALSE;
}
}
-
/* looks up for an existing groupwise account info in the groupwise_accounts list based on uid */
static GwAccountInfo*
@@ -149,14 +142,12 @@ lookup_account_info (const char *key)
info = NULL;
for (list = g_list_first (groupwise_accounts); list; list = g_list_next (list)) {
-
info = (GwAccountInfo *) (list->data);
found = strcmp (info->uid, key) == 0;
if (found)
break;
-
}
-
+
return info;
}
@@ -296,7 +287,8 @@ add_calendar_tasks_sources (GwAccountInfo *info)
char *relative_uri;
url = camel_url_new (info->source_url, NULL);
- relative_uri = g_strdup_printf ("%s@%s", url->user, url->host);
+ /* FIXME: don't hard-code the port number */
+ relative_uri = g_strdup_printf ("%s@%s:7181", url->user, url->host);
add_esource ("/apps/evolution/calendar/sources", info->name, "Default", relative_uri);
add_esource ("/apps/evolution/tasks/sources", info->name, "Default", relative_uri);