diff options
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/providers/groupwise/camel-gw-listener.c | 2 | ||||
-rw-r--r-- | plugins/groupwise-account-setup/camel-gw-listener.c | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index a6fa3c160d..6ce0c5cbd2 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2004-05-25 Sivaiah nallagatla <snallagatla@novell.com> + * providers/groupwise/came;-gw-listener.c (add_addressbook_sources): + set port property on e-source + 2004-05-25 Sivaiah Nallagatla <snallagatla@novell.com> * providers/groupwise/camel-gw-listener.c (lookup_account_info): diff --git a/camel/providers/groupwise/camel-gw-listener.c b/camel/providers/groupwise/camel-gw-listener.c index a88b70ffcd..27d8c2241e 100644 --- a/camel/providers/groupwise/camel-gw-listener.c +++ b/camel/providers/groupwise/camel-gw-listener.c @@ -418,6 +418,7 @@ add_addressbook_sources (EAccount *account) if (! books_list) { source = e_source_new ("Frequent Contacts", g_strconcat (";", "Frequent Contacts", NULL)); e_source_set_property (source, "auth", "plain/password"); + e_source_set_property (source, "port", soap_port); e_source_set_property(source, "user", url->user); e_source_set_property (source, "auth-domain", "Groupwise"); e_source_set_property (source, "completion", "true"); @@ -431,6 +432,7 @@ add_addressbook_sources (EAccount *account) source = e_source_new (book_name, g_strconcat (";",book_name, NULL)); e_source_set_property (source, "auth", "plain/password"); e_source_set_property (source, "auth-domain", "Groupwise"); + e_source_set_property (source, "port", soap_port); e_source_set_property(source, "user", url->user); printf ("%s %d\n", e_gw_container_get_name (E_GW_CONTAINER(temp_list->data)), e_gw_container_get_is_writable (E_GW_CONTAINER(temp_list->data))); if (!e_gw_container_get_is_writable (E_GW_CONTAINER(temp_list->data))) diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c index a88b70ffcd..27d8c2241e 100644 --- a/plugins/groupwise-account-setup/camel-gw-listener.c +++ b/plugins/groupwise-account-setup/camel-gw-listener.c @@ -418,6 +418,7 @@ add_addressbook_sources (EAccount *account) if (! books_list) { source = e_source_new ("Frequent Contacts", g_strconcat (";", "Frequent Contacts", NULL)); e_source_set_property (source, "auth", "plain/password"); + e_source_set_property (source, "port", soap_port); e_source_set_property(source, "user", url->user); e_source_set_property (source, "auth-domain", "Groupwise"); e_source_set_property (source, "completion", "true"); @@ -431,6 +432,7 @@ add_addressbook_sources (EAccount *account) source = e_source_new (book_name, g_strconcat (";",book_name, NULL)); e_source_set_property (source, "auth", "plain/password"); e_source_set_property (source, "auth-domain", "Groupwise"); + e_source_set_property (source, "port", soap_port); e_source_set_property(source, "user", url->user); printf ("%s %d\n", e_gw_container_get_name (E_GW_CONTAINER(temp_list->data)), e_gw_container_get_is_writable (E_GW_CONTAINER(temp_list->data))); if (!e_gw_container_get_is_writable (E_GW_CONTAINER(temp_list->data))) |