1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gamja_ynh.git synced 2024-09-03 18:36:34 +02:00
gamja_ynh/conf/config.json

23 lines
859 B
JSON
Raw Normal View History

2022-02-05 12:03:12 +01:00
{
// IRC server settings.
"server": {
// WebSocket URL or path to connect to (string).
"url": "/?server=/webirc/websocket/",
// Channel(s) to auto-join (string or array of strings).
"autojoin": "#yunohost",
// Controls how the password UI is presented to the user. Set to
// "mandatory" to require a password, "optional" to accept one but not
// require it, "disabled" to never ask for a password, or "external" to
// use SASL EXTERNAL. Defaults to "optional".
"auth": "optional",
// Default nickname (string).
"nick": "asdf",
// Don't display the login UI, immediately connect to the server
// (boolean).
"autoconnect": true,
// Interval in seconds to send PING commands (number). Set to 0 to
// disable. Enabling PINGs can have an impact on client power usage and
// should only be enabled if necessary.
"ping": 60
}
}