Everything clients, users and operators meet now carries the fork's name, with no aliases (SPEC.md §2.4, changed here from "protocol identifiers stay"): - JMAP: upstream's registry capability is urn:inbuxa:jmap:registry, beside the fork's own urn:inbuxa:jmap. - WebDAV lock and sync tokens are urn:inbuxa:dav*; clients resync once. - Sieve: vnd.inbuxa.while and vnd.inbuxa.expressions. sieve-rs spells these into its compiler, so it's vendored (vendor/sieve-rs, 0.7.3) and patched in; a unit test fails if Cargo.lock ever moves past the vendored copy. The trusted runtime now names itself too, rather than answering sieve-rs's default. - The web interface's OAuth client is inbuxa-webui. On every start the old stalwart-webui client is removed and any application naming it is moved over. - The spam filter's blobs are INBUXA_SPAM_*; every start moves any left under the old keys, so a trained model survives. - SQL stores and log files default to inbuxa, in the code and in the schema served to the admin (checksum regenerated). - Settings are INBUXA_* only. A STALWART_* variable that's set where its INBUXA_* one isn't stops the server at startup, naming it. - The version-upgrade messages link docs.inbuxa.org's migration page, and the OpenAPI description, smtp crate metadata and web-push test fixtures lose the name. Kept on purpose, allowlisted with reasons: the OAuth key-derivation contexts (renaming them would end every session and invalidate every sealed client id) and the hashed application prefix. Also fixes a latent start-up failure: ensure_client updated an existing first-party client with a revision of 0, which the registry's assertion never matches, so adding a redirect URI or changing the webmail secret failed start-up. And the principal session test now expects legacyProtocols (C-1, added 2026-09-21), which it had missed. Tested: the server builds without warnings; common's 106 unit tests, including the vendoring check; a new integration test for the two start-up migrations; and the webdav, jmap, imap and SMTP Sieve suites.
90 lines
1.8 KiB
TOML
90 lines
1.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
# Vendored crates are patched in below, not built as members.
|
|
exclude = ["vendor"]
|
|
members = [
|
|
"crates/main",
|
|
"crates/types",
|
|
"crates/http",
|
|
"crates/http-proto",
|
|
"crates/jmap",
|
|
"crates/jmap-proto",
|
|
"crates/email",
|
|
"crates/imap",
|
|
"crates/imap-proto",
|
|
"crates/smtp",
|
|
"crates/managesieve",
|
|
"crates/pop3",
|
|
"crates/dav-proto",
|
|
"crates/scim-proto",
|
|
"crates/scim",
|
|
"crates/dav",
|
|
"crates/groupware",
|
|
"crates/spam-filter",
|
|
"crates/nlp",
|
|
"crates/store",
|
|
"crates/coordinator",
|
|
"crates/directory",
|
|
"crates/registry",
|
|
"crates/services",
|
|
"crates/utils",
|
|
"crates/common",
|
|
"crates/trc",
|
|
"crates/migration",
|
|
"crates/features",
|
|
"tests",
|
|
]
|
|
|
|
[workspace.lints.clippy]
|
|
result_unit_err = "allow"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
debug = 1
|
|
#codegen-units = 4
|
|
lto = false
|
|
incremental = true
|
|
panic = 'unwind'
|
|
debug-assertions = true
|
|
overflow-checks = false
|
|
rpath = false
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
panic = 'unwind'
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
rpath = false
|
|
strip = true
|
|
|
|
[profile.test]
|
|
opt-level = 0
|
|
debug = 1
|
|
#codegen-units = 16
|
|
lto = false
|
|
incremental = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
rpath = false
|
|
|
|
[profile.bench]
|
|
opt-level = 3
|
|
debug = false
|
|
codegen-units = 1
|
|
lto = true
|
|
incremental = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
rpath = false
|
|
|
|
# inbuxa: sieve-rs spells upstream's name into its Sieve extension names
|
|
# (vnd.stalwart.*), which scripts `require` and ManageSieve advertises.
|
|
# vendor/sieve-rs is the published 0.7.3 with those renamed; see its
|
|
# VENDORED.md. Re-vendor when the version in Cargo.lock moves.
|
|
[patch.crates-io]
|
|
sieve-rs = { path = "vendor/sieve-rs" }
|