feat: Search queries by mail attribute

This commit is contained in:
selfhoster selfhoster 2026-09-03 15:21:26 +02:00
commit c77223048c
9 changed files with 592 additions and 78 deletions

View file

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