I had to double check. I went through the process and spun up a second instance and copied my config making sure that invitation_org_name was set. Here’s the process I took to replicate the issue.
For this example, invitiation_org_name = “Bitwarden at mysite.com”
- Invite a user from the admin panel
- Email arrives from the system. Subject and bold text in the email both show “
Bitwarden at mysite.com”.
- User clicks on “Join Organization Now” and creates an account.
- User receives welcome email providing the URL to the vault.
- User logs in.
- Email arrives stating New Device Logged In From , and in the same second, a second email arrives with the subject of “Invitation to bitwarden_rs confirmed” and the body states “This email is to notify you that you have been confirmed as a user of bitwarden_rs”.
So my thinking is that it’s only in response to invitations, maybe even just admin invitations but I haven’t went deep enough yet.
Diagnostics
config.json
(forgive the space between mysite and .com - autoformatting is killing me)
{
“domain”: “xxxx”,
“disable_icon_download”: false,
“signups_allowed”: false,
“signups_verify”: false,
“signups_verify_resend_time”: 3600,
“signups_verify_resend_limit”: 6,
“invitations_allowed”: true,
“password_iterations”: 100000,
“show_password_hint”: false,
“admin_token”:“xxxx”,
“invitation_org_name”: “Bitwarden at mysite .com”,
“ip_header”: “X-Real-IP”,
“icon_cache_ttl”: 2592000,
“icon_cache_negttl”: 259200,
“icon_download_timeout”: 10,
“icon_blacklist_non_global_ips”: true,
“disable_2fa_remember”: false,
“authenticator_disable_time_drift”: false,
“require_device_email”: false,
“reload_templates”: false,
“log_timestamp_format”: “%Y-%m-%d %H:%M:%S.%3f”,
“disable_admin_token”: false,
“_enable_yubico”: false,
“_enable_duo”: false,
“_enable_smtp”: true,
“smtp_host”: “xxxx”,
“smtp_ssl”: true,
“smtp_explicit_tls”: true,
“smtp_port”: 465,
“smtp_from”: “xxxx”,
“smtp_from_name”: “Bitwarden Admin”,
“smtp_username”: “xxxx”,
“smtp_password”: “xxxx”,
“smtp_auth_mechanism”: “login”,
“smtp_timeout”: 15,
“smtp_debug”: false,
“smtp_accept_invalid_certs”: false,
“smtp_accept_invalid_hostnames”: false,
“_enable_email_2fa”: true,
“email_token_size”: 6,
“email_expiration_time”: 600,
“email_attempts_limit”: 3
}