Does adding via ldap push it through the import feature? I could try maybe wrapping the data in quotes.
This is the json returned from the lookup service
[{"email":"jdoe@domain.com","name":"John Doe","info":"jdoe@domain.com - John Doe (remote)","id":"auth:ldap:CN=Doe\, John,OU=Accounts,OU=TAG,DC=domain,DC=com","\/bin\/true":"jdo"}]
In the chrome debugger it makes a call to the following url when clicking on the record: It returns a 404 error:
http://tickets.domain.com/scp/ajax.php/users/select/auth%3Aldap%3ACN%3DDoe%5C%2C%20John%2COU%3DAccounts%2COU%3DTAG%2CDC%3Ddomain%2CDC%3Dcom
This Generates a 404 error where a user with no comma seems to work.
This is the decoded url: http://tickets.domain.com/scp/ajax.php/users/select/auth:ldap:CN=JDoe\, John,OU=Accounts,OU=TAG,DC=domain,DC=com
Commas in active directory are escaped with a backslash so I'm guessing that \, in the CN is not handled properly.
