this.clearOldAccountRequests();
User user = (User) userManager.getUser(username);
user.setLastPasswordChange(new Date());
user.setPassword(password);
user.setDisabled(false);
userManager.updateUser(user);
userManager.changePassword(username, password);// Per salvare password non in chiaro
this.getUserRegDAO().removeConsumedToken(token);
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "reactivateUser");
throw new ApsSystemException("Error in Account activation", t);