aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-08-13 11:52:31 +0800
committerDan Winship <danw@src.gnome.org>2000-08-13 11:52:31 +0800
commitd1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8 (patch)
tree2ee3b5ac77428b4105850ecb541179aa9552ac48
parent3655f5d2480dfbbf312366732812c20f870acbd6 (diff)
downloadgsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar.gz
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar.bz2
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar.lz
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar.xz
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.tar.zst
gsoc2013-evolution-d1245d7e6b2bde4a5e6f55516dbfedf9b4f6b6e8.zip
Take the source as a command-line argument rather than fetching it from
* component-factory.c (create_imap_storage): Take the source as a command-line argument rather than fetching it from mail-config. (owner_set_cb): Call create_imap_storage on each configured IMAP store. svn path=/trunk/; revision=4793
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/component-factory.c34
2 files changed, 22 insertions, 17 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 2e4748581b..f511b633ca 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,10 @@
2000-08-12 Dan Winship <danw@helixcode.com>
+ * component-factory.c (create_imap_storage): Take the source as a
+ command-line argument rather than fetching it from mail-config.
+ (owner_set_cb): Call create_imap_storage on each configured IMAP
+ store.
+
* mail-format.c (decode_pgp): Redo this so that the lock icon
remains active after a failed decryption so you can click on it
and try again.
diff --git a/mail/component-factory.c b/mail/component-factory.c
index ac35ca8556..480f68e4e3 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -45,7 +45,8 @@ CamelFolder *drafts_folder = NULL;
char *evolution_dir;
static void create_vfolder_storage (EvolutionShellComponent *shell_component);
-static void create_imap_storage (EvolutionShellComponent *shell_component);
+static void create_imap_storage (EvolutionShellComponent *shell_component,
+ const char *source);
static void create_news_storage (EvolutionShellComponent *shell_component);
#define COMPONENT_FACTORY_ID "OAFIID:evolution-shell-component-factory:evolution-mail:0ea887d5-622b-4b8c-b525-18aa1cbe18a6"
@@ -103,6 +104,9 @@ owner_set_cb (EvolutionShellComponent *shell_component,
const char *evolution_homedir,
gpointer user_data)
{
+ GSList *sources;
+ MailConfigService *s;
+
g_print ("evolution-mail: Yeeeh! We have an owner!\n"); /* FIXME */
evolution_dir = g_strdup (evolution_homedir);
@@ -110,8 +114,15 @@ owner_set_cb (EvolutionShellComponent *shell_component,
mail_config_init ();
mail_do_setup_draftbox ();
create_vfolder_storage (shell_component);
- create_imap_storage (shell_component);
create_news_storage (shell_component);
+
+ sources = mail_config_get_sources ();
+ while (sources) {
+ s = sources->data;
+ if (!g_strncasecmp (s->url, "imap:", 5))
+ create_imap_storage (shell_component, s->url);
+ sources = sources->next;
+ }
}
static void
@@ -187,21 +198,14 @@ create_vfolder_storage (EvolutionShellComponent *shell_component)
}
static void
-create_imap_storage (EvolutionShellComponent *shell_component)
+create_imap_storage (EvolutionShellComponent *shell_component,
+ const char *source)
{
- const MailConfigService *s;
EvolutionShellClient *shell_client;
Evolution_Shell corba_shell;
EvolutionStorage *storage;
- char *source = NULL, *server, *p;
-
- s = mail_config_get_default_source ();
- if (s)
- source = s->url;
+ char *server, *p;
- if (!source || g_strncasecmp (source, "imap://", 7))
- return;
-
shell_client = evolution_shell_component_get_owner (shell_component);
if (shell_client == NULL) {
g_warning ("We have no shell!?");
@@ -210,10 +214,8 @@ create_imap_storage (EvolutionShellComponent *shell_component)
corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client));
- if (!(server = strchr (source, '@'))) {
- g_free (source);
+ if (!(server = strchr (source, '@')))
return;
- }
server++;
for (p = server; *p && *p != '/'; p++);
@@ -225,7 +227,6 @@ create_imap_storage (EvolutionShellComponent *shell_component)
if (evolution_storage_register_on_shell (storage, corba_shell) != EVOLUTION_STORAGE_OK) {
g_warning ("Cannot register storage");
- g_free (source);
return;
}
@@ -266,7 +267,6 @@ create_news_storage (EvolutionShellComponent *shell_component)
if (evolution_storage_register_on_shell (storage, corba_shell) != EVOLUTION_STORAGE_OK) {
g_warning ("Cannot register storage");
- g_free (source);
return;
}