-
-
Notifications
You must be signed in to change notification settings - Fork 589
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
This room contains devices that are unverified #4348
Labels
T-Other
Questions, user support, anything else
Comments
homeserver.yaml if needed: # Configuration file for Synapse (improved version). Includes config for turn servers amongst other things.
# Configuration file for Synapse.
#
# This is a YAML file: see [1] for a quick introduction. Note in particular
# that *indentation is important*: all the elements of a list or dictionary
# should have the same indentation.
#
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
#
# For more information on how to configure Synapse, including a complete accounting of
# each option, go to docs/usage/configuration/config_documentation.md or
# https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html
listeners:
- port: 8008
tls: false
type: http
x_forwarded: true
resources:
- names: [client, federation]
compress: false
database:
name: sqlite3
args:
database: /data/homeserver.db
log_config: "/data/example.com.log.config"
media_store_path: /data/media_store
enable_registration: true
report_stats: true
registration_requires_token: true
enable_registration_without_verification: true
signing_key_path: "/data/chat.zerapy.ai.com.signing.key"
suppress_key_server_warning: true
# vim:ft=yaml
server_name: "chat.zerapy.ai"
pid_file: data/homeserver.pid
registration_shared_secret: "6d637e90deeec668e925496111621486"
macaroon_secret_key: "j&1H_xooEl3uHDsVO&&gHzPG#YKuL;LUOBDYOh8thnxcXA*Oip"
form_secret: "ZL-^Fgzta093JF~UBFh6Ut@i3nyEtrs6DF0qZq*f;Uu.t4^F;@"
trusted_key_servers:
- server_name: "matrix.org"
#MegolmEncryption:
# checkForUnknownDevices: false
# Enable encryption
encryption_enabled_by_default_for_room_type: all
# Enable key backups
enable_key_backup: true
# Set up a backup config
backups:
enabled: true
backup_location: data/backups
# Enable TURN for better connectivity
#turn_uris: [ "turn:your_turn_server:3478" ]
#turn_shared_secret: "your_turn_shared_secret"
#turn_user_lifetime: 86400000
# Enable push notifications (if needed)
#enable_push: true
# Increase ratelimiting for better performance (adjust as needed)
rc_message:
per_second: 1000
burst_count: 1000
rc_registration:
per_second: 1000
burst_count: 1000
rc_login:
address:
per_second: 1000
burst_count: 1000
account:
per_second: 1000
burst_count: 1000
failed_attempts:
per_second: 1000
burst_count: 1000
# Enable server notices
server_notices:
system_mxid_localpart: server
system_mxid_display_name: "Server Notices"
system_mxid_avatar_url: "mxc://server.com/oumMVlRDjiAtQYFmhXZOmSM"
room_name: "Server Notices"
# Enable presence (if needed)
use_presence: true
# Enable URL previews (if needed)
#url_preview_enabled: true
max_spider_size: 10M
# Enable SAML2 authentication (if needed)
# saml2_config:
# sp_config:
# metadata:
# local: ["/path/to/sp-metadata.xml"]
# Enable OpenID Connect authentication (if needed)
# oidc_providers:
# - idp_id: google
# idp_name: Google
# issuer: "https://accounts.google.com/"
# client_id: "your_client_id"
# client_secret: "your_client_secret"
# scopes: ["openid", "profile"]
# authorization_endpoint: "https://accounts.google.com/o/oauth2/v2/auth"
# token_endpoint: "https://oauth2.googleapis.com/token"
# userinfo_endpoint: "https://openidconnect.googleapis.com/v1/userinfo"
# Increase performance (adjust based on your server's capacity)
event_cache_size: "10K"
|
This isn't the best place to ask for support: maybe try one of the Matrix rooms like https://matrix.to/#/#matrix-dev:matrix.org |
Thanks, I guess I'll try to find support there. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm new to matrix and I want to integrate to one of my existing projects for it's chat and video call functionality. While ive managed to get myself acquainted with creating users with registration tokens, creating rooms, sending messages and so on, when i actually try to communicate i always get this error:
** Unable to decrypt: DecryptionError: The sender's device has not sent us the keys for this message. **
on my messages and
UnknownDeviceError: This room contains unknown devices which have not been verified. We strongly recommend you verify them before continuing.
When I try to send a message.
Of course I may have set up something incorrectly, here is my full setup:
Which i use to register an account,
Which i use to start a client in my front-end and where the bootstrapCrossSigning looks like this:
Help would be really appreciated, thanks a lot!
Worth specifying that this is the network tab on the browser:
Request URL: http://localhost:8008/_matrix/client/v3/user/%4064049031-3d0a-49e3-8ab3-29260c6388eb%3Achat.zerapy.ai/account_data/m.cross_signing.master Request Method: GET Status Code: 404 Not Found Remote Address: [::1]:8008 Referrer Policy: no-referrer
Not found for that
Request URL: http://localhost:8008/_matrix/client/v3/user/%4064049031-3d0a-49e3-8ab3-29260c6388eb%3Achat.zerapy.ai/account_data/m.cross_signing.self_signing Request Method: GET Status Code: 404 Not Found Remote Address: [::1]:8008 Referrer Policy: no-referrer
Same goes for the self signing
And I keep getting a 401 for:
Request URL: http://localhost:8008/_matrix/client/unstable/keys/device_signing/upload Request Method: POST Status Code: 401 Unauthorized Remote Address: [::1]:8008 Referrer Policy: no-referrer
even when the body has a valid auth:
The text was updated successfully, but these errors were encountered: