feat: Implement basic user search beyond mail attribute

This commit is contained in:
selfhoster selfhoster 2026-09-21 11:58:24 +02:00
commit ec36ea9116
5 changed files with 78 additions and 278 deletions

View file

@ -2,13 +2,12 @@ mod client_state;
pub use client_state::LdapClientState;
mod dn;
pub use dn::{Dn, MalformedDn};
mod filter;
mod handler;
mod op;
pub use handler::ldap_handler;
pub use op::bind::{BindDn, op_bind};
pub use op::ext::op_ext;
pub use op::search::search_by_mail_filter;
pub use op::search::search_by_everything;
mod return_error;
pub use return_error::LdapReturnError;
mod stream;