I'm trying to achieve the following scenario in SonarQube I already enabled ldap authentication for users I do not want to use domain groups for managing permissions. Instead I would like to create pure "SonarQube only" group and add domain users to it. As an admin I can do this, and UI shows that user is added (db contains this mapping as well) but as soon as this user tries to log into the SonarQube the application drops this group mapping. I can understand why it does it, but I'm looking for a way to enable this scenario to work. This is possible with many other apps like Jira, Confluence, Nexus etc so it would sound strange if this is not possible with SonarQube at all.
sonarqube version 5.3
ldap plugin version 1.5.1
my config looks like the following
sonar.security.realm=LDAP
ldap.authentication=DIGEST-MD5
sonar.forceAuthentication=fasle
sonar.authenticator.createUsers=false
ldap.windows.compatibilityMode=false
sonar.security.updateUserAttributes=false
ldap.url=ldap://*****:389
ldap.bindDn=*****
ldap.bindPassword=******
ldap.user.baseDn=****
ldap.user.request=(&(objectCategory=User)(sAMAccountName={login}))
ldap.user.realNameAttribute=cn
ldap.windows.user.realNameAttribute=cn
ldap.user.emailAttribute=mail
sonar.properties? (and please give the usual details about SonarQube/Plugin version) - Nicolas B. - SonarSource Team