From 95759d399e25b640e5dc9a0c436c19be513784be Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 23:37:54 -0800 Subject: [PATCH] fix: migrate SMTP host from mx.jeffemmett.com to mail.rmail.online All email sending now uses mail.rmail.online as the SMTP host, replacing the legacy mx.jeffemmett.com hostname. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 +- server.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 95261bb..543c1b2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: - PORT=3000 - DATA_DIR=/app/data - ADMIN_TOKEN=${ADMIN_TOKEN:-worldplay-admin-2026} - - 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_PASS=${SMTP_PASS} diff --git a/server.js b/server.js index 0578d6c..951f912 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,7 @@ const REGISTRATIONS_FILE = path.join(DATA_DIR, 'registrations.json'); // Initialize SMTP transport (Mailcow) const smtp = process.env.SMTP_PASS ? nodemailer.createTransport({ - host: process.env.SMTP_HOST || 'mx.jeffemmett.com', + host: process.env.SMTP_HOST || 'mail.rmail.online', port: parseInt(process.env.SMTP_PORT || '587'), secure: false, auth: {