mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-09 09:13:02 +03:00
Allow configuration of invitation org name when inviting users #1838
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @aroberts on GitHub.
Subject of the issue
Inviting users via email results in a reference to a "bitwarden_rs" organization. This is turning out to be confusing to my users - it would be great if I could configure that string to be something else.
It looks like the string is hardcoded at
src/api/admin.rs:164:I think just being able to set this string via environment variables would solve my problem.
Your environment
@aroberts commented on GitHub:
I'd vote for a separate var, but it would be great to default the new var's value to SMTP_FROM_NAME if left blank/unset
@dani-garcia commented on GitHub:
Sounds reasonable to me. Should we use the already existing SMTP_FROM_NAME as it serves a similar purpose? Or create a separate option?
@dani-garcia commented on GitHub:
Fixed, decided on creating a separate independent option to avoid making the configuration logic more complex than needed.