From 547431e9db7ee406ccfbe844909efc5a2180f0b2 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 20 Feb 2026 20:15:36 +0000 Subject: [PATCH] chore: migrate SMTP from mx.jeffemmett.com to mail.rmail.online Co-Authored-By: Claude Opus 4.6 --- .env.example | 2 +- docker-compose.yml | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index c46d0aa..24aa0cc 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # SMTP settings (Mailcow) -SMTP_HOST=mx.jeffemmett.com +SMTP_HOST=mail.rmail.online SMTP_PORT=587 SMTP_USER=noreply@jefflix.lol SMTP_PASS=your-mailbox-password diff --git a/docker-compose.yml b/docker-compose.yml index 7bdcc70..21845d3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,15 @@ services: jefflix: build: . restart: unless-stopped + read_only: true + tmpfs: + - /tmp + cap_drop: + - ALL + security_opt: + - no-new-privileges:true environment: - - SMTP_HOST=${SMTP_HOST:-mx.jeffemmett.com} + - SMTP_HOST=${SMTP_HOST:-mail.rmail.online} - SMTP_PORT=${SMTP_PORT:-587} - SMTP_USER=${SMTP_USER} - SMTP_PASS=${SMTP_PASS}