Recover account on a network without email

Checklist
[x] I have read intro post: About the Installation Issues category
[x] I have read the tutorials, help and searched for similar issues
[x] I provide relevant information about my server (component names and versions, etc.)
[x] I provide a copy of my logs and healthcheck
[x] I describe the steps I have taken to trouble shoot the problem
[x] I describe the steps on how to reproduce the issue

I have a passbolt instance running on a network without a mail server, account creation works through the CLI but I can’t find a way to recover a account through the web extension without sending a email. Is there a method to allow a user to add their key back into the extension without requiring a email being sent to a email that doesn’t exist?

Thanks

What you can do is check in your database for the token relative to the recovery.
https://<your_domain>/setup/recover/<user_id>/<authentication_token.token>

for example:
https://www.passbolt.test/setup/recover/89f69388-50a0-4a6e-ab28-07c374b1fa12/2747ecdf-885e-46ae-83aa-4d2b17c40013

You can get the information in the database:

select token from authentication_tokens where user_id = (select id from users where username = 'your@email.com') and type = 'recover' order by created DESC;

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.