j0ack / discirc

mirrored from https://git.joakode.fr/joack/discirc
http://docs.joakode.fr/discirc/
GNU General Public License v3.0
9 stars 8 forks source link

Add irc password into config #6

Closed j0ack closed 7 years ago

j0ack commented 7 years ago

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

TeoTwawki commented 7 years ago

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": ["~", "!"]
}
j0ack commented 7 years ago

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 ?