I needed to create this activation key based approach for user registration, that a user gets registered only when he:
1. fills the user creation form in application.
2. gets an email with an activation link
3. goes to the link to activate account
I noticed an entry in user POJO called activationKey. There's also a a method activateAccount in UserAction.
Any relations between the two? Any suggestions on how can i implement the new functionality resuing some stuff in here [originally posted on jforum.net by vikram.arora.in]
Is the post being done as the Anonymous user or the unactivated user? E.g., what id shows up on the posting.
If it's anonymous, you need to remove the anonymous user from the General group and add it to a (probably new) group that can't post.
If the un-authenticated user is showing up, then it may be a configuration issue or bug. And more details will be needed. [originally posted on jforum.net by monroe]
The un-authenticated user is showing up.
But I have create the user for testing the email authentication and so the user has the same ip as an authenticated user.
Is that a problem? [originally posted on jforum.net by JK]