Auth Server config changes
{
"smtp": {
"passwordResetUrl": "https://api-accounts.firefox.com/v1/complete_reset_password",
"redirectDomain": "firefox.com"
},
"tokenLifetimes": {
"accountResetToken": 900000,
"passwordForgotToken": 900000,
"passwordChangeToken": 900000
}
}- passwordResetUrl defaults to
publicUrl + '/v1/complete_reset_password'which is the url sent in the password reset email. - redirectDomain is used as validation against any submitted
redirectToparameters. - tokenLifetimes is the TTL for tokens in milliseconds (15min default)
{
"scryptHelper": undefined
}scryptHelper is no longer used
Also, correct me if I'm wrong but I think I can leave out tokenLifetimes and passwordResetUrl since the defaults look correct.