I did not find ready solutions for editing contacts in ldap. And I decided to write my web interface ldap address book, it turned out to be a simple django application, just such that the secretary is not confused))
So, I think the ldap server is configured, the mail client is connected, you just need to download
my_archive and configure the application! In the main Django settings, you need to add variables to the settings.py file:
- LDAP_DN
- LDAP_BASE_DN
- LDAP_PW
- LDAP_HOST
For example:
LDAP_DN = "cn = admin, dc = ag, dc = net"
LDAP_BASE_DN = "ou = addressbook, dc = ag, dc = net"
LDAP_PW = "kolbasa"
LDAP_HOST = "localhost"
add bookldap / url.py to url.py:
(r '^ book /', include ("site_django.bookldap.urls")),
And do not forget to add bookldap to installed Django applications:
INSTALLED_APPS = (
...
"Addressbook.bookldap",
)
download from ya disk