Skip to content
Snippets Groups Projects
Commit 21fc8321 authored by Benaissa BENARBIA's avatar Benaissa BENARBIA
Browse files

fix tls versions for mail settings

parent 4ef461e0
No related branches found
No related tags found
1 merge request!51Merge mis a jour vitam-ui
smtp: smtp:
host: host host: host
port: 389 port: 389
...@@ -12,6 +11,7 @@ smtp: ...@@ -12,6 +11,7 @@ smtp:
checkserveridentity: false checkserveridentity: false
trust: "*" trust: "*"
timeout: 8000 timeout: 8000
protocols: "TLSv1.2 TLSv1.3"
cas: cas:
sender: "serveur-cas@noreply.com" sender: "serveur-cas@noreply.com"
expiration: 1440 # 1 Day : 24 * 60 Minutes to reset password expiration: 1440 # 1 Day : 24 * 60 Minutes to reset password
......
...@@ -130,6 +130,7 @@ spring.mail.properties.mail.transport.protocol: {{ smtp.protocol|lower }} ...@@ -130,6 +130,7 @@ spring.mail.properties.mail.transport.protocol: {{ smtp.protocol|lower }}
spring.mail.properties.mail.smtps.ssl.checkserveridentity: {{ smtp.smtps.checkserveridentity|lower }} spring.mail.properties.mail.smtps.ssl.checkserveridentity: {{ smtp.smtps.checkserveridentity|lower }}
spring.mail.properties.mail.smtps.ssl.trust: "{{ smtp.smtps.trust|lower }}" spring.mail.properties.mail.smtps.ssl.trust: "{{ smtp.smtps.trust|lower }}"
spring.mail.properties.mail.smtps.timeout: {{ smtp.smtps.timeout|default('8000') }} spring.mail.properties.mail.smtps.timeout: {{ smtp.smtps.timeout|default('8000') }}
spring.mail.properties.mail.smtps.ssl.protocols: {{ smtp.smtps.ssl.protocols}}
{% endif %} {% endif %}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment