Skip to main content
Skip table of contents

Migration Guide

Old value

New value

Notes

CODE
grails:
  mail:
    .....
CODE
spring:
  mail:
    .....

The whole configuration moves from the grails section into the spring section.

CODE
grails:
  mail:
    disabled:

 

CODE
spring:
  mail:
    valsightProperties:
      enabled:

BOOLEAN REVERSAL

Property disabled moved under valsightProperties and changed to enabled.

It still defaults to disabled.

CODE
grails:
  mail:
    default:
      from:
CODE
spring:
  mail:
    valsightProperties:
      defaultFrom:

Property from moved and renamed to defaultFrom.

CODE
grails:
  mail:
    props:
      ...
CODE
spring:
  mail:
    properties:

Property props renamed to properties.

All other properties are the same, with the same behaviour.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.