-
Notifications
You must be signed in to change notification settings - Fork 397
MSC4265: Data Protection Officer contact in /.well-known/matrix/support #4265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Johennes
wants to merge
1
commit into
matrix-org:main
Choose a base branch
from
Johennes:johannes/dpo-role
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# MSC4265: Data Protection Officer contact in `/.well-known/matrix/support` | ||
|
||
[GDPR] Article 37 Nr. 1 requires data controllers and processors to designate a | ||
Data Protection Officer (DPO). Furthermore, Article 37 Nr. 7 requires that the | ||
DPO's contact details be publicised. This is most commonly done via the privacy | ||
policy document. | ||
|
||
In Matrix, a homeserver's privacy policy is currently only made accessible via | ||
APIs during [account registration]. This prevents clients from easily displaying | ||
the contact information at later times and adds to the user's burden in finding | ||
them. | ||
|
||
Additionally, homeservers themselves can have a similar need to get in touch | ||
with another server's DPO, for instance to inform them about requests for | ||
erasure as required by [GDPR] Article 17 Nr. 2. | ||
|
||
While a server's support document under [/.well-known/matrix/support] can expose | ||
an "admin" contact, this might not be specific enough for the purposes outlined | ||
above – especially since server administrators and data protection officers are | ||
usually different roles in companies. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this makes a good point and is similar to the point made in #4121. Its also a very useful bit of knowledge to have easy access to the DPO contact via this standardised pathway. |
||
|
||
The present proposal attempts to address these problems by exposing a dedicated | ||
DPO contact in the server's support document. | ||
|
||
## Proposal | ||
|
||
A new role `m.role.dpo` is introduced for `Contact`s in | ||
[/.well-known/matrix/support] | ||
|
||
``` json5 | ||
{ | ||
"contacts": [ | ||
{ | ||
"email_address": "[email protected]", | ||
"matrix_id": "@dpo:pizza.org", | ||
"role": "m.role.dpo" | ||
}, | ||
... | ||
], | ||
"support_page": "https://www.pizza.org/support" | ||
} | ||
``` | ||
|
||
Servers are *not* required to provide an `m.role.dpo` contact. | ||
|
||
## Potential issues | ||
|
||
The DPO contact details being duplicated in two places introduces the | ||
possibility that they get out of sync. Given that these contacts should rarely | ||
change, this seems like a small problem, however. | ||
|
||
## Alternatives | ||
|
||
Rather than exposing the DPO's contact details, the support document could | ||
publish the privacy policy URL, for instance via [MSC4266]. This could also be | ||
considered an additional feature rather than a replacement, however. | ||
|
||
## Security considerations | ||
|
||
None. | ||
|
||
## Unstable prefix | ||
|
||
While this proposal is unstable, `m.role.dpo` should be referred to as | ||
`org.matrix.msc4265.role.dpo`. | ||
|
||
## Dependencies | ||
|
||
None. | ||
|
||
[GDPR]: https://eur-lex.europa.eu/eli/reg/2016/679/oj/eng | ||
[account registration]: https://spec.matrix.org/v1.13/client-server-api/#terms-of-service-at-registration | ||
[/.well-known/matrix/support]: https://spec.matrix.org/v1.13/client-server-api/#getwell-knownmatrixsupport | ||
[MSC4266]: https://github.com/matrix-org/matrix-spec-proposals/pull/4266 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Implementation requirements: