diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2004-07-27 23:37:22 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-07-27 23:37:22 +0800 |
commit | 3aff7416c109c4f8db76d3121a40f23b9e2cfd24 (patch) | |
tree | 82e57e3bd811062922d1eaaaaa8a4073a8bfc034 /camel | |
parent | c61e1d83790fcc5c6eb2182b29d377f3a3052b96 (diff) | |
download | gsoc2013-evolution-3aff7416c109c4f8db76d3121a40f23b9e2cfd24.tar.gz gsoc2013-evolution-3aff7416c109c4f8db76d3121a40f23b9e2cfd24.tar.zst gsoc2013-evolution-3aff7416c109c4f8db76d3121a40f23b9e2cfd24.zip |
do not set transport object for groupwise provider. We want user to use
2004-07-27 Sivaiah Nallagatla <snallagatla@novell.com>
* 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
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 9 | ||||
-rw-r--r-- | camel/providers/groupwise/camel-groupwise-provider.c | 7 |
2 files changed, 10 insertions, 6 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index d8862c2f2d..67ddb0db3d 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,12 @@ +2004-07-27 Sivaiah Nallagatla <snallagatla@novell.com> + + * 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 + 2004-07-26 Jeffrey Stedfast <fejj@novell.com> * providers/imap4/camel-imap4-store.c (connect_to_server): Don't 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); } |