[
https://issues.apache.org/jira/browse/ROL-1581?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Glen Mazza closed ROL-1581.
---------------------------
Resolution: Fixed
Thanks for bringing this to our attention. The source code is showing that
this problem has been fixed sometime after you had reported it.
> CustomUserRegistry uses fullName for emailAddress
> -------------------------------------------------
>
> Key: ROL-1581
> URL: https://issues.apache.org/jira/browse/ROL-1581
> Project: Apache Roller
> Issue Type: Bug
> Components: Authentication, Roles and Access Controls
> Affects Versions: 3.1
> Environment: All
> Reporter: Rakesh Jain
> Assignee: Roller Unassigned
>
> org.apache.roller.ui.core.security.CustomUserRegistry class has a method
> getUserDetailsFromAuthentication(), which sets userDetails from
> authentication object. While setting emailAddress, it is using fullName, like:
> ud.setFullName(rollerDetails.getFullName());
> ud.setEmailAddress(rollerDetails.getFullName());
> This simple fix is needed.
> ud.setFullName(rollerDetails.getFullName());
> ud.setEmailAddress(rollerDetails.getEmailAddress());
> This will help LDAP/SSO or custom user details objects to work properly with
> roller.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)