Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix invited user registration without SMTP #5712

Merged
merged 1 commit into from
Apr 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions src/api/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -744,8 +744,13 @@ async fn register_verification_email(

let should_send_mail = CONFIG.mail_enabled() && CONFIG.signups_verify();

if User::find_by_mail(&data.email, &mut conn).await.is_some() {
if should_send_mail {
let token_claims =
crate::auth::generate_register_verify_claims(data.email.clone(), data.name.clone(), should_send_mail);
let token = crate::auth::encode_jwt(&token_claims);

if should_send_mail {
let user = User::find_by_mail(&data.email, &mut conn).await;
if user.filter(|u| u.private_key.is_some()).is_some() {
// There is still a timing side channel here in that the code
// paths that send mail take noticeably longer than ones that
// don't. Add a randomized sleep to mitigate this somewhat.
Expand All @@ -754,16 +759,9 @@ async fn register_verification_email(
let delta: i32 = 100;
let sleep_ms = (1_000 + rng.random_range(-delta..=delta)) as u64;
tokio::time::sleep(tokio::time::Duration::from_millis(sleep_ms)).await;
} else {
mail::send_register_verify_email(&data.email, &token).await?;
}
return Ok(RegisterVerificationResponse::NoContent(()));
}

let token_claims =
crate::auth::generate_register_verify_claims(data.email.clone(), data.name.clone(), should_send_mail);
let token = crate::auth::encode_jwt(&token_claims);

if should_send_mail {
mail::send_register_verify_email(&data.email, &token).await?;

Ok(RegisterVerificationResponse::NoContent(()))
} else {
Expand Down
Loading