diff options
-rw-r--r-- | plugins/groupwise-account-setup/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/groupwise-account-setup/camel-gw-listener.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/groupwise-account-setup/ChangeLog b/plugins/groupwise-account-setup/ChangeLog index 6559a4bd77..b8ad68d1ec 100644 --- a/plugins/groupwise-account-setup/ChangeLog +++ b/plugins/groupwise-account-setup/ChangeLog @@ -1,3 +1,8 @@ +2004-12-17 Sivaiah Nallagatla <snallagatla@novell.com> + + * camel-gw-listner.c (add_esource) : read "soap_ssl" from + the camel url instead of "use_ssl" + 2004-12-15 Rodney Dawes <dobey@novell.com> * Makefile.am: Add camel-gw-listener.h to SOURCES diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c index 94621bdcaf..6484c4e03f 100644 --- a/plugins/groupwise-account-setup/camel-gw-listener.c +++ b/plugins/groupwise-account-setup/camel-gw-listener.c @@ -206,7 +206,7 @@ add_esource (const char *conf_key, const char *group_name, const char *source_n e_source_set_property (source, "username", url->user); e_source_set_property (source, "port", camel_url_get_param (url, "soap_port")); e_source_set_property (source, "auth-domain", "Groupwise"); - e_source_set_property (source, "use_ssl", camel_url_get_param (url, "use_ssl")); + e_source_set_property (source, "use_ssl", camel_url_get_param (url, "soap_ssl")); e_source_set_property (source, "offline_sync", offline_sync); // e_source_set_property (source, "offline_sync", ); e_source_group_add_source (group, source, -1); |