I'm building a Firebase app and just implemented the email verification process. However, I was thinking that it could be a problem if the verification email would not expire. This way, users can just register with a random email address and not verify it, which means the real person with that email address cannot register anymore ( firebase.auth().createUserWithEmailAndPassword will just create this user in the Authentication tab, and that email address cannot be used anymore ). Is there a way to let the verification email expire? So for example, if the user does not verify his address within 24 hours, the email address becomes available again (or something similar).
Thanks!