| 1 | # RocketChta |
| 2 | |
| 3 | - Status: ??? |
| 4 | - Maintainers: ??? |
| 5 | - Features: ??? |
| 6 | |
| 7 | > [!WARNING] |
| 8 | > **Create a dedicated user first. It will not relay messages from yourself if you use your account** |
| 9 | |
| 10 | ## Configuration |
| 11 | |
| 12 | > [!TIP] |
| 13 | > For detailed information about rocketchat settings, see [settings.md](settings.md) |
| 14 | |
| 15 | **Basic configuration example:** |
| 16 | |
| 17 | ```toml |
| 18 | [rocketchat.myrocketchat] |
| 19 | # Server/Login/Password are only required when not using webhooks |
| 20 | Server="https://rocket.example.com:443" |
| 21 | # When using token authentication, Login is your ID not your email |
| 22 | Login="yourlogin@domain.com" |
| 23 | Password="yourpass" |
| 24 | |
| 25 | # if you're using login/pass you can better enable because of this bug: |
| 26 | # https://github.com/RocketChat/Rocket.Chat/issues/7549 |
| 27 | PrefixMessagesWithNick=true |
| 28 | ``` |
| 29 | |
| 30 | ## FAQ |
| 31 | |
| 32 | ### What is `You are not authorized to change message properties` error? |
| 33 | |
| 34 | Your matterbridge bot must have the role `bot`. If it doesn't you will get the bug described in [#16097](https://github.com/RocketChat/Rocket.Chat/issues/16097). |
| 35 | |
| 36 | |