- **Reviewer**: Heith Seewald
--- ** [tickets:#7833] Trim emails before saving them to mongo** **Status:** review **Milestone:** unreleased **Labels:** 42cc sf-2 sf-current **Created:** Thu Feb 12, 2015 02:01 PM UTC by Igor Bondarenko **Last Updated:** Mon Mar 16, 2015 09:56 AM UTC **Owner:** Igor Bondarenko Right now you can claim address like `"[email protected] "` (note spaces in the end) or even `"[email protected]\t"` (tab in the end, you can't type this but can copy&paste from some source. That's how I discovered this issue actually). That's a problem because on the UI you can't see this blank symbols and later, when user types the same email in, say, password recovery form, but without spaces in the end, system will not find it, therefore user will not be able to recover password. Also, association of commits with users and other stuff won't work. Probably fix is as simple as adding `.strip()` inside `EmailAddress.canonical`, since we use it everywhere already, but it's good to test/investigate further. Don't sure what to do with existing emails like this which are already in mongo. --- Sent from forge-allura.apache.org because [email protected] is subscribed to https://forge-allura.apache.org/p/allura/tickets/ To unsubscribe from further messages, a project admin can change settings at https://forge-allura.apache.org/p/allura/admin/tickets/options. Or, if this is a mailing list, you can unsubscribe from the mailing list.
