bitbot-3.11-fork/modules/sasl/README.md

47 lines
1.5 KiB
Markdown
Raw Normal View History

2019-02-07 13:51:08 +00:00
# Configuring SASL
You can either configure SASL through `!serverset sasl` from an registered and identified admin account or directly through sqlite.
## USERPASS Mechanism
BitBot supports a special SASL mechanism name: `USERPASS`. This internally
represents "pick the strongest username:password algorithm"
2019-02-07 13:51:08 +00:00
## !serverset sasl
These commands are to be executed from a registered admin account
#### USERPASS
> !serverset sasl userpass <username>:<password>
2019-02-07 13:51:08 +00:00
#### PLAIN
> !serverset sasl plain <username>:<password>
2019-02-07 13:51:08 +00:00
#### SCRAM-SHA-1
> !serverset sasl scram-sha-1 <username>:<password>
2019-02-07 13:51:08 +00:00
#### SCRAM-SHA-256
> !serverset sasl scram-sha-256 <username>:<password>
2019-02-07 13:51:08 +00:00
#### EXTERNAL
> !serverset sasl external
## sqlite
Execute these against the current bot database file (e.g. `$ sqlite3 databases/bot.db`)
#### USERPASS
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "userpass", "args": "<username>:<password>"}');
2019-02-07 13:51:08 +00:00
#### PLAIN
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "plain", "args": "<username>:<password>"}');
2019-02-07 13:51:08 +00:00
#### SCRAM-SHA-1
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-1", "args": "<username>:<password>"}');
2019-02-07 13:51:08 +00:00
#### SCRAM-SHA-256
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-256", "args": "<username>:<password>"}');
2019-02-07 13:51:08 +00:00
#### external
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "external"}');