chore: migrate SMTP from mx.jeffemmett.com to mail.rmail.online

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-20 20:15:24 +00:00
parent 5d516fb770
commit 3ec36b52d5
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ NEXTAUTH_SECRET="generate-with-openssl-rand-base64-32"
NEXTAUTH_URL="http://localhost:3000"
# SMTP Email (Mailcow)
SMTP_HOST=mx.jeffemmett.com
SMTP_HOST=mail.rmail.online
SMTP_PORT=587
SMTP_USER=noreply@jeffemmett.com
SMTP_PASS=changeme

View File

@ -14,9 +14,9 @@ services:
- DATABASE_URL=postgresql://rvote:${DB_PASSWORD}@postgres:5432/rvote
- ENCRYPTID_SERVER_URL=https://encryptid.jeffemmett.com
- NEXT_PUBLIC_ENCRYPTID_SERVER_URL=https://encryptid.jeffemmett.com
- SMTP_HOST=${SMTP_HOST:-mx.jeffemmett.com}
- SMTP_HOST=${SMTP_HOST:-mail.rmail.online}
- SMTP_PORT=${SMTP_PORT:-587}
- SMTP_USER=${SMTP_USER:-noreply@jeffemmett.com}
- SMTP_USER=${SMTP_USER:-noreply@rmail.online}
- SMTP_PASS=${SMTP_PASS}
- ROOT_DOMAIN=rvote.online
- NEXT_PUBLIC_ROOT_DOMAIN=rvote.online