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
redirectTo
parameters. - tokenLifetimes is the TTL for tokens in milliseconds (15min default)
{
"scryptHelper": undefined
}
scryptHelper is no longer used
@dannycoates when you know what I should use for redirectDomain in staging (accounts.stage.mozaws.net) let me know. You'd mentioned a patch might be required. If so, can you point me to the commit or the issue tracking it?