Recover a User¶
Users should be able to recover themselves, however if you don't have email configured, then you can use the following approach:
docker exec -it passbolt mysql -u root -p USE `passbolt`;
SELECT `user_id`,`token`
FROM `authentication_tokens`
WHERE `user_id` IN ( SELECT `id` FROM `users` WHERE `username` = '${EMAIL}' )
AND `type` = 'recover'; ... and then visiting a URL formatted as below:
${APP_FULL_BASE_URL}/setup/recover/start/${USER_ID}/${TOKEN} See this for reference.