Over-engineered play stack for infinidim.net — Stalwart wired into the shared Postgres + Redis + Garage S3 over the tailnet, with no WAN presence. Public mail ports are fronted by a separate caddy-l4 layer-4 proxy (caddy/) that can run on any tailnet host tagged tag:reverse-proxy — decoupled from the mailbox. - docker-compose.yml: ts-stalwart sidecar + stalwart, backends via MagicDNS - config/config.toml: PG (data/fts) + Redis (lookup) + S3 (blob) strawman - caddy/: xcaddy build with caddy-l4, JSON layer-4 mail proxy, own compose - acl-snippet.hujson: tag:stalwart owner + backend/edge grants - .env.example + gitignored .env (pulled from shared infra) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
80 lines
4.0 KiB
Plaintext
80 lines
4.0 KiB
Plaintext
# ============================================================================
|
||
# tailwart — operator configuration (Tailscale × Stalwart)
|
||
# ============================================================================
|
||
# Copy to .env and fill in. The mailbox stack (docker-compose.yml) and the
|
||
# edge proxy (caddy/docker-compose.yml) both read their values from here.
|
||
#
|
||
# Design: Stalwart runs as a Tailscale sidecar with NO WAN presence. A
|
||
# layer-4 (TCP) Caddy proxy on a public-IP host pipes the raw mail ports to it
|
||
# over the tailnet. The proxy can live on a DIFFERENT machine than the mailbox
|
||
# — that's the whole point. See CLAUDE.md.
|
||
# ============================================================================
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Tailscale — same OAuth client as the rest of the tailnet
|
||
# ----------------------------------------------------------------------------
|
||
# Sidecar advertises tag:stalwart. Assign that tag to the OAuth client on both
|
||
# the Devices/Core and Keys/AuthKeys scopes, or node creation 403s at boot.
|
||
TS_OAUTH_CLIENT_SECRET=
|
||
TS_TAILNET=tailfe8c.ts.net
|
||
|
||
# MagicDNS hostname for the Stalwart sidecar → reachable at
|
||
# ${STALWART_MAGIC_NAME}.${TS_TAILNET} over the tailnet.
|
||
STALWART_MAGIC_NAME=stalwart
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Mail identity
|
||
# ----------------------------------------------------------------------------
|
||
# The domain you send/receive for, and the public MX/hostname clients connect
|
||
# to (its A record points at the EDGE PROXY's public IP, not the mailbox).
|
||
STALWART_DOMAIN=infinidim.net
|
||
STALWART_HOSTNAME=mail.infinidim.net
|
||
|
||
# Initial admin password for the Stalwart web console (first boot only).
|
||
# Generate: openssl rand -base64 24
|
||
STALWART_FALLBACK_ADMIN_SECRET=
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Over-engineering, part 1/3 — Postgres (shared instance on the tailnet)
|
||
# ----------------------------------------------------------------------------
|
||
# Stalwart's metadata + full-text store. Create the role/db once (see README).
|
||
DB_MAGIC_NAME=the-record-prod
|
||
STALWART_DB_NAME=stalwart
|
||
STALWART_DB_USER=stalwart
|
||
# Generate: openssl rand -base64 24 (avoid / and + if you ever inline it in a URL)
|
||
STALWART_DB_PASSWORD=
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Over-engineering, part 2/3 — Redis (shared instance on the tailnet)
|
||
# ----------------------------------------------------------------------------
|
||
# Stalwart's in-memory store: distributed rate limits, caches, token revocation.
|
||
REDIS_MAGIC_NAME=slo-time-prod
|
||
# Use a dedicated logical DB index so we don't collide with the fediverse apps.
|
||
STALWART_REDIS_DB=3
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Over-engineering, part 3/3 — Garage S3 (shared instance on the tailnet)
|
||
# ----------------------------------------------------------------------------
|
||
# Stalwart's blob store: message bodies, attachments, sieve scripts.
|
||
# Reuses the shared Garage access key; needs its own bucket (see README).
|
||
GARAGE_MAGIC_NAME=garage
|
||
GARAGE_REGION=garage
|
||
GARAGE_ACCESS_KEY_ID=
|
||
GARAGE_SECRET_ACCESS_KEY=
|
||
STALWART_S3_BUCKET=stalwart-mail
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# Outbound delivery
|
||
# ----------------------------------------------------------------------------
|
||
# Most VPS providers block outbound :25. If yours does, relay through a
|
||
# smarthost (host:port). Leave blank to attempt direct MX delivery.
|
||
STALWART_SMARTHOST=
|
||
|
||
# ----------------------------------------------------------------------------
|
||
# TLS — Stalwart self-manages certs via ACME DNS-01 (works behind the L4 proxy)
|
||
# ----------------------------------------------------------------------------
|
||
# DNS provider + token for the DNS-01 challenge. Leave blank to instead mount
|
||
# a certbot-issued cert (see config/config.toml [certificate]).
|
||
STALWART_ACME_PROVIDER=
|
||
STALWART_ACME_TOKEN=
|