also log uid when email not found

This commit is contained in:
Tobias Florek 2021-05-19 11:30:13 +02:00
parent 2f6ecc6860
commit 8be4057e3b
1 changed files with 5 additions and 1 deletions

View File

@ -142,7 +142,11 @@ fn invite_from_ldap(
// println!("Invite response: {:?}", response);
}
} else {
println!("Warning: Email field, {:?}, not found on user", mail_field);
match ldap_user.attrs.get("uid").and_then(|l| l.first()) {
Some(user_uid) =>
println!("Warning: Email field, {:?}, not found on user {}", mail_field, user_uid),
None => println!("Warning: Email field, {:?}, not found on user", mail_field)
}
}
}