(name pending)
Organizations often deploy multiple public facing applications to build their communities along with MindTouch Deki. These may include bug trackers, blogs, forums, etc. The issue is how does a new user to the community create an account in one place that can be used by all of the applications involved? Each application generally has a means of creating accounts to be used by them but this requires the user to create accounts in multiple places hopefully with the same username. One solution is to pick an application that does the account creation and either have that app create accounts in all the databases with techniques reverse engineered from the code (such as how the password gets hashed). This sucks. Another solution is to modify each application to pull account data from other apps from their database or API. This involves custom development and depending on how well each app handles externally authenticated accounts, may cause problems as you need to update the app and may be difficult to implement.
Rely on a simple app whose purpose is to register and login members into the community: MindTouch Connect (name pending). Its main purpose is to allow new users to be registered and for the user account to be stored into LDAP. Having user accounts stored in LDAP offers a means of a simple, standardized, and established way of having applications authenticate and lookup user details as they need. Most established applications -- open or closed source -- already have a means of relying on LDAP.
Development of this app can easily be broken up into several phases allowing incrementally increased utility
Implement a skinnable form for allowing new users to be registered into LDAP.
It needs to be:
Login in one place using either a form based login or web server auth module (mod_authz_ldap). This allows a cgi variable to be set (REMOTE_USER) and applications can trust that the user is who he claims with the presence of that value. Alternatively, MindTouch Connect can post to each app's login form with the username/password and retrieve the cookie thus signing the user into each app. There are some other solutions here as well..