My system is already aware of the users' email addresses. When a user signs up, they get an error message from allauth:
A user is already registered with this e-mail address.
I advise users to reset their password when they see this message. However, once they've reset their password, allauth triggers the email address confirmation flow, since ACCOUNT_EMAIL_VERIFICATION = True.
It is inconvenient and unneccessary for the user to also do email validation at this point. How can I avoid email verification in this scenario?