I work professionally on a php web application that contains contacts, among other data. I was wondering how difficult it would be to make this data available to external programs using the LDAP protocol.
Are there specific tools for this? I could not find anything, but I can not imagine that I am the first to think about it.
Edit 1: I am looking for a way to use an application (such as an email client) to use the standard ldap search to find contacts from my data.
There are no restrictions on using third-party software or a separate ldap server on my side, but I want clients to simply be able to use the built-in ldap features for their choice.
What I can see is an ldap server that uses my database or service in my application to serve data, as if my application was an ldap server. I would prefer such a solution because I do not think it is right to inflate the application using ldap functions if I can use an external server for this.
source share