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.
82 lines
2.3 KiB
Sieve
82 lines
2.3 KiB
Sieve
require ["fileinto", "mailbox", "mailboxid", "special-use", "ihave", "imap4flags", "vnd.inbuxa.expressions"];
|
|
|
|
# SpecialUse extension tests
|
|
if not specialuse_exists ["inbox", "trash"] {
|
|
error "Special-use mailboxes INBOX or TRASH do not exist (lowercase).";
|
|
}
|
|
|
|
if not anyof(specialuse_exists "Inbox" "inbox",
|
|
specialuse_exists "Deleted Items" "trash") {
|
|
error "Special-use mailboxes INBOX or TRASH do not exist (mixed-case).";
|
|
}
|
|
|
|
if specialuse_exists "dingleberry" {
|
|
error "An invalid special-use exists.";
|
|
}
|
|
|
|
if specialuse_exists "archive" {
|
|
error "A non-existent special-use exists.";
|
|
}
|
|
|
|
if not specialuse_exists ["\\Inbox", "\\Trash"] {
|
|
error "Special-use mailboxes INBOX or TRASH do not exist (RFC 8579 attribute form).";
|
|
}
|
|
|
|
if not specialuse_exists "Deleted Items" "\\Trash" {
|
|
error "Deleted Items has no Trash special-use (RFC 8579 attribute form).";
|
|
}
|
|
|
|
if specialuse_exists "\\Archive" {
|
|
error "A non-existent special-use exists (RFC 8579 attribute form).";
|
|
}
|
|
|
|
# MailboxId tests
|
|
if not mailboxidexists "a" {
|
|
error "Inbox not found by mailboxid.";
|
|
}
|
|
|
|
if not mailboxidexists ["a", "b"] {
|
|
error "Inbox and Trash mailboxes not found by mailboxid.";
|
|
}
|
|
|
|
# MailboxExists tests
|
|
if not mailboxexists "Inbox" {
|
|
error "Inbox not found by name.";
|
|
}
|
|
|
|
if not mailboxexists ["Drafts", "Sent Items"] {
|
|
error "Drafts and Sent Items not found by name.";
|
|
}
|
|
|
|
# File into a special-use mailbox using the RFC 8579 attribute form
|
|
fileinto :specialuse "\\Drafts" "specialuse-fallback";
|
|
|
|
# File into new mailboxes using flags
|
|
fileinto :create "INBOX / Folder ";
|
|
fileinto :flags ["$important", "\\Seen"] :create "My/Nested/Mailbox/with/multiple/levels";
|
|
|
|
# Make sure all mailboxes were created
|
|
if not mailboxexists "Inbox/Folder" {
|
|
error "'Inbox/Folder' not found.";
|
|
}
|
|
|
|
if not mailboxexists "My/Nested/Mailbox/with/multiple/levels" {
|
|
error "'My/Nested/Mailbox/with/multiple/levels' not found.";
|
|
}
|
|
|
|
if not mailboxexists "My/Nested/Mailbox/with/multiple" {
|
|
error "'My/Nested/Mailbox/with/multiple' not found.";
|
|
}
|
|
|
|
if not mailboxexists "My/Nested" {
|
|
error "'My/Nested' not found.";
|
|
}
|
|
|
|
if not mailboxexists "My" {
|
|
error "'My' not found.";
|
|
}
|
|
|
|
if eval "llm_prompt('echo-test', 'hello world', 0.5) != 'hello world'" {
|
|
error "llm_prompt is unavailable.";
|
|
}
|