diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-07-07 13:13:58 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-07-07 13:13:58 +0800 |
commit | 268a863a84d95071341ea5344ffe82f333c59309 (patch) | |
tree | 3c13615e8fca054a4705281e556478b99d91fa36 | |
parent | b292770082677236d9504b3c546c14b6788b4684 (diff) | |
download | gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar.gz gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar.bz2 gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar.lz gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar.xz gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.tar.zst gsoc2013-evolution-268a863a84d95071341ea5344ffe82f333c59309.zip |
break up the uri into it's component pieces. - don't store the uri in this
2000-07-06 Chris Toshok <toshok@helixcode.com>
* ldapservers.xml: break up the uri into it's component pieces. -
don't store the uri in this file.
svn path=/trunk/; revision=3943
-rw-r--r-- | default_user/ChangeLog | 5 | ||||
-rw-r--r-- | default_user/ldapservers.xml | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/default_user/ChangeLog b/default_user/ChangeLog index be7f469dc6..00b9b5df1f 100644 --- a/default_user/ChangeLog +++ b/default_user/ChangeLog @@ -1,3 +1,8 @@ +2000-07-06 Chris Toshok <toshok@helixcode.com> + + * ldapservers.xml: break up the uri into it's component pieces. - + don't store the uri in this file. + 2000-07-05 Chris Toshok <toshok@helixcode.com> * shortcuts.xml: remove the Internet Directories group. diff --git a/default_user/ldapservers.xml b/default_user/ldapservers.xml index d9a5c72c77..5469fecc52 100644 --- a/default_user/ldapservers.xml +++ b/default_user/ldapservers.xml @@ -3,11 +3,17 @@ <contactserver> <name>Bigfoot</name> <description>Bigfoot</description> - <uri>ldap://ldap.bigfoot.com/</uri> + <host>ldap.bigfoot.com</host> + <port>389</port> + <rootdn></rootdn> + <scope>one</scope> </contactserver> <contactserver> <name>Netcenter</name> <description>Netcenter Member Directory</description> - <uri>ldap://memberdir.netscape.com/ou=member_directory,o=netcenter.com</uri> + <host>memberdir.netscape.com</host> + <port>389</port> + <rootdn>ou=member_directory,o=netcenter.com</rootdn> + <scope>one</scope> </contactserver> </contactservers> |