Questions tagged [matrix-synapse]

Questions about Synapse, the reference server implementation for the Matrix APIs.

Matrix is an ambitious new ecosystem for open federated Instant Messaging and VoIP. Matrix Synapse is its reference server implementation.

Read more at

48 questions
1
vote
2 answers

Confusion between signed certificate and error:- x509: certificate signed by unknown authority

So I am working on matrix.org synapse homeserver and trying to federate. I got the certificate for my homeserver.It had 3 files inside it chain.crt(binary),server.crt(non-binary) and server.key(non-binary). server.crt had begin certificate and…
curious_21
  • 39
  • 1
  • 6
1
vote
1 answer

matrix synapse javascript voip issue with voice

i'm trying to create a video call using matrix synapse and help of matrix-js-sdk library, I can make video call it working just fine but the issue is with voice transfering , the user who makes the call doesn't recieve any voice , video is working…
moein rahimi
  • 774
  • 10
  • 20
1
vote
2 answers

Trouble running python unit tests with tox - ImportError for module that is already installed

I am new to python and am trying to run unit tests for this project: https://github.com/matrix-org/synapse I am running tox from the top level of the project. I get this error: exceptions.ImportError: No module named pymacaroons But pymacaroons is…
cheez
  • 15
  • 4
1
vote
2 answers

Perl: Issue with blessed object

I am creating a bot that connects to a Matrix server. For that I use Net::Async::Matrix. The code: #!/usr/bin/perl use strict; use warnings; use Net::Async::Matrix; use Net::Async::Matrix::Utils qw ( parse_formatted_message ); use…
m1ndgames
  • 37
  • 5
1
vote
1 answer

Why aren't shapes aligned?

I have been experimenting with basic neural networks, and I found some python code online. However, when I try to add 2 more hidden layers to the network, I receive an error: File "python", line 30, in ValueError: shapes (6,4) and (1,4) not…
Miles Watson
  • 13
  • 1
  • 5
1
vote
2 answers

Synapse Home server(Matrix) not running

I have installed synapse using the following commands: link: https://github.com/matrix-org/synapse Installing prerequisites on Mac OS X: xcode-select --install sudo easy_install pip sudo pip install virtualenv brew install pkg-config libffi To…
KSR
  • 1,699
  • 15
  • 22
0
votes
0 answers

NixOS Matrix Synapse

I played around with my configs and got a running synapse homeserver on NixOS. The federation tester say everthing is ok. I want to register a new user I got the following Error Message: ERROR! Received 400 Bad Request Shared secret registration is…
0x01_PH
  • 126
  • 10
0
votes
0 answers

Matrix Synapse : get recent messages on particular room

I have to get recent messages from all users on particular room (Matrix Synapse). When I using this API request: https://m.example.com/_matrix/client/v3/sync?access_token=TOKEN or with the next batch…
Demetera
  • 53
  • 1
  • 8
0
votes
0 answers

Customizing Matrix.io for Telegram-like Chat App with Phone-based Registration, Flexible Usernames, and Optional Password as Second-step Verification

I'm developing a chat application similar to Telegram using Matrix.io as the underlying framework. However, I need assistance in customizing the registration and login process to align with Telegram's functionality, particularly with regards to…
Azikdev
  • 11
  • 1
  • 2
0
votes
1 answer

How to connect Mautrix-WhatsApp bridge in an existing Docker network

I'd like to have Mautrix-WhatsApp bridge on my existing Docker network. Currently my Docker Network has 3 containers, which are Element chat, Matrix Synapse, and Postgresql database. I followed a guide on the Mautrix website regarding how to bridge…
0
votes
1 answer

Matrix-synapse doesn't retrieve CAS attributes

I have a problem on Matrix-Synapse with the SSO using CAS. Synapse doesn't retrieve CAS attributes synapse.handlers.sso - 1262 - INFO - GET-50 - SSO attribute missing. But CAS sends the attributes and I can retrieve them with a PHP script on the…
Aurélien Grimpard
  • 918
  • 10
  • 24
0
votes
0 answers

How to verify a Matrix js client writen by node js?

I'm developing a matrix client with node & express.js. I need to do the following: Connect to Matrix. Enable e2e encryption. Verify the logged in device (Current session). Read messages of a specific room. I did the following: Connect to the home…
Shahab.es
  • 367
  • 6
  • 20
0
votes
0 answers

Matrix Synapse setup | Postgresql username and password issue

I am trying to run Matrix Synapse along with the Postgresql using docker-compose per configuration in the official tutorial https://youtu.be/JCsw1bbBjAM. However it only works with the username and password declared as it is in the tutorial.…
0
votes
0 answers

How to test the connection between postgresql, Matrix synapse and Nginx Server on Centos8

I getting problem with the connecting nginx server, postgresql and Matrix Synapse Postgresql it is running see the systemctl status below . -Synapse1 is the database and roshyara is user which I have already added in the postgresql . hb_pga_conf…
0
votes
0 answers

Need to establish connection between synapse and keycloak identity store using mxisd

I want to integrate matrix home server (synapse) with keycloak using mxisd to authenticate users registered in keycloak. I've synapse, mxisd and keycloak running on docker on my local machine and have made the required changes in homeserver.yaml and…