Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Oct 19, 2023
1 parent 165fcc4 commit 7f68d57
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions proposals/1929-admin-contact.md
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
Expand All @@ -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"
}
}
```

Expand Down

0 comments on commit 7f68d57

Please sign in to comment.