Changes between Initial Version and Version 1 of Ticket #54
- Timestamp:
- 02/23/07 23:30:33 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #54 – Description
initial v1 3 3 (even when the cred is set properly). But I think it should. 4 4 5 {{{ 5 6 #!/usr/bin/env python 6 7 … … 19 20 20 21 l.modify_s( who, [ (ldap.MOD_REPLACE,'cn','NF Warmerdam') ] ) 22 }}} 21 23 22 24 The /etc/openldap/slapd.conf uses the following permissions: 23 25 26 {{{ 24 27 access to * 25 28 by self write 26 29 by users read 27 30 by anonymous auth 31 }}} 28 32 29 33 As I read the docs at: … … 35 39 in ldap, including everyone elses encrypted password which is sufficient to authenticate 36 40 as these other users. We should really add a pre-rule something like: 37 41 {{{ 38 42 access to attr=userPassword 39 43 by self write … … 41 45 by dn.base="cn=Manager,dc=osgeo,dc=org" write 42 46 by * none 47 }}} 43 48 44