← Back to Skills Marketplace
clarezoe

Stalwart Dokploy Resend Relay

by clarezoe · GitHub ↗ · v1.1.2 · MIT-0
cross-platform ✓ Security Clean
12
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install stalwart-dokploy-resend-relay
Description
Set up Stalwart Mail Server on a new VPS via Dokploy, with default outbound delivery through Resend SMTP relay for environments where direct SMTP port 25 egr...
README (SKILL.md)

Stalwart on Dokploy (Resend Relay Default)

Use this skill to deploy a production-ready Stalwart server on a new VPS managed by Dokploy.

Default assumption:

  • outbound SMTP port 25 is blocked by provider/network
  • outbound mail must go through smtp.resend.com:587

Scope

This skill covers:

  • preflight validation (MX, Dokploy, Stalwart)
  • Stalwart deployment on Dokploy
  • domain + DNS records for mailbox hosting
  • TLS certificate setup for mail/web endpoints
  • mailbox and admin provisioning
  • relay route to Resend SMTP
  • verification for IMAP/SMTP and queue behavior

Triggers

  • "set up stalwart on new vps"
  • "install mail server on dokploy"
  • "stalwart with resend relay"
  • "smtp 25 blocked setup"
  • "host support@ mailbox on vps"

Required Inputs

  • Domain: e.g. example.com
  • Mail host: e.g. mail.example.com
  • VPS SSH access
  • Dokploy access
  • Resend API key

Mandatory Preflight (Run First)

Before any configuration changes, run all checks below.

1. DNS/MX check

dig +short MX \x3Cdomain>
dig +short A mail.\x3Cdomain>

Pass criteria:

  • MX includes mail.\x3Cdomain> with valid priority
  • mail.\x3Cdomain> resolves to VPS public IP

If fail:

  • stop and prompt user to fix DNS first
  • optionally offer to provide exact records to add

2. Dokploy existence check

On VPS:

docker ps --format '{{.Names}} {{.Image}}' | grep -i dokploy

Pass criteria:

  • Dokploy services are running

If fail:

  • prompt user: install Dokploy now?
  • if user approves auto-install, install and verify Dokploy before continuing

3. Stalwart existence check

On VPS:

docker ps --format '{{.Names}} {{.Image}}' | grep -i stalwart

Pass criteria:

  • existing Stalwart service/container found

If fail:

  • prompt user: install Stalwart automatically via Dokploy now?
  • if approved, deploy Stalwart and continue

Decision Flow (Required)

Use this exact branching logic:

  1. If MX is incorrect:
  • do not proceed with mailbox validation
  • provide DNS fix instructions
  • wait for user confirmation and re-check
  1. If Dokploy missing:
  • ask user whether to install automatically
  • if yes, install Dokploy and verify
  • if no, stop with clear manual prerequisites
  1. If Stalwart missing:
  • ask user whether to install automatically in Dokploy
  • if yes, deploy Stalwart and verify
  • if no, stop with required manual steps

Only continue to next phases when all three preflight checks pass.

DNS Baseline

Add/verify these records:

  1. Mail host A:
  • mail A -> \x3CVPS_PUBLIC_IP>
  1. Inbound MX:
  • @ MX priority 10 -> mail.\x3Cdomain>
  1. SPF for domain:
  • @ TXT -> v=spf1 mx include:amazonses.com -all
  1. DMARC starter:
  • _dmarc TXT -> v=DMARC1; p=none;

Notes:

  • Keep existing Resend send-domain records (send.\x3Cdomain> MX/SPF/DKIM) if used.
  • Root-domain MX for mailbox hosting and send.\x3Cdomain> MX for sending workflows can coexist.

Deploy Stalwart in Dokploy

  • Use Stalwart image (stalwartlabs/stalwart:latest-alpine)
  • Expose/route ports: 25, 465, 587, 993, 8080, 443
  • Persist volumes for /etc/stalwart, /var/lib/stalwart, /opt/stalwart-mail

If bootstrap keeps resetting after restart, fix volume ownership:

sudo chown -R 2000:2000 /var/lib/docker/volumes/\x3Cstalwart-volume>/_data

Stalwart Bootstrap

  • Complete bootstrap once (default domain, hostname, internal directory)
  • Confirm admin account is persistent after restart

Target settings:

  • default hostname: mail.\x3Cdomain>
  • default domain: \x3Cdomain>

TLS Certificate (must not be self-signed)

Use Let’s Encrypt for mail.\x3Cdomain>:

sudo certbot certonly --standalone -d mail.\x3Cdomain> --non-interactive --agree-tos -m support@\x3Cdomain>

Then import the cert into Stalwart certificate store and set as defaultCertificateId.

If the UI create form rejects the PEM with No certificates found in PEM, create the certificate through the JMAP x:Certificate/set endpoint instead, using the leaf certificate PEM and private key, then set x:SystemSettings.defaultCertificateId to the created certificate object ID and restart Stalwart so 465/993 pick up the new cert.

Verify:

openssl s_client -connect mail.\x3Cdomain>:465 -servername mail.\x3Cdomain> \x3C /dev/null 2>/dev/null | openssl x509 -noout -subject -issuer -dates
openssl s_client -connect mail.\x3Cdomain>:993 -servername mail.\x3Cdomain> \x3C /dev/null 2>/dev/null | openssl x509 -noout -subject -issuer -dates

Expected:

  • CN includes mail.\x3Cdomain>
  • issuer is Let’s Encrypt (not self-signed)

Create Mailboxes

Create at least:

  • admin mailbox (e.g. admin@\x3Cdomain>)
  • support mailbox (e.g. support@\x3Cdomain>)

Verify auth from server side:

