The AGPL asks a modified version to carry prominent notices saying it was modified, and giving a date. Publishing the source is the conveyance that asks for it, so it wants doing before the repository is public rather than at the release. Every upstream file the fork changed now says so in its header, beneath the notice it came with: 164 files, found by diffing against the upstream snapshot branch rather than by guessing, so the list is what actually differs. Files the fork wrote itself already carry their own copyright and need nothing. Upstream's notices are untouched, which its licence requires and which was already true. The README says the same thing in prose, since the obligation is on the work as a whole and not only its Rust files. Builds unchanged: the server and the test binary both compile.
31 lines
784 B
Rust
31 lines
784 B
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <[email protected]>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*
|
|
* Modified by Coffey Labs in 2026 for INBUXA.
|
|
*/
|
|
|
|
pub mod discovery;
|
|
pub mod integration;
|
|
pub mod ldap;
|
|
pub mod oidc; // inbuxa: rebuilt from the per-domain directories spec
|
|
#[cfg(feature = "sqlite")]
|
|
pub mod per_domain; // inbuxa: per-domain directories
|
|
#[cfg(feature = "sqlite")]
|
|
pub mod sql;
|
|
pub mod synchronization;
|
|
pub mod unavailable;
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
pub async fn directory_tests() {
|
|
ldap::test().await;
|
|
oidc::test().await;
|
|
unavailable::test().await;
|
|
discovery::test().await;
|
|
#[cfg(feature = "sqlite")]
|
|
sql::test().await;
|
|
synchronization::test().await;
|
|
integration::test().await;
|
|
}
|