diff options
| author | tv <tv@krebsco.de> | 2026-01-11 20:44:54 +0100 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2026-01-11 20:44:54 +0100 |
| commit | e649d8e60030bbff80115720225ac089a8b7bfd2 (patch) | |
| tree | 8d3a3d2810a00ef7f87e3dad37cf93a4b20a52ce /README.md | |
| parent | 0f78ac9974c6250e5f77facf0538dac754ec1cb7 (diff) | |
Reaktor.Plugins.SASL: init
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -70,3 +70,22 @@ curl -fsSv --unix-socket /path/to/reaktor.sock http://dontcare/ \ -H content-type:application/json \ -d "$(jq -n '{command:"PRIVMSG",params:["#somechannel","derp!"]}')" + +# SASL + + To use SASL for authentication, merge following snippet into your configuration: + + { + "plugins": [ + { + "plugin": "sasl", + "config": { + "mechanism": "PLAIN", + "username": "somename", + "password": "SOMEPASSWORD" + } + } + ] + } + + Note that at the moment only SASL PLAIN is supported. |
