Results 51 comments of Jon Bake

That stores email addresses of users: https://github.com/discourse/discourse/blob/acd1693dac1bff6ff50250d942134bc48a27ff14/db/migrate/20170717084947_create_user_emails.rb. I believe email address is required so there should be at least one entry for each user.

If you are using the `list` user create mode, you can specify groups in your `ldap_user.yml` and they will automatically be populated on user creation. Currently, the plugin does not...

Should all groups sync? What if the group doesn't exist in Discourse? Can you give your example use case for this feature? ie. What types of LDAP groups you want...

@wburningham From my recollection, what is passed back from _omniauth_ is fixed. You can see what is returned by "putting" the `auth_info` in either _plugin.rb_ or `LDAPUser`, e.g. `put auth_info`,...

Looks like there is an outstanding PR in omniauth-ldap that is necessary in order to implement this change: [Add options to retrieve LDAP group membership](https://github.com/omniauth/omniauth-ldap/pull/43).

Unfortunately, this would require a code change to a dependent library so there is not much we can do. We could remove the dependency on omniauth-ldap and use something else,...

You can customize the styling by editing https://github.com/jonmbake/discourse-ldap-auth/blob/master/css/form.css. You could change the title from "LDAP Authentication" to something else by passing in a `title` attribute here: https://github.com/jonmbake/discourse-ldap-auth/blob/master/plugin.rb#L38. The overall structure...

@thomasbeaudry Hmmm... changing the `auth_provider title` should work. Maybe checkout Discourse source to see where they are pulling those values from?

It is currently not supported, however it should be possible. I'll try to get this in the next release.

Hey, RaVoR. The plugin wraps [omniauth-ldap](https://github.com/omniauth). Looks like they have an outstanding issue to support binding against the current user: https://github.com/omniauth/omniauth-ldap/issues/59. In short, we would need them to support this...