-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
A-E2EEO-UncommonMost users are unlikely to come across this or unexpected workflowMost users are unlikely to come across this or unexpected workflowS-MinorImpairs non-critical functionality or suitable workarounds existImpairs non-critical functionality or suitable workarounds existT-DefectX-Needs-InfoThis issue is blocked awaiting information from the reporterThis issue is blocked awaiting information from the reporter
Description
Steps to reproduce
Good afternoon.
- Launched the synapse server from the Docker-image matrixdotorg/synapse:latest on the domain matrix.example.com.
- Launched element-web from the Docker-image vector/element-web on the domain element.example.com.
- Everything is fine. The messaging is ok. The calls are working.
Encryption must be disabled. My teammates will lose the keys in a week. :D
- Read this:
https://github.com/element-hq/element-web/blob/develop/docs/e2ee.md#disabling-encryption - Set it up in nginx on the domain matrix.example.com :
location /.well-known/matrix/client {
return 200 '{"io.element.e2ee": {"force_disable": "true"}}';
add_header Content-Type application/json;
add_header "Access-Control-Allow-Origin" *;
}
- Checking the setting:
curl -s https://matrix.example.com/.well-known/matrix/client | jq
I get:
{
"io.element.e2ee": {
"force_disable": true
}
}
Outcome
When creating private chats, encryption is still enabled by default. You can't turn it off.
What did I do wrong?
Operating system
No response
Browser information
No response
URL for webapp
No response
Application version
No response
Homeserver
No response
Will you send logs?
No
Metadata
Metadata
Assignees
Labels
A-E2EEO-UncommonMost users are unlikely to come across this or unexpected workflowMost users are unlikely to come across this or unexpected workflowS-MinorImpairs non-critical functionality or suitable workarounds existImpairs non-critical functionality or suitable workarounds existT-DefectX-Needs-InfoThis issue is blocked awaiting information from the reporterThis issue is blocked awaiting information from the reporter