diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index e1b0f061f0..0ca01c6225 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2004-06-19 Sivaiah Nallagatla <snallagatla@novell.com> + + * gui/component/addressbook-config.c (dialog_to_source) : + set auth-domain property on groupwise sources, so that + newly created contact groups can share remembered passwords + 2004-06-18 Jeffrey Stedfast <fejj@novell.com> * conduit/address-conduit.c (ecard_from_remote_record): Always set diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 76c82bec34..b2e7798277 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -260,6 +260,7 @@ dialog_to_source (AddressbookSourceDialog *dialog, ESource *source, gboolean tem property_value = e_source_get_property (existing_source, "user"); e_source_set_property (source, "user", property_value); } + e_source_set_property (source, "auth-domain", "Groupwise"); str = g_strconcat (";", gtk_entry_get_text (GTK_ENTRY (dialog->display_name)), NULL); e_source_set_relative_uri (source, str); g_free (str); |