Fix prod SMTP STARTTLS for Resend password-reset mail.
The docker profile disables mail.smtp.starttls for Mailpit; prod runs docker+prod so Resend saw AUTH before STARTTLS (538). Re-enable auth and STARTTLS in application-prod.yml. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
ad195fd890
commit
de86880a8f
1 changed files with 7 additions and 0 deletions
|
|
@ -4,6 +4,13 @@ spring:
|
|||
# Prod DBs created before seeds moved to db/dev-migration still list V2/V4/V6 in history.
|
||||
ignore-migration-patterns: '*:missing'
|
||||
|
||||
# docker profile disables STARTTLS for Mailpit; prod must re-enable for Resend SMTP.
|
||||
mail:
|
||||
properties:
|
||||
mail.smtp.auth: true
|
||||
mail.smtp.starttls.enable: true
|
||||
mail.smtp.starttls.required: true
|
||||
|
||||
app:
|
||||
admin:
|
||||
email: ${ADMIN_EMAIL}
|
||||
|
|
|
|||
Loading…
Reference in a new issue