I am creating an user in liferay with the email address 'ABCD@domain.com' but when checked in the USER_ table in liferay database its store as 'abcd@domain.com'. I am using below API
UserLocalServiceUtil.addUser(creatorUserId,
companyId, autoPassword, password1, password2,
autoScreenName, screenName, usernameoremail, facebookId,
openId, Locale.ENGLISH, usernameoremail,
StringPool.BLANK, StringPool.BLANK, prefixId, suffixId,
male, birthdayMonth, birthdayDay, birthdayYear,
jobTitle, groupIds, organizationIds, roleIds,
userGroupIds, sendEmail, serviceContext);
at this point we are sure that email is in the form which we had sent.
Any idea why this is happenning? Any property in portal-ext which we can use to store it as is?