Requirements
Before you start, make sure you have these at hand. The whole flow happens from the terminal of your homelab.
Download & configure
$ mkdir vuzon && cd vuzon
$ curl -fsSL -O https://raw.githubusercontent.com/KN990x/vuzon/main/docker-compose.yml \
-O https://raw.githubusercontent.com/KN990x/vuzon/main/.env.example
$ cp .env.example .envCopy .env.example to.env and fill in your values:
# The email domain you manage in Cloudflare
DOMAIN=yourdomain.com
# Cloudflare API token — three scopes, see the docs
CF_API_TOKEN=cf_xxxxxxxxxxxxxxxxLaunch the panel
One command pulls the image and starts the panel. On startup vuzon talks to the Cloudflare API, verifies your token and resolves the zone and account from DOMAIN.
CF_API_TOKEN needs exactly three scopes — Email Routing Addresses: Edit, Email Routing Rules: Edit and Zone: Read. See API token.$ docker compose pull && docker compose up -dVerify it works
Open http://localhost:8001 and finish the setup wizard — the first visit asks you to choose a username and a password. Then create your first alias and send it a test email; watch it arrive in the log:
$ docker compose logs -f vuzonYour mailbox is ready!
From here everything is managed from the panel: aliases, destinations and catch-all.