Migration Guide
| Old value | New value | Notes |
|---|---|---|
grails:
mail:
.....
|
spring:
mail:
.....
| The whole configuration moves from the grails section into the spring section. |
|
grails:
mail:
disabled:
|
spring:
mail:
valsightProperties:
enabled:
| BOOLEAN REVERSAL Property disabled moved under valsightProperties and changed to enabled. It still defaults to disabled. |
|
grails:
mail:
default:
from:
|
spring:
mail:
valsightProperties:
defaultFrom:
| Property from moved and renamed to defaultFrom. |
|
grails:
mail:
props:
...
|
spring:
mail:
properties:
| Property props renamed to properties. |
All other properties are the same, with the same behaviour.