|
| 1 | +Exchange messages between [matrix.org](https://matrix.org) and Zulip! If |
| 2 | +you're looking to mirror an IRC channel in particular, we recommend our |
| 3 | +[direct IRC integration](/integrations/doc/irc). |
| 4 | + |
| 5 | +### Install the bridge software |
| 6 | + |
| 7 | +1. Clone the Zulip API repository, and install its dependencies. |
| 8 | + |
| 9 | + ``` |
| 10 | + git clone https://github.com/zulip/python-zulip-api.git |
| 11 | + cd python-zulip-api |
| 12 | + python3 ./tools/provision |
| 13 | + ``` |
| 14 | +
|
| 15 | + This will create a new Python virtualenv. You'll run the bridge service |
| 16 | + inside this virtualenv. |
| 17 | +
|
| 18 | +1. Activate the virtualenv by running the `source` command printed |
| 19 | + at the end of the output of the previous step. |
| 20 | +
|
| 21 | +1. Install the Matrix bridge software in your virtualenv, by running: |
| 22 | +
|
| 23 | + ``` |
| 24 | + pip install -r zulip/integrations/bridge_with_matrix/requirements.txt |
| 25 | + ``` |
| 26 | +
|
| 27 | +### Configure the bridge |
| 28 | +
|
| 29 | +1. {!create-a-generic-bot.md!} |
| 30 | + Download the bot's `zuliprc` configuration file to your computer. |
| 31 | +
|
| 32 | +1. [Subscribe the bot](/help/subscribe-users-to-a-channel) to the Zulip |
| 33 | + stream that will contain the mirror. |
| 34 | +
|
| 35 | +1. Inside the virtualenv you created above, run |
| 36 | +
|
| 37 | + ``` |
| 38 | + python zulip/integrations/bridge_with_matrix/matrix_bridge.py \ |
| 39 | + --write-sample-config matrix_bridge.conf --from-zuliprc <path/to/zuliprc> |
| 40 | + ``` |
| 41 | +
|
| 42 | + where `<path/to/zuliprc>` is the path to the `zuliprc` file you downloaded. |
| 43 | +
|
| 44 | +1. Create a user on [matrix.org](https://matrix.org/) or another matrix |
| 45 | + server, preferably with a descriptive name like `zulip-bot`. |
| 46 | +
|
| 47 | +1. Edit `matrix_bridge.conf` to look like this: |
| 48 | +
|
| 49 | + ``` |
| 50 | + [zulip] |
| 51 | + |
| 52 | + api_key = aPiKeY |
| 53 | + site = https://chat.zulip.org |
| 54 | + stream = "stream name" |
| 55 | + topic = "{{ integration_display_name }} mirror" |
| 56 | + [matrix] |
| 57 | + host = https://matrix.org |
| 58 | + username = <your matrix username> |
| 59 | + password = <your matrix password> |
| 60 | + room_id = #room:matrix.org |
| 61 | + ``` |
| 62 | +
|
| 63 | + The first three values should already be there; the rest you'll have to fill in. |
| 64 | + Make sure **stream** is set to the stream the bot is |
| 65 | + subscribed to. |
| 66 | +
|
| 67 | + {% if 'IRC' in integration_display_name %} |
| 68 | +
|
| 69 | + NOTE: For matrix.org, the `room_id` generally takes the form |
| 70 | + `#<irc_network>_#<channel>:matrix.org`. You can see the format for |
| 71 | + several popular IRC networks |
| 72 | + [here](https://github.com/matrix-org/matrix-appservice-irc/wiki/Bridged-IRC-networks), under |
| 73 | + the "Room alias format" column. |
| 74 | +
|
| 75 | + For example, the `room_id` for the `#zulip-test` channel on freenode is |
| 76 | + `#freenode_#zulip-test:matrix.org`. |
| 77 | +
|
| 78 | + {% endif %} |
| 79 | +
|
| 80 | +1. Run the following command to start the matrix bridge: |
| 81 | +
|
| 82 | + ``` |
| 83 | + python zulip/integrations/bridge_with_matrix/matrix_bridge.py -c matrix_bridge.conf |
| 84 | + ``` |
| 85 | +
|
| 86 | +!!! tip "" |
| 87 | +
|
| 88 | + You can customize the message formatting by |
| 89 | + editing the variables `MATRIX_MESSAGE_TEMPLATE` and `ZULIP_MESSAGE_TEMPLATE` |
| 90 | + in `zulip/integrations/bridge_with_matrix/matrix_bridge.py`. |
| 91 | +
|
| 92 | +**Note**: There are a handful of |
| 93 | +[IRC channels](https://github.com/matrix-org/matrix-appservice-irc/wiki/Channels-from-which-the-IRC-bridge-is-banned) |
| 94 | +that have temporarily banned the Matrix.org IRC bridge. |
| 95 | +You can't currently mirror those channels using this integration. |
0 commit comments