1839162421
Most of the networks don't allow unicode username. This patch allows users to specify username optionally. When specified, username is used for connecting IRC networks instead of nickname.
21 lines
369 B
JSON
21 lines
369 B
JSON
{
|
|
"user": "example",
|
|
"password": "password",
|
|
"log": false,
|
|
"networks": [{
|
|
"name": "Freenode",
|
|
"host": "irc.freenode.net",
|
|
"port": 6697,
|
|
"tls": true,
|
|
"password": "serverpw",
|
|
"nick": "john",
|
|
"username": "john",
|
|
"realname": "John Doe",
|
|
"commands": [
|
|
"/msg NickServ identify password",
|
|
"/msg ChanServ op #chan"
|
|
],
|
|
"join": "#foo, #bar"
|
|
}]
|
|
}
|