OxideBBS is a modern Rust BBS engine for telnet callers, ANSI/CP437 screens, DecentDB persistence, local sysop operations, and DOS door games.
It keeps the caller experience byte-oriented and classic while giving sysops a clean Rust codebase, a real database layer, auditable runtime operations, Docker deployment, and a GitHub-native release workflow.
Built for sysops. Driven by code.
The canonical repository is:
https://github.com/sphildreth/oxidebbs
- π‘ Telnet Caller Runtime - Multi-node telnet serving with session lifecycle tracking, idle timeout handling, graceful shutdown, and live node state.
- π¨ ANSI/CP437-First UI - Raw ANSI assets, CP437 conversion, 40-column and 80-column screen profiles, paging, caller-safe prompts, and CRLF-normalized telnet output.
- π§ Configurable Menus - Login, main, info, message, door, logoff, and nested submenu routing with hotkey-driven caller commands.
- π€ Accounts And Auth - New-user creation, Argon2id password hashing, sysop accounts, security levels, persistent lockout state, and audit-friendly login outcomes.
- π¬ Local Message Areas - DecentDB-backed message areas, posting, reading, replies, private-mail foundation, moderation fields, and SQL-side visibility filtering.
- πΉοΈ DOS Door Support - DOSEMU2-based live door launches,
DOOR.SYSandDORINFO1.DEFdrop files, per-node runtime directories, byte bridging, timeout cleanup, and durabledoor_runsrecords. - π§ͺ Bundled Door Fixture - Oxide-owned
oxide-checkDOS test door for validating drop files, DOSEMU2 command planning, and live COM1 byte flow without bundling third-party doorware. - ποΈ DecentDB Persistence - DecentDB is the only system database, with schema markers, migrations, users, sessions, messages, doors, audit events, backup/export/import, and doctor checks.
- π§βπ» Sysop CLI And TUI - Local CLI commands plus a Ratatui sysop console for dashboard, nodes, users, doors, messages, database, logs, config, ANSI, audit, doctor, and read-only workflows.
- π Local Control Socket - Same-UID Unix control channel for live status, node list/show, disconnects, direct node messages, broadcasts, and stale-node recovery.
- π Operational Logs And Audit Trail - Configurable text or JSON logs, rotation, audit retention, startup/shutdown events, door events, auth events, and sysop action records.
- π³ Docker Deployment - Cross-platform Docker Compose path for Windows, macOS, and Linux hosts with OxideBBS, DOSEMU2, assets, config, and the test door inside a Linux runtime image.
- π§± Modular Rust Workspace - Focused crates for server, core domain, term, telnet, DecentDB repositories, doors, and local sysop tooling.
Docker Compose is the recommended cross-platform deployment path. It includes DOSEMU2 and the bundled Oxide-owned test door fixture.
OXIDEBBS_SYSOP_PASSWORD='choose-a-real-password' docker compose up -d --buildConnect with SyncTERM or telnet:
telnet localhost 2323Common Docker sysop commands:
docker compose run --rm oxidebbs status
docker compose run --rm oxidebbs nodes list
docker compose run --rm oxidebbs doors check oxide-check
docker compose run --rm oxidebbs doors test oxide-check --user sysop --dry-runSee docs/project/docker.md for first-boot variables, volumes, reset steps, door testing, and Windows/macOS notes.
GitHub Releases publish oxidebbs-server packages and SHA-256 checksums for:
oxidebbs-<tag>-x86_64-unknown-linux-gnu.tar.gzoxidebbs-<tag>-x86_64-apple-darwin.tar.gzoxidebbs-<tag>-x86_64-pc-windows-msvc.zip
Each package includes the server binary, bundled assets, example configs, the
Oxide-owned oxide-check test door fixture, license files, and security policy.
Docker remains the simplest deployment path for Windows and macOS sysops who
want DOS door support because live door execution targets a Linux runtime with
DOSEMU2.
Prerequisites:
- Rust stable with
rustfmtandclippy clangandlibclang-devfor DecentDB's native build integration- DOSEMU2 for live DOS door execution
- Node.js for building the documentation site
On Debian/Ubuntu:
sudo apt-get install -y clang libclang-devCreate a local board:
cargo run -p oxidebbs-server -- setupValidate the configuration:
cargo run -p oxidebbs-server -- check
cargo run -p oxidebbs-server -- config checkStart the telnet listener:
cargo run -p oxidebbs-server -- serveAfter setup, OxideBBS uses config/oxidebbs.toml by default. A clean checkout
without that file falls back to config/oxidebbs.example.toml.
OxideBBS is local-admin-first: there is no remote web admin surface in the
current release line. Use the CLI, the local sysop TUI, and the local control
socket from the host running oxidebbs-server.
cargo run -p oxidebbs-server -- status
cargo run -p oxidebbs-server -- nodes list
cargo run -p oxidebbs-server -- users list
cargo run -p oxidebbs-server -- messages areas list
cargo run -p oxidebbs-server -- doors list
cargo run -p oxidebbs-server -- logs recent
cargo run -p oxidebbs-server -- db doctorLaunch the local sysop TUI:
cargo run -p oxidebbs-server -- sysopThe TUI can attach to a running server through
runtime/oxidebbs-control.sock; when no socket is available it can start an
embedded serve runtime for the TUI session. Selectable themes include
oxide-classic, wildcat, telegard, vbbs, mystic, midnight, and
high-contrast.
OxideBBS isolates door execution from core session logic. A live DOS door session uses this byte path:
caller telnet client
<-> OxideBBS caller transport
<-> OxideBBS PTY byte bridge
<-> DOSEMU2 COM1 pts backend
<-> DOSEMU2-emulated COM1 UART
<-> DOS door program
Validate the bundled oxide-check fixture without launching a live caller
session:
cargo run -p oxidebbs-server -- --config config/oxidebbs.example.toml doors check oxide-check
cargo run -p oxidebbs-server -- --config config/oxidebbs.example.toml doors dropfile oxide-check --user sysop --node 1 --format DORINFO1.DEF
cargo run -p oxidebbs-server -- --config config/oxidebbs.example.toml doors test oxide-check --user sysop --dry-runOxideBBS does not bundle copyrighted or abandonware DOS doors. Add third-party doors only when you have the rights to run and distribute them.
The documentation site is published at oxidebbs.com. Source lives in docs/.
npm ci
npm run docs:dev
npm run docs:buildUseful docs:
- Getting Started
- Deployment and Operations
- Docker Deployment
- Sysop CLI
- Caller Commands
- Architecture
- Changelog
.
βββ crates/
β βββ oxidebbs-server/ # binary entrypoint, CLI, telnet server
β βββ oxidebbs-core/ # users, sessions, nodes, permissions, menus
β βββ oxidebbs-term/ # ANSI/CP437 rendering and terminal helpers
β βββ oxidebbs-telnet/ # telnet transport and negotiation
β βββ oxidebbs-db/ # DecentDB repository layer and schema helpers
β βββ oxidebbs-door/ # door metadata, drop files, runners
β βββ oxidebbs-sysop/ # local Ratatui sysop console and services
βββ assets/ # bundled ANSI, ASCII, text, and screen assets
βββ config/ # example board and door configuration
βββ design/ # specs, roadmap, ADRs, and architecture notes
βββ docs/ # VitePress documentation site
βββ graphics/ # project logo and README graphics
βββ scripts/ # development and door validation scripts
βββ tools/doors/ # Oxide-owned DOS test door fixture
The CI gate is:
./scripts/dev-check.shIt runs:
cargo fmt --all --check
cargo check --workspace --locked
cargo test --workspace --locked
cargo clippy --workspace --all-targets --locked -- -D warningsUse --locked when validating Rust changes because Cargo.lock is committed.
Meaningful behavior, architecture, config, or product-scope changes should also
update the relevant design docs and ADRs.
- Telnet is the supported caller transport for the v1 release line.
- DecentDB is the only system database.
- Remote caller UI is ANSI/CP437 byte-oriented, not Unicode-first.
- Ratatui is used only for the local sysop console, not caller screens.
- Physical modem/serial support, BinkP polling, full FTN/OxideNet runtime, and file transfer support are future work.
- Public telnet exposure is an operator decision. Telnet sends credentials and
caller traffic in plaintext; the generated config binds to
127.0.0.1:2323by default.
Issues and pull requests are welcome. Start with
CONTRIBUTING.md, keep the caller experience ANSI-first, and
run ./scripts/dev-check.sh before submitting changes.
Report security issues privately to the repository owner. See SECURITY.md for the current policy and priorities.
OxideBBS is licensed under the Apache License, Version 2.0. See LICENSE and NOTICE. The repository licensing decision and contribution policy are recorded in design/adr/0007-use-github-and-apache-2.md.

