I'm having some trouble getting irssi to set my nick on two irc servers
and then identify them. My current irssi config (just the important
part)
looks like this:
servers = (
{
address = "irc.oftc.net";
chatnet = "oftc";
port = "6667";
use_ssl = "no";
autoconnect = "yes";
},
{
address = "irc.freenode.net";
chatnet = "freenode";
port = "6667";
use_ssl = "no";
autoconnect = "yes";
}
);
chatnets = {
oftc = {
type = "IRC";
autosendcmd = "/^nick jt_;/^msg nickserv identify passwordlol";
};
freenode = {
type = "IRC";
autocendcmd = "/^nick dreadlorde;/^msg NickServ identify passwordlol";
};
};
channels = (
{ name = "#suckless"; chatnet = "oftc"; autojoin = "yes"; },
{ name = "#awesome"; chatnet = "oftc"; autojoin = "yes"; },
{ name = "#gentoo"; chatnet = "freenode"; autojoin = "yes"; }
{ name = "#uzbl"; chatnet = "freenode"; autojoin = "yes"; }
);
My nick gets set and identified on irc.oftc.net, but not on freenode.
Anyone know what could be going on here?
--
Jake Todd
// If it isn't broke, tweak it!