Re: Introduction of openldapjs

2018-04-13 Thread Howard Chu
Dieter Klünter wrote: Hi, due to the fact that some software libraries are lacking full support of Lightweight Directory Access Protocol according to RFC-4510 and that there is a need to implement full ldap support in JavaScript, openLDAP.js, a wrapper of libldap, has been developed. The library

Introduction of openldapjs

2018-04-13 Thread Dieter Klünter
Hi, due to the fact that some software libraries are lacking full support of Lightweight Directory Access Protocol according to RFC-4510 and that there is a need to implement full ldap support in JavaScript, openLDAP.js, a wrapper of libldap, has been developed. The library has been published

Re: Introduction of openldapjs

2018-04-13 Thread Gavin Henry
> > Brilliant. Look forward to playing with it and vuejs.

Re: auto-growing data size

2018-04-13 Thread Dave Horsfall
On Fri, 13 Apr 2018, Howard Chu wrote: I suppose so. Nobody says you have to use UFS for everything, just use it for a data partition. Yep, but I wanted the archives to show that using UFS, whilst solving the problem with sparse files, could break other things on the Mac side, so use it at

Re: exempt some users from OpenLDAP password policy

2018-04-13 Thread Peter Gietz
Dear Tayyab, well the error message says most of it. The attribute pwdChangedTime is defined in sect. 5.3.2. of https://tools.ietf.org/html/draft-behera-ldap-password-policy-10 as: ... NO-USER-MODIFICATION USAGE directoryOperation ) Which means, that an LDAP client is not allowed to

RE: [EXTERNAL] exempt some users from OpenLDAP password policy

2018-04-13 Thread Jon C Kidder
Once the ppolicy overlay is enabled all users will become subject to the default policy. You have 2 choices: 1. Make the default policy accommodate your less restrictive use case and apply a more restrictive policy to the users that need it. 2. Leave the default policy the more

RE: [EXTERNAL] exempt some users from OpenLDAP password policy

2018-04-13 Thread Jon C Kidder
You also have the option of not specifying a default policy but I’m assuming that “no policy” is your exception use case and not what you want as the default. [cid:image001.png@01D3D2F8.96CC7360] JON C KIDDER | MIDDLEWARE ADMINISTRATOR LEAD

Re: exempt some users from OpenLDAP password policy

2018-04-13 Thread Matthieu Cerda
Hello, You may either: * Set a relaxed default password policy using olcPPolicyDefault / ppolicy_default (or no default policy at all) and set more restrictive password policies on some of your users by setting the pwdPolicySubentry attribute on their object * Set a restrictive

Re: exempt some users from OpenLDAP password policy

2018-04-13 Thread Tayyab Saeed
Dear Peter / ALL, Thanks a lot for your reply. So how can we exempt some users from password policy ? Is it possible in OpenLDAP or not ? Thanks, Tayyab Saeed - Original Message - From: "Peter Gietz" To: openldap-technical@openldap.org Sent: Friday,

Re: auto-growing data size

2018-04-13 Thread mark diener
Howard: So you are saying that on Android, Ios, and Windows 10, the mdb_env_set_mapsize() will grow only as needed and not pre-allocate the file space? Only on MacOSX is there a funky behavior where I need to switch the partition to UFS? >From a commercial standpoint, that is not feasible. How