# IMAP auth test
openssl s_client -quiet -crlf -connect 127.0.0.1:\x3Cmapped-993> \x3C\x3C\x3C'a1 LOGIN support@\x3Cdomain> \x3Cpassword>'

# SMTP auth test
# AUTH PLAIN with base64(\0user\0pass)

Critical Default: Outbound Relay via Resend

When port 25 egress is blocked, do not use direct MX delivery route for outbound.

Configure in Stalwart:

  1. Create route relay (@type: Relay):
  • address: smtp.resend.com
  • port: 587
  • implicitTls: false
  • authUsername: resend
  • authSecret: \x3CRESEND_API_KEY>
  1. Update x:MtaOutboundStrategy route expression:
  • keep local delivery rule for local domains
  • set default route else to 'relay'

Resulting behavior:

  • local recipient domains -> local route
  • external recipients -> Resend relay route

Web Admin Routing (Dokploy)

Map host to Stalwart web service (container port 8080):

  • Host: mail.\x3Cdomain>
  • Path: /
  • Internal Path: /
  • HTTPS: enabled
  • Redeploy after domain change

Admin UI URL:

  • https://mail.\x3Cdomain>/admin/

Verification Checklist

  1. DNS:
dig +short MX \x3Cdomain>
dig +short A mail.\x3Cdomain>
  1. Ports:
nc -zv mail.\x3Cdomain> 993
nc -zv mail.\x3Cdomain> 465
nc -zv mail.\x3Cdomain> 25
  1. IMAP/SMTP login works for support@\x3Cdomain>.

  2. Queue health:

  • x:QueuedMessage/get should not accumulate permanent TemporaryFailure entries.
  • If messages stay Scheduled too long, inspect route/worker status and restart service.
  1. End-to-end test:
  • send external test mail from Thunderbird and verify delivery
  • send inbound test to support@\x3Cdomain> and verify receipt

Thunderbird Client Settings

Use manual settings (autodiscovery may fail):

  • IMAP: mail.\x3Cdomain> / 993 / SSL/TLS / Normal password
  • SMTP: mail.\x3Cdomain> / 465 / SSL/TLS / Normal password
  • username: full email address

If direct outbound delivery remains blocked and Stalwart queue is not healthy, temporary fallback:

  • SMTP server in client: smtp.resend.com
  • port: 465 (SSL/TLS) or 587 (STARTTLS)
  • username: resend
  • password: Resend API key

Common Failure Modes

  1. Bootstrap not persisting
  • Cause: wrong volume permissions
  • Fix: chown volumes to stalwart user (2000:2000)
  1. TLS cert mismatch/self-signed
  • Cause: default cert still active
  • Fix: import LE cert and set default certificate in x:SystemSettings
  • If the UI errors with No certificates found in PEM, use JMAP x:Certificate/set with the leaf PEM + private key, then restart Stalwart
  1. External send fails, queue error Network unreachable (os error 101)
  • Cause: blocked outbound 25
  • Fix: force outbound route to Resend relay
  1. Inbound mail not arriving
  • Cause: MX or port 25 path wrong/firewall
  • Fix: validate DNS MX + open/route tcp 25 end-to-end

Exit Criteria

Complete when:

  • preflight checks all pass (MX, Dokploy, Stalwart)
  • https://mail.\x3Cdomain>/admin/ opens
  • valid LE cert is presented on 465/993/443
  • support@\x3Cdomain> can authenticate over IMAP/SMTP
  • inbound mail to support@\x3Cdomain> is received
  • outbound to external recipients is delivered via relay without queue stall
Usage Guidance
Install only if you intend to administer this mail server and understand the VPS, DNS, Dokploy, Stalwart, and Resend changes. Store the Resend API key in a secret manager or protected configuration, avoid pasting it into logs or tickets, and rotate it if it was exposed during setup.
Capability Tags
cryptorequires-walletrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose, Stalwart Mail Server deployment on Dokploy with Resend SMTP relay, matches the artifact instructions and required inputs.
Instruction Scope
The workflow includes preflight checks and asks for approval before automatic installation, but it gives Resend API key client-setting guidance without much secret-handling warning.
Install Mechanism
The package contains only markdown files and no executable scripts; commands shown are setup and verification steps for the disclosed mail-server deployment.
Credentials
VPS SSH, Dokploy access, DNS changes, TLS setup, and Resend credentials are high-impact but proportionate for deploying email infrastructure. The metadata capability tags include crypto/wallet labels that are not reflected in the artifact behavior.
Persistence & Privilege
Persistent services, DNS records, mailboxes, certificates, and relay configuration are expected for this purpose; no hidden persistence or unrelated privilege use is shown.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install stalwart-dokploy-resend-relay
  3. After installation, invoke the skill by name or use /stalwart-dokploy-resend-relay
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.2
Add OpenCode, Kiro, Devin, Codex, Cursor, and Windsurf skill compatibility
v1.1.1
Normalize SKILL.md frontmatter for OpenClaw, Hermes, and Claude compatibility
Metadata
Slug stalwart-dokploy-resend-relay
Version 1.1.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Stalwart Dokploy Resend Relay?

Set up Stalwart Mail Server on a new VPS via Dokploy, with default outbound delivery through Resend SMTP relay for environments where direct SMTP port 25 egr... It is an AI Agent Skill for Claude Code / OpenClaw, with 12 downloads so far.

How do I install Stalwart Dokploy Resend Relay?

Run "/install stalwart-dokploy-resend-relay" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Stalwart Dokploy Resend Relay free?

Yes, Stalwart Dokploy Resend Relay is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Stalwart Dokploy Resend Relay support?

Stalwart Dokploy Resend Relay is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Stalwart Dokploy Resend Relay?

It is built and maintained by clarezoe (@clarezoe); the current version is v1.1.2.

💬 Comments