From 3aff7416c109c4f8db76d3121a40f23b9e2cfd24 Mon Sep 17 00:00:00 2001 From: Sivaiah Nallagatla Date: Tue, 27 Jul 2004 15:37:22 +0000 Subject: do not set transport object for groupwise provider. We want user to use 2004-07-27 Sivaiah Nallagatla * providers/groupwise/camel-groupwise-provider.c (camel_provider_module_init) : do not set transport object for groupwise provider. We want user to use SMTP itself instead of "Novell Groupwise" Fixes #61454 svn path=/trunk/; revision=26744 --- camel/providers/groupwise/camel-groupwise-provider.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'camel/providers') diff --git a/camel/providers/groupwise/camel-groupwise-provider.c b/camel/providers/groupwise/camel-groupwise-provider.c index b7eb368b1f..97c2d5479c 100644 --- a/camel/providers/groupwise/camel-groupwise-provider.c +++ b/camel/providers/groupwise/camel-groupwise-provider.c @@ -110,18 +110,13 @@ void camel_provider_module_init(void) { CamelProvider *imap_provider; - CamelProvider *smtp_provider; imap_provider = camel_provider_get("imap://", NULL); - smtp_provider = camel_provider_get("smtp://", NULL); - groupwise_provider.url_hash = groupwise_url_hash; groupwise_provider.url_equal = groupwise_url_equal; groupwise_provider.authtypes = g_list_prepend (groupwise_provider.authtypes, &camel_groupwise_password_authtype); - - if (imap_provider != NULL && smtp_provider != NULL) { + if (imap_provider != NULL) { groupwise_provider.object_types[CAMEL_PROVIDER_STORE] = imap_provider->object_types [CAMEL_PROVIDER_STORE]; - groupwise_provider.object_types[CAMEL_PROVIDER_TRANSPORT] = smtp_provider->object_types [CAMEL_PROVIDER_TRANSPORT]; camel_provider_register(&groupwise_provider); } -- cgit v1.2.3