can someone explain the intuition behind this line? It seems weird to potentially send multiple password reset emails. Is this expected behavior?
Karen Tracey
unread,
Dec 3, 2014, 2:55:31 PM12/3/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
The password reset form asks for an email address, not username. (This is assuming default Django User model.) The email address may be associated with more than a single User on the system -- there is no requirement (by default) that the user email address be unique. So a password reset email is generated for each matching user, and the information presented in each email includes the specific username for which the reset link applies.