When creating a new user, the email field would not accept a .ca domain. I have to create the user with a wrong domain and edit the user later to change it back to the readl domain.
Comments: Yes the issue with the validation is that it uses a RegEx which is the worst way to validate emails addresses now. The only one I have seen come close is over 600 characters long and does not cover the new unicode formats which will be possible (or already is). There is code we use to validate email addresses and the user UI will need to be updated to do a server side validation or some kind of ajax call using a CustomValidator.
Comments: Yes the issue with the validation is that it uses a RegEx which is the worst way to validate emails addresses now. The only one I have seen come close is over 600 characters long and does not cover the new unicode formats which will be possible (or already is). There is code we use to validate email addresses and the user UI will need to be updated to do a server side validation or some kind of ajax call using a CustomValidator.