fix: sender should be TLS_EMAIL (dns@nextwks.eu) not SMTP_USER
This commit is contained in:
parent
b32180c268
commit
aa1be0d4cd
2 changed files with 2 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ notifier:
|
|||
address: "submission://{SMTP_HOST}:{SMTP_PORT}"
|
||||
username: "{SMTP_USER}"
|
||||
password: "{SMTP_PASS}"
|
||||
sender: "{SMTP_USER}"
|
||||
sender: "{TLS_EMAIL}"
|
||||
subject: "NextWorkspace - {DOMAIN}"
|
||||
disable_require_tls: false
|
||||
disable_starttls: false
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@ STORAGE_ENCRYPTION_KEY="${STORAGE_ENCRYPTION_KEY:-$(openssl rand -hex 32)}"
|
|||
sed -e "s|{DOMAIN}|$DOMAIN|g" -e "s|{JWT_SECRET}|$JWT_SECRET|g" \
|
||||
-e "s|{SESSION_SECRET}|$SESSION_SECRET|g" \
|
||||
-e "s|{STORAGE_ENCRYPTION_KEY}|$STORAGE_ENCRYPTION_KEY|g" \
|
||||
-e "s|{TLS_EMAIL}|${TLS_EMAIL:-admin@$DOMAIN}|g" \
|
||||
-e "s|{SMTP_HOST}|${SMTP_HOST:-smtp.openxchange.eu}|g" \
|
||||
-e "s|{SMTP_PORT}|${SMTP_PORT:-587}|g" \
|
||||
-e "s|{SMTP_USER}|${SMTP_USER:-post@nextwks.eu}|g" \
|
||||
|
|
|
|||
Loading…
Reference in a new issue