- crates/main: package and [[bin]] renamed to inbuxa; homepage inbuxa.org; license AGPL-3.0-only (upstream is dual; the fork takes the AGPL). - types::branding::env_var reads INBUXA_<name>, falling back to STALWART_<name> with a warning, for all nine server settings. STALWART_APP_ and STALWART_SPAM_* storage keys are unchanged. - New-install default paths /var/lib/inbuxa and /var/log/inbuxa. - Dockerfiles, systemd unit, launchd plist and AppArmor profile renamed. - Upstream's .github moved to .github-upstream so none of it runs. - install.sh stubbed: upstream's would install Stalwart. - Two missed brand strings: the SMTP Received header and the utils user agent.
13 lines
498 B
Bash
13 lines
498 B
Bash
#!/usr/bin/env sh
|
|
# SPDX-FileCopyrightText: 2026 John Coffey
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
# Upstream's install.sh downloads Stalwart's release binaries from GitHub, so
|
|
# it would install Stalwart, not INBUXA. It's replaced with this notice until
|
|
# INBUXA publishes releases of its own.
|
|
|
|
echo "INBUXA has no releases yet, so there is nothing to install." >&2
|
|
echo "Build from source instead: cargo build --release -p inbuxa" >&2
|
|
echo "See https://inbuxa.org once it's up." >&2
|
|
exit 1
|