-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# MSC 1929 Homeserver Admin Contact and Support page | ||
# MSC1929 Homeserver Admin Contact and Support page | ||
|
||
Currently, contacting a homeserver admin is difficult because you need to have insider knowledge | ||
of who the admin actually is. This proposal aims to fix that by specifying a way to add contact details | ||
|
@@ -12,18 +12,20 @@ The proposal suggests adding a new endpoint: `.well-known/matrix/support`. | |
|
||
The response format should be: | ||
|
||
```javascript | ||
```json5 | ||
{ | ||
admins: [{ | ||
matrix_id: "@admin:domain.tld", | ||
email_address: "[email protected]", | ||
role: "admin" # If omitted, the default will be "admin" | ||
}, | ||
{ | ||
email_address: "[email protected]", | ||
role: "security" | ||
}], | ||
support_page: "https://domain.tld/support.html" | ||
"contacts": [{ | ||
"matrix_id": "@admin:domain.tld", | ||
"email_address": "[email protected]", | ||
"role": "admin" // If omitted, the default will be "admin" | ||
}, | ||
{ | ||
"email_address": "[email protected]", | ||
"role": "security" | ||
}], | ||
"support_page": "https://domain.tld/support.html" | ||
} | ||
} | ||
``` | ||
|
||
|