new SMTP HOST name

This commit is contained in:
Andreas Knuth 2025-06-10 17:09:45 -05:00
parent 55781bea6f
commit 5d961fad9d
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Konfiguration
SMTP_HOST = "mailcowdockerized-postfix-mailcow-1" # MailCow Postfix-Container
# SMTP_HOST = "mailcowdockerized-postfix-mailcow-1" # MailCow Postfix-Container
SMTP_HOST = "postfix-mailcow" # MailCow Postfix-Container
SMTP_PORT = 25 # Fest auf Port 25 ohne TLS
API_TOKEN = os.environ.get('API_TOKEN', 'your-api-token') # Muss mit Lambda übereinstimmen
logger.info(f"API_TOKEN: {API_TOKEN}")