diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-06-27 18:20:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 18:20:17 +0100 |
commit | c548dbc4b16a8bff6226fa4a6d7c86180c4f5704 (patch) | |
tree | a8dd551e9e0160abd2b847f404f45c53a447041e /docs/sample_config.yaml | |
parent | Merge pull request #5559 from matrix-org/erikj/refactor_changed_devices (diff) | |
download | synapse-c548dbc4b16a8bff6226fa4a6d7c86180c4f5704.tar.xz |
Make it clearer that the template dir is relative to synapse's root dir (#5543)
Helps address #5444
Diffstat (limited to 'docs/sample_config.yaml')
-rw-r--r-- | docs/sample_config.yaml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index da10788e96..18be376e1e 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1070,11 +1070,13 @@ password_config: # app_name: Matrix # # # Enable email notifications by default +# # # notif_for_new_users: True # # # Defining a custom URL for Riot is only needed if email notifications # # should contain links to a self-hosted installation of Riot; when set # # the "app_name" setting is ignored +# # # riot_base_url: "http://localhost/riot" # # # Enable sending password reset emails via the configured, trusted @@ -1087,16 +1089,22 @@ password_config: # # # # If this option is set to false and SMTP options have not been # # configured, resetting user passwords via email will be disabled +# # # #trust_identity_server_for_password_resets: false # # # Configure the time that a validation email or text message code # # will expire after sending # # # # This is currently used for password resets +# # # #validation_token_lifetime: 1h # # # Template directory. All template files should be stored within this -# # directory +# # directory. If not set, default templates from within the Synapse +# # package will be used +# # +# # For the list of default templates, please see +# # https://github.com/matrix-org/synapse/tree/master/synapse/res/templates # # # #template_dir: res/templates # |