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>
19 lines
525 B
YAML
19 lines
525 B
YAML
spring:
|
|
flyway:
|
|
locations: classpath:db/migration
|
|
# 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}
|
|
password: ${ADMIN_PASSWORD}
|
|
password-reset:
|
|
expose-token: false
|