39 lines
682 B
Go
39 lines
682 B
Go
|
package xmpp
|
||
|
|
||
|
import (
|
||
|
. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
Register("xmpp", ConfigSchema{
|
||
|
&ConfigEntry{
|
||
|
Name: "jid",
|
||
|
Description: "JID",
|
||
|
Required: true,
|
||
|
},
|
||
|
&ConfigEntry{
|
||
|
Name: "password",
|
||
|
Description: "Password",
|
||
|
Required: true,
|
||
|
IsPassword: true,
|
||
|
},
|
||
|
&ConfigEntry{
|
||
|
Name: "nickname",
|
||
|
Description: "Nickname in MUCs",
|
||
|
Required: true,
|
||
|
},
|
||
|
&ConfigEntry{
|
||
|
Name: "port",
|
||
|
Description: "Port",
|
||
|
IsNumeric: true,
|
||
|
Default: "6667",
|
||
|
},
|
||
|
&ConfigEntry{
|
||
|
Name: "ssl",
|
||
|
Description: "Use SSL",
|
||
|
IsBoolean: true,
|
||
|
Default: "true",
|
||
|
},
|
||
|
})
|
||
|
}
|