feat(#23): Add maildev application.yaml configs

This commit is contained in:
2025-11-29 09:06:23 +01:00
parent b72d564868
commit a03a7e3626
2 changed files with 23 additions and 0 deletions

View File

@@ -48,3 +48,8 @@ logging:
web: DEBUG
org.testcontainers: INFO
com.github.dockerjava: WARN
management:
health:
mail:
enabled: false

View File

@@ -8,3 +8,21 @@ spring:
jwt:
issuer-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUER_URI:http://localhost:7080}
jwk-set-uri: ${SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWK_SET_URI:http://localhost:7080}
mail:
host: ${MAIL_HOST:0.0.0.0}
port: ${MAIL_PORT:1025}
username: ${MAIL_USERNAME:}
password: ${MAIL_PASSWORD:}
properties:
mail:
smtp:
auth: false
starttls:
enable: false
required: false
ssl:
enable: false
connectiontimeout: 5000
timeout: 5000
writetimeout: 5000