You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 10, 2024. It is now read-only.
// see http://ircv3.net/specs/extensions/sasl-3.1.html
this.send('CAP','REQ','sasl');
}elseif(this.opt.password){
this.send('PASS',this.opt.password);
}
In some cases, it's useful to connect with a server password and a SASL password, so it might be useful to have a separate config option for SASL password and server password since they're not necessarily mutually exclusive.
My use case is using the server password to authenticate an I:Line/Auth Block, alongside normal SASL Plain services authentication.