-
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
4 additions
and
4 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 |
---|---|---|
|
@@ -16,21 +16,21 @@ The response format should be: | |
{ | ||
admins: [{ | ||
matrix_id: "@admin:domain.tld", | ||
email: "[email protected]", | ||
email_address: "[email protected]", | ||
role: "admin" # If omitted, the default will be "admin" | ||
}, | ||
{ | ||
email: "[email protected]", | ||
email_address: "[email protected]", | ||
role: "security" | ||
}], | ||
support_page: "https://domain.tld/support.html" | ||
} | ||
``` | ||
|
||
The `matrix_id` and `email` do NOT need to have the same domain as the homeserver. It is expected that | ||
The `matrix_id` and `email_address` do NOT need to have the same domain as the homeserver. It is expected that | ||
an admin will have a "backup" contact address if the server is down, like an email or alternative mxid on a different homeserver. | ||
|
||
Entries may have a `matrix_id` OR an `email`, but at least one MUST be specified. | ||
Entries may have a `matrix_id` OR an `email_address`, but at least one MUST be specified. | ||
|
||
`role` is an informal description of what the address(es) are used for. The only two specified in this | ||
proposal are "admin" and "security." Admins are a catchall user for any queries, where security is intended | ||
|