j0ack / discirc

mirrored from https://git.joakode.fr/joack/discirc

Home Page:http://docs.joakode.fr/discirc/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add irc password into config

j0ack opened this issue · comments

Create an optional config key ircPass to send password at irc authentication.

Do you mean nick pass or channel pass?

I took a stab at both recently. Had partial success.

{
    "discordToken": "my_discord_token",
    "ircServer": "chat.freenode.org",
    "ircPort": "6667",
    "ircSSl": false,
    "ircNick": "torii",
    "nickPass": "password",
    "mappingChannels":
    {
        "discord_chan": "#irc_chan"
    },
    "ircKeys":
    {
        "#irc_chan": "password"
    },
    "commandChars": ["~", "!"]
}

I was talking about nickPass but eventually I could include channel pass as well.
How about you create a new issue with it if you feel to implement it ?