Names of password reset HTML templates in config doesn't match python code #5833
Description
Synapse is currently trying to put the wrong thing out of the email config for password reset templates.
What it's actually called (password_reset_template_success_html
):
synapse/synapse/config/emailconfig.py
Line 289 in 97bf307
What it tries to pull out (password_reset_success_template
):
synapse/synapse/config/emailconfig.py
Line 141 in 97bf307
It's the same situation for the failure template.
Therefore, if someone tries to set up custom password reset success/failure pages, Synapse won't take them and consider using the defaults.
The only reason I don't think anyone's reported this yet is because they haven't had the desire to change their password reset success/failure pages from the default.