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:36 +00:00
parent 99f9f0d681
commit 547431e9db
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# SMTP settings (Mailcow) # SMTP settings (Mailcow)
SMTP_HOST=mx.jeffemmett.com SMTP_HOST=mail.rmail.online
SMTP_PORT=587 SMTP_PORT=587
SMTP_USER=noreply@jefflix.lol SMTP_USER=noreply@jefflix.lol
SMTP_PASS=your-mailbox-password SMTP_PASS=your-mailbox-password

View File

@ -2,8 +2,15 @@ services:
jefflix: jefflix:
build: . build: .
restart: unless-stopped restart: unless-stopped
read_only: true
tmpfs:
- /tmp
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
environment: environment:
- SMTP_HOST=${SMTP_HOST:-mx.jeffemmett.com} - SMTP_HOST=${SMTP_HOST:-mail.rmail.online}
- SMTP_PORT=${SMTP_PORT:-587} - SMTP_PORT=${SMTP_PORT:-587}
- SMTP_USER=${SMTP_USER} - SMTP_USER=${SMTP_USER}
- SMTP_PASS=${SMTP_PASS} - SMTP_PASS=${SMTP_PASS}