From 2ae3d1b99b0acdc8690981783fafb51261f8021f Mon Sep 17 00:00:00 2001 From: Romain ROCHAS Date: Sun, 19 Oct 2025 21:35:18 +0200 Subject: [PATCH] Add SMTP configuration to Pocket ID with PostgreSQL template Include SMTP settings for email notifications and one-time access features. --- templates/compose/pocket-id-with-postgresql.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/templates/compose/pocket-id-with-postgresql.yaml b/templates/compose/pocket-id-with-postgresql.yaml index 46760d124..b620bec21 100644 --- a/templates/compose/pocket-id-with-postgresql.yaml +++ b/templates/compose/pocket-id-with-postgresql.yaml @@ -17,6 +17,16 @@ services: - ENCRYPTION_KEY=${SERVICE_PASSWORD_64_POCKETID} - KEYS_STORAGE=${KEYS_STORAGE:-database} - MAXMIND_LICENSE_KEY=${MAXMIND_LICENSE_KEY} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT:-587} + - SMTP_FROM=${SMTP_FROM} + - SMTP_USER=${SMTP_USER} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_TLS=${SMTP_TLS:-starttls} + - SMTP_SKIP_CERT_VERIFY=${SMTP_SKIP_CERT_VERIFY:-false} + - EMAIL_LOGIN_NOTIFICATION_ENABLED=${EMAIL_LOGIN_NOTIFICATION_ENABLED:-false} + - EMAIL_ONE_TIME_ACCESS_AS_ADMIN_ENABLED=${EMAIL_ONE_TIME_ACCESS_AS_ADMIN_ENABLED:-false} + - EMAIL_API_KEY_EXPIRATION_ENABLED=${EMAIL_API_KEY_EXPIRATION_ENABLED:-false} - PUID=${PUID:-1000} - PGID=${PGID:-1000} volumes: