Import upstream v0.16.22, stripped

Upstream commit: 474dd0229cb20cf513036619781ed97bd8073c3f
Enterprise-only files removed or emptied: 63
Enterprise-only snippets removed: 117 in 50 files
Dangling module declarations removed: 5
Cargo edits turning enterprise off: 14
Verification: clean
Enterprise feature gates left for rebuilt features: 19 in 18 files

Produced by tools/fork/strip.py. The full report is in docs/fork/strip-reports/ on main.
This commit is contained in:
2026-09-18 10:21:56 -07:00
commit 7dae9b29fd
1650 changed files with 485521 additions and 0 deletions
@@ -0,0 +1,41 @@
require ["duplicate", "ihave", "reject", "body"];
if body :contains "TPS" {
if duplicate :handle "one_sec_expire" :seconds 1 {
error "one_sec_expire handle should not be duplicate.";
}
if duplicate :uniqueid "one_sec_expire" :seconds 1 {
error "one_sec_expire uniqueid should not be duplicate.";
}
if duplicate :handle "five_secs_expire" :seconds 5 {
error "five_secs_expire handle should not be duplicate.";
}
if duplicate :uniqueid "five_secs_expire" :seconds 5 {
error "five_secs_expire uniqueid should not be duplicate.";
}
discard;
} elsif body :contains "T.P.S." {
if duplicate :handle "one_sec_expire" :seconds 1 {
error "one_sec_expire handle should have expired.";
}
if duplicate :uniqueid "one_sec_expire" :seconds 1 {
error "one_sec_expire uniqueid should have expired.";
}
if not duplicate :handle "five_secs_expire" :seconds 5 {
error "five_secs_expire handle should be duplicate.";
}
if not duplicate :uniqueid "five_secs_expire" :seconds 5 {
error "five_secs_expire uniqueid should be duplicate.";
}
reject "No soup for you, next!";
} else {
error "Unexpected body contents.";
}
@@ -0,0 +1,5 @@
require ["include", "ihave"];
include "test_include_this";
error "'stop' within included script ignored or include failed.";
@@ -0,0 +1,5 @@
require ["include", "ihave"];
include :personal "Test Script";
error "'stop' within included script ignored or mixed-case include failed.";
@@ -0,0 +1,5 @@
require ["include", "ihave"];
include :global "common";
error "'stop' within included script ignored or global include failed.";
@@ -0,0 +1,4 @@
require "reject";
reject "Rejected from an included script.";
stop;
@@ -0,0 +1,81 @@
require ["fileinto", "mailbox", "mailboxid", "special-use", "ihave", "imap4flags", "vnd.stalwart.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.";
}
@@ -0,0 +1,13 @@
require ["enotify", "fcc", "mailbox", "editheader", "imap4flags"];
if header :matches "Subject" "*TPS*" {
notify :message "It's time to file your TPS report."
:fcc "Notifications" :create
"mailto:[email protected]?subject=It's%20TPS-o-clock";
deleteheader "Subject";
addheader "Subject" "${1}**censored**${2}";
setflag "$seen";
}
keep;
@@ -0,0 +1,5 @@
require ["enclose"];
enclose :subject "Check this out" "Attached you'll find a message I just received.";
redirect "[email protected]";
discard;
@@ -0,0 +1 @@
keep :invalidtag;
@@ -0,0 +1,3 @@
if true {
keep;
}