aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2026-01-11 20:44:54 +0100
committertv <tv@krebsco.de>2026-01-11 20:44:54 +0100
commite649d8e60030bbff80115720225ac089a8b7bfd2 (patch)
tree8d3a3d2810a00ef7f87e3dad37cf93a4b20a52ce /README.md
parent0f78ac9974c6250e5f77facf0538dac754ec1cb7 (diff)
Reaktor.Plugins.SASL: init
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index c5a5cc6..f661d70 100644
--- a/README.md
+++ b/README.md
@@ -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.