Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

Viewing file on branch master

1# IRC
2
3- Status: Working
4- Maintainers: @poVoq, @selfhoster1312
5- Features: ???
6
7## Configuration
8
9> [!TIP]
10> For detailed information about irc settings, see [settings.md](settings.md)
11
12**Basic configuration example:**
13
14```toml
15[irc.myirc]
16RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
17Server="irc.libera.chat:6667"
18Nick="yourbotname"
19Password="yourpassword"
20# Enable SASL on modern servers like irc.libera.chat
21# UseSASL=true
22```
23
24## FAQ
25
26### How to connect to a password-protected channel?
27
28```toml
29[[gateway.inout]]
30account="irc.myirc"
31channel="#some-passworded-channel"
32options = { key="password" }
33```
34
35### How to connect to OFTC-style NickServ
36
37```toml
38[irc.myirc]
39Nick="yournick"
40Server="irc.oftc.net:6697"
41RunCommands=["PRIVMSG nickserv :IDENTIFY yourpass yournick"]
42```