diff options
Diffstat (limited to 'connector/irc/config.go')
-rw-r--r-- | connector/irc/config.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/connector/irc/config.go b/connector/irc/config.go index 0b36473..b95ea25 100644 --- a/connector/irc/config.go +++ b/connector/irc/config.go @@ -32,6 +32,20 @@ func init() { IsBoolean: true, Default: "false", }, + &ConfigEntry{ + Name: "server_pass", + Description: "Server password (authenticate with PASS command)", + IsPassword: true, + }, + &ConfigEntry{ + Name: "sasl_user", + Description: "Username for SASL authentication", + }, + &ConfigEntry{ + Name: "sasl_pass", + Description: "Password for SASL authentication", + IsPassword: true, + }, }, }) } |