2025-02-25 13:07:56 +09:00
<!--
2025-11-09 22:03:50 +09:00
SPDX-FileCopyrightText: 2019 - 2025 Slavi Pantaleev
SPDX-FileCopyrightText: 2019 Eduardo Beltrame
2025-03-05 12:43:41 +09:00
SPDX-FileCopyrightText: 2019 Hugues Morisset
2025-11-09 22:03:50 +09:00
SPDX-FileCopyrightText: 2020 Tulir Asokan
2025-02-25 13:07:56 +09:00
SPDX-FileCopyrightText: 2021 - 2022 MDAD project contributors
2025-03-05 12:43:41 +09:00
SPDX-FileCopyrightText: 2021 Aaron Raimist
2025-02-25 13:07:56 +09:00
SPDX-FileCopyrightText: 2022 Dennis Ciba
2025-03-05 12:43:41 +09:00
SPDX-FileCopyrightText: 2022 László Várady
2025-11-09 22:03:50 +09:00
SPDX-FileCopyrightText: 2022 Vladimir Panteleev
SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
2025-02-25 13:07:56 +09:00
SPDX-License-Identifier: AGPL-3.0-or-later
-->
2025-11-09 22:03:50 +09:00
# Setting up Mautrix Facebook bridging (optional, removed)
2019-05-08 16:33:09 +02:00
2025-11-09 22:03:50 +09:00
🪦 The playbook used to be able to install and configure [mautrix-facebook ](https://github.com/mautrix/facebook ), but no longer includes this component, as it has been deprecated in favor of the [mautrix-meta ](https://github.com/mautrix/meta ) Messenger/Instagram bridge.
2025-01-09 16:28:29 +09:00
2025-11-09 22:03:50 +09:00
The mautrix-meta bridge can be [installed using this playbook ](configuring-playbook-bridge-mautrix-meta-messenger.md ).
2024-02-19 10:13:36 +02:00
2025-11-09 22:03:50 +09:00
## Uninstalling the bridge manually
2019-05-08 16:33:09 +02:00
2025-11-09 22:03:50 +09:00
If you still have the bridge installed on your Matrix server, the playbook can no longer help you uninstall it and you will need to do it manually. To uninstall manually, run these commands on the server:
2019-05-08 16:33:09 +02:00
2024-12-01 16:42:30 +09:00
```sh
2025-11-09 22:03:50 +09:00
systemctl disable --now matrix-mautrix-facebook.service
2019-06-07 13:40:12 +03:00
2025-11-09 22:03:50 +09:00
rm -rf /matrix/mautrix-facebook
2019-06-07 13:40:12 +03:00
2025-11-09 22:03:50 +09:00
/matrix/postgres/bin/cli-non-interactive 'DROP DATABASE matrix_mautrix_facebook;'
2019-06-07 13:40:12 +03:00
```