From 135fe7ad532f514f86213b203289d435659b7cd7 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Fri, 12 Feb 2021 14:01:34 +0100 Subject: [PATCH 01/12] python dep --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 142f00c..bbc3327 100755 --- a/scripts/install +++ b/scripts/install @@ -212,8 +212,8 @@ ynh_replace_string --match_string=__LOG_LEVEL__ --replace_string="error" --targe mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path -$final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-signal.tar.gz +#$final_path/bin/pip3 install --upgrade setuptools wheel +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ From ead6216a5f20ab6a3d79cafec3117abc475f6491 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Fri, 12 Feb 2021 14:12:48 +0100 Subject: [PATCH 02/12] python optional requirements --- scripts/install | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index bbc3327..14e6103 100755 --- a/scripts/install +++ b/scripts/install @@ -212,8 +212,9 @@ ynh_replace_string --match_string=__LOG_LEVEL__ --replace_string="error" --targe mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path -#$final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] +$final_path/bin/pip3 install --upgrade setuptools wheel +$final_path/bin/pip3 install -r $final_path/optional-requirements.txt +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ @@ -263,7 +264,7 @@ chown $mautrix_bridge_user:root -R /var/log/$app #================================================= #yunohost service add $app --log "/var/log/$app/log.log" # if using yunohost version 3.2 or more in the 'manifest.json', a description can be added -yunohost service add $app --description "$app daemon for bridging FB and Matrix messages" --log "/var/log/$app/$app.log" +yunohost service add $app --description "$app daemon for bridging Signal and Matrix messages" --log "/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE From 513a02aa387ee7ac47592c4a750639b97c615b83 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 11:43:05 +0100 Subject: [PATCH 03/12] optional requirements --- scripts/install | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index 14e6103..06502a6 100755 --- a/scripts/install +++ b/scripts/install @@ -109,7 +109,7 @@ ynh_script_progression --message="Installing dependencies..." --weight=97 ynh_install_app_dependencies $pkg_dependencies -ynh_install_extra_app_dependencies --repo="https://updates.signald.org unstable main" --package="signald" --key="https://updates.signald.org/apt-signing-key.asc" +ynh_install_extra_app_dependencies --repo="https://updates.signald.org unstable main" --package="libunixsocket-java signaldctl signald" --key="https://updates.signald.org/apt-signing-key.asc" #================================================= # CREATE A POSTGRESQL DATABASE @@ -213,8 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path $final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install -r $final_path/optional-requirements.txt -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] -r $final_path/optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ From 9b3059aca112dec08126a136744d8a10acd90c9f Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 11:46:00 +0100 Subject: [PATCH 04/12] again --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 06502a6..9df566a 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path $final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] -r $final_path/optional-requirements.txt +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ From 2ac3e9d1e8c81333dd6ff12fe12566a5944ced22 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 11:51:57 +0100 Subject: [PATCH 05/12] all requirements --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 9df566a..36069da 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path $final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] -r optional-requirements.txt +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all]# -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ From 65bcd19b368512ef31c72890e7538df568d057dd Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 11:59:56 +0100 Subject: [PATCH 06/12] argh --- scripts/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 36069da..764874b 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,8 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path $final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all]# -r optional-requirements.txt +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] +# -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml /opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \ From 20d87ba2ea5a4c19060312e9d1398512c98117ee Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 12:06:35 +0100 Subject: [PATCH 07/12] wrong wheel --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 764874b..26e97bc 100755 --- a/scripts/install +++ b/scripts/install @@ -212,7 +212,7 @@ ynh_replace_string --match_string=__LOG_LEVEL__ --replace_string="error" --targe mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path -$final_path/bin/pip3 install --upgrade setuptools wheel +#$final_path/bin/pip3 install --upgrade setuptools wheel $final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] # -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml From e24a53d240faff671b028c438b1515e3f777acc8 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 12:21:45 +0100 Subject: [PATCH 08/12] missing dependencies --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 26e97bc..289468b 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path #$final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[all] +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[prometheus_client,phonenumbers,qrcode,Pillow,signalstickers-client] # -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml From 56a7a62d98f4253f892ba90a3174557635c7e5dd Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 12:36:11 +0100 Subject: [PATCH 09/12] extra dep --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 289468b..f3b618d 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path #$final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[prometheus_client,phonenumbers,qrcode,Pillow,signalstickers-client] +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[metrics,formattednumbers,qrlink,stickers] # -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml From 1bb6617b56cd2de4a49c1fb8936ff67c7ba3c668 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Sat, 13 Feb 2021 12:47:59 +0100 Subject: [PATCH 10/12] stickers not building --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index f3b618d..83644ae 100755 --- a/scripts/install +++ b/scripts/install @@ -213,7 +213,7 @@ mkdir -p /var/log/$app # Configure Mautrix-Bridge python3 -m venv $final_path #$final_path/bin/pip3 install --upgrade setuptools wheel -$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[metrics,formattednumbers,qrlink,stickers] +$final_path/bin/pip3 install $final_path/src/mautrix-signal.tar.gz[metrics,formattednumbers,qrlink] # -r optional-requirements.txt $final_path/bin/python3 -m mautrix_signal -g -c $mautrix_config_path -r $app_service_registration_path/$app.yaml From 645a20468d65ae69f2ae2b5abfbf7bff8e639595 Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Tue, 16 Feb 2021 12:19:40 +0100 Subject: [PATCH 11/12] README en --- README.md | 81 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 48 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index fb6c89c..5d92d0b 100644 --- a/README.md +++ b/README.md @@ -1,72 +1,81 @@ -# Usage of this package (REMOVE THIS SECTION BEFORE RELEASE) -- Copy this app before working on it. -- Edit the `conf/nginx.conf` file to match app prerequisites. -- Edit the `manifest.json` with app specific info. -- Edit the `install`, `upgrade`, `remove`, `backup`, and `restore` scripts. - - Using the [script helpers documentation.](https://yunohost.org/#/packaging_apps_helpers) -- Add a `LICENSE` file for the package. -- Edit `README.md` and `README_fr.md`. +# A Matrix-Signal puppeting bridge for YunoHost -# Example app for YunoHost - -[![Integration level](https://dash.yunohost.org/integration/REPLACEBYYOURAPP.svg)](https://dash.yunohost.org/appci/app/REPLACEBYYOURAPP) ![](https://ci-apps.yunohost.org/ci/badges/REPLACEBYYOURAPP.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/REPLACEBYYOURAPP.maintain.svg) -[![Install REPLACEBYYOURAPP with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=REPLACEBYYOURAPP) +[![Integration level](https://dash.yunohost.org/integration/mautrix_signal.svg)](https://dash.yunohost.org/appci/app/mautrix_signal) ![](https://ci-apps.yunohost.org/ci/badges/mautrix_signal.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/mautrix_signal.maintain.svg) +[![Install Mautrix-Signal with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=mautrix_signal) *[Lire ce readme en français.](./README_fr.md)* -> *This package allows you to install REPLACEBYYOURAPP quickly and simply on a YunoHost server. +> *This package allows you to install Mautrix-Signal quickly and simply on a YunoHost server. If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.* ## Overview -Quick description of this app. +A puppeting bridge between Matrix and Signal packaged as a YunoHost service. Messages, notifications (and sometimes media) are bridged between a Signal user and a Matrix user. Currently the Matrix user can NOT invite other Matrix user in a bridged Signal room, so only someone with a Signal account can participate to Signal group conversations. The ["Mautrix-Signal"](https://github.com/tulir/mautrix-signal/wiki) bridge consists in a Synapse App Service and relies on postgresql (mysql also possible). Therefore, [Synapse for YunoHost](https://github.com/YunoHost-Apps/synapse_ynh) should be installed beforehand. -**Shipped version:** 1.0 +**Shipped version:** 0.1.0 ## Screenshots ![](Link to a screenshot of this app.) -## Demo +## List of known public services -* [Official demo](Link to a demo site for this app.) +* Ask on one of the following rooms: #mautrix_yunohost:matrix.fdn.fr or #signal:maunium.net -## Configuration +## Configuration of the bridge -How to configure this app: From an admin panel, a plain file with SSH, or any other way. +The bridge is [roughly configured at installation](https://github.com/YunoHost-Apps/mautrix_signal_ynh/blob/master/conf/config.yaml), e.g. allowed admin and user of the bot. Finer configuration can be done by modifying the +following configuration file with SSH: +```/opt/yunohost/mautrix_signal/config.yaml``` +and then restarting the mautrix_signal service. ## Documentation - * Official documentation: Link to the official documentation of this app - * YunoHost documentation: If specific documentation is needed, feel free to contribute. + * Official "Mautrix-Signal" documentation: https://github.com/tulir/mautrix-signal/wiki + * Matrix room (Matrix Bridges in Yunohost): #mautrix_yunohost:matrix.fdn.fr + * Matrix room (upstream app): #signal:maunium.net +In case you need to upload your logs somewhere, be aware that they contain your contacts' and your phone numbers. Strip them out with +``| sed -r 's/[0-9]{10,}/📞/g' `` + * "Mautrix-Signal" bridge is based on the [signal daemon](https://gitlab.com/signald/signald) project. + * YunoHost documentation: If more specific documentation is needed, feel free to contribute. ## YunoHost specific features #### Multi-user support -Are LDAP and HTTP auth supported? -Can the app be used by multiple users? +* Bot users are not related to Yunohost users. Any Matrix account or Synapse server autorized in the configuration of the bridge can invite/use the bot. +* The Signal bot is a local Matrix-Synapse user, but accessible through federation (synapse public or private). +* Several Signal and Matrix users can be bridged with one bridge, each user has its own bot administration room. +* If several bot users are in a same Signal group, only one Matrix room will be created by the bridge. +* See https://github.com/YunoHost-Apps/synapse_ynh#multi-users-support + +#### Multi-instance support + +* Multi-instance installation should work. Several bridge instances could be installed for one Matrix-Synapse instance so that one Matrix user can bridge several Signal accounts. +* Several bridge instances could be installed for each Matrix-Synapse instance to benefit from it. But one bridge can be used by users from several Matrix-Synapse instances. #### Supported architectures -* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/REPLACEBYYOURAPP%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/REPLACEBYYOURAPP/) -* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/REPLACEBYYOURAPP%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/REPLACEBYYOURAPP/) +* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mautrix_signal%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/mautrix_signal/) +* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mautrix_signal%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mautrix_signal/) ## Limitations -* Any known limitations. +* It looks like media are not bridged. +* Signal chats are not grouped in a Matrix community (as opposed to the Mautrix-WhatsApp or Mautrix-Facebook bridges) ## Additional information * Other info you would like to add about this app. **More info on the documentation page:** -https://yunohost.org/packaging_apps +https://github.com/tulir/mautrix-signal/wiki/ ## Links - * Report a bug: https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/issues - * App website: Link to the official website of this app. - * Upstream app repository: Link to the official repository of the upstream app. + * Report a bug: https://github.com/YunoHost-Apps/mautrix_signal_ynh/issues + * App website: https://github.com/YunoHost-Apps/mautrix-whatsapp_ynh + * Upstream app repository: https://github.com/tulir/mautrix-signal + * Up-Upstream repository: https://gitlab.com/signald/signald * YunoHost website: https://yunohost.org/ --- @@ -74,11 +83,17 @@ https://yunohost.org/packaging_apps ## Developer info **Only if you want to use a testing branch for coding, instead of merging directly into master.** -Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/tree/testing). +Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/mautrix_signal_ynh/tree/testing). To try the testing branch, please proceed like that. ``` -sudo yunohost app install https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/tree/testing --debug +sudo yunohost app install https://github.com/YunoHost-Apps/mautrix_signal_ynh/tree/testing --debug or -sudo yunohost app upgrade REPLACEBYYOURAPP -u https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/tree/testing --debug +sudo yunohost app upgrade mautrix_signal -u https://github.com/YunoHost-Apps/mautrix_signal_ynh/tree/testing --debug ``` + +To test communication between the App Service and Matrix-Synapse on a VM (e.g. with domain name: synapse.vm), you must install a certificate: +``` +echo | openssl s_client -showcerts -servername synapse.vm -connect synapse.vm:443 2>/dev/null | awk '/-----BEGIN CERTIFICATE-----/, /-----END CERTIFICATE-----/' >> /usr/local/share/ca-certificates/synapse.vm.crt +update-ca-certificates +``` \ No newline at end of file From 5e76972388c79df9dc6705728313d4c124e3dd1f Mon Sep 17 00:00:00 2001 From: Gredin 67 Date: Tue, 16 Feb 2021 13:25:25 +0100 Subject: [PATCH 12/12] finalize README --- README.md | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5d92d0b..bdeccd8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.* ## Overview -A puppeting bridge between Matrix and Signal packaged as a YunoHost service. Messages, notifications (and sometimes media) are bridged between a Signal user and a Matrix user. Currently the Matrix user can NOT invite other Matrix user in a bridged Signal room, so only someone with a Signal account can participate to Signal group conversations. The ["Mautrix-Signal"](https://github.com/tulir/mautrix-signal/wiki) bridge consists in a Synapse App Service and relies on postgresql (mysql also possible). Therefore, [Synapse for YunoHost](https://github.com/YunoHost-Apps/synapse_ynh) should be installed beforehand. +A puppeting bridge between Matrix and Signal packaged as a YunoHost service. Messages, notifications (and sometimes media) are bridged between a Signal user and a Matrix user. Currently the Matrix user can NOT invite other Matrix user in a bridged Signal room, so only someone with a Signal account can participate to Signal group conversations. The ["Mautrix-Signal"](https://docs.mau.fi/bridges/python/signal/index.html) bridge consists in a Synapse App Service and relies on postgresql (mysql also possible). Therefore, [Synapse for YunoHost](https://github.com/YunoHost-Apps/synapse_ynh) should be installed beforehand. **Shipped version:** 0.1.0 @@ -21,6 +21,35 @@ A puppeting bridge between Matrix and Signal packaged as a YunoHost service. Mes * Ask on one of the following rooms: #mautrix_yunohost:matrix.fdn.fr or #signal:maunium.net +## Bridging usage +** Note that several Signal and Matrix users can be bridged, each Signal account has its own bot administration room. If they are in a same Signal group, only one matrix room will be created. ** + +### Bridge a Signal user and a Matrix user +* First your Matrix user or Synapse Server has to be authorized in the Configuration of the bridge (see below) +* Then, invite the bot (default @signalbot:yoursynapse.domain) in this new Mautrix-Signal bot administration room. + * If the Bot does bot accept, see the [troubleshooting page](https://docs.mau.fi/bridges/general/troubleshooting.html) +* Send ``!sg help`` to the bot in the created room to know how to control the bot. +See also [upstream wiki Authentication page](https://docs.mau.fi/bridges/python/signal/authentication.html) + +#### Linking the Bridge as a secondary device +* Type ``!sg link`` +* Open Signal App of your primary device +* Open Settings => Linked Devices => Capture the QR code with the camera +* By defaults, only conversations with very recent messages will be bridged +* Accept invitations to the bridged chat rooms +#### Registering the Bridge as a primary device +* Type ``!sg register ``, where ```` is your phone number in the internation format with no space, e.g. ``!sg register +33612345678`` +* Answer in the bot room with the verification code that you reveived in SMS. +* Set a profile name with ``!sg set-profile-name `` + +### Double puppeting +* Log in with ``login-matrix `` +* After logging in, the default Matrix puppet of your Signal account should leave rooms and your account should join all rooms the puppet was in automatically. + + +### Relaybot: Bridge a group for several Matrix and several Signal users to chat together +Not yet available + ## Configuration of the bridge The bridge is [roughly configured at installation](https://github.com/YunoHost-Apps/mautrix_signal_ynh/blob/master/conf/config.yaml), e.g. allowed admin and user of the bot. Finer configuration can be done by modifying the @@ -30,7 +59,7 @@ and then restarting the mautrix_signal service. ## Documentation - * Official "Mautrix-Signal" documentation: https://github.com/tulir/mautrix-signal/wiki + * Official "Mautrix-Signal" documentation: https://docs.mau.fi/bridges/python/signal/index.html * Matrix room (Matrix Bridges in Yunohost): #mautrix_yunohost:matrix.fdn.fr * Matrix room (upstream app): #signal:maunium.net In case you need to upload your logs somewhere, be aware that they contain your contacts' and your phone numbers. Strip them out with @@ -68,12 +97,13 @@ In case you need to upload your logs somewhere, be aware that they contain your * Other info you would like to add about this app. **More info on the documentation page:** -https://github.com/tulir/mautrix-signal/wiki/ +https://docs.mau.fi/bridges/python/signal/index.html ## Links * Report a bug: https://github.com/YunoHost-Apps/mautrix_signal_ynh/issues * App website: https://github.com/YunoHost-Apps/mautrix-whatsapp_ynh + * Upstream app documentation: https://docs.mau.fi/bridges/python/signal/index.html * Upstream app repository: https://github.com/tulir/mautrix-signal * Up-Upstream repository: https://gitlab.com/signald/signald * YunoHost website: https://yunohost.org/