diff options
author | Jorik Schellekens <joriks@matrix.org> | 2019-09-12 16:26:45 +0100 |
---|---|---|
committer | Jorik Schellekens <joriks@matrix.org> | 2019-09-12 16:26:45 +0100 |
commit | 5bb6666f2661cba1f5f86607779542e03224a3eb (patch) | |
tree | a51b0659b5ab45acc8f66904a2c93949682836f5 | |
parent | Remove the cap on federation retry interval. (#6026) (diff) | |
download | synapse-5bb6666f2661cba1f5f86607779542e03224a3eb.tar.xz |
Fix comment
-rw-r--r-- | docs/sample_config.yaml | 2 | ||||
-rw-r--r-- | synapse/config/registration.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index dd4e2d5ebd..c977bcfb57 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -938,7 +938,7 @@ uploads_path: "DATADIR/uploads" # https://matrix.org/docs/spec/identity_service/latest # account_threepid_delegates: - #email: https://example.com # Delegate email sending to matrix.org + #email: https://example.com # Delegate email sending to example.org #msisdn: http://localhost:8090 # Delegate SMS sending to this local process # Users who register on this homeserver will automatically be joined diff --git a/synapse/config/registration.py b/synapse/config/registration.py index 9548560edb..d4654e99b3 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -294,7 +294,7 @@ class RegistrationConfig(Config): # https://matrix.org/docs/spec/identity_service/latest # account_threepid_delegates: - #email: https://example.com # Delegate email sending to matrix.org + #email: https://example.com # Delegate email sending to example.org #msisdn: http://localhost:8090 # Delegate SMS sending to this local process # Users who register on this homeserver will automatically be joined |