Email Change requires passcode #7360
Unanswered
bobsdacool
asked this question in
Q&A
Replies: 1 comment 1 reply
-
|
If you did not enable mail you can set vaultwarden/src/api/core/accounts.rs Lines 981 to 987 in d6a3d53 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all.
Hoping someone can help me with this issue I'm having.
My sso setup was complicated with username, preferred username, name, nickname etc... scope mappings.
I recently removed email as a verification method on SSO, and adopted a passkey method. I don't want to deal with managing friends and families emails etc...
Unfortunately a range of services rely on the email scope mapping for their sign ins and sign ups.
So I've taken to adapting a scope to return email as username@domain.org, and removing all the other mappings.
return {
"email": f"{user.username}@domain.org",
"email_verified": True,
}
Fortunately I haven't included anyone other than myself in my vaultwarden instance, as email cannot be changed from the admin interface, but I'm running into an issue with my own account.
To change over emails vaultwarden requires an email verification code. However as the emails for my accounts are duds, this won't ever work. Is there a way of changing the email without having it be a real email?
Beta Was this translation helpful? Give feedback.
All reactions