I am using Rails 4.0.2 and Devise 3.2.2 to handle user registration / authentication. I have enabled :confirmable
but was wondering if there is a way to configure :confirmable
?
eg: authentication key expiry...etc
Currently, when users sign up with email address: [email protected], that email address stays taken/unavailable even when the user doesn't activate/verify that email address.
How do I configure Devise :confirmable
so that the email address a user signed up with will becomes available again if the user does not activate in a period of time ?
Thanks!