Gentoo Archives: gentoo-user

From: Jacob Todd <jaketodd422@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] irssi autosendcmd
Date: Mon, 01 Jun 2009 04:04:48
Message-Id: 20090601040427.GA24037@zoidberg.hsd1.mi.comcast.net
1 I'm having some trouble getting irssi to set my nick on two irc servers
2 and then identify them. My current irssi config (just the important
3 part)
4 looks like this:
5
6
7 servers = (
8 {
9 address = "irc.oftc.net";
10 chatnet = "oftc";
11 port = "6667";
12 use_ssl = "no";
13 autoconnect = "yes";
14 },
15 {
16 address = "irc.freenode.net";
17 chatnet = "freenode";
18 port = "6667";
19 use_ssl = "no";
20 autoconnect = "yes";
21 }
22 );
23
24 chatnets = {
25 oftc = {
26 type = "IRC";
27 autosendcmd = "/^nick jt_;/^msg nickserv identify passwordlol";
28 };
29 freenode = {
30 type = "IRC";
31 autocendcmd = "/^nick dreadlorde;/^msg NickServ identify passwordlol";
32 };
33 };
34
35 channels = (
36 { name = "#suckless"; chatnet = "oftc"; autojoin = "yes"; },
37 { name = "#awesome"; chatnet = "oftc"; autojoin = "yes"; },
38 { name = "#gentoo"; chatnet = "freenode"; autojoin = "yes"; }
39 { name = "#uzbl"; chatnet = "freenode"; autojoin = "yes"; }
40 );
41
42
43 My nick gets set and identified on irc.oftc.net, but not on freenode.
44 Anyone know what could be going on here?
45
46 --
47 Jake Todd
48 // If it isn't broke, tweak it!

Replies

Subject Author
Re: [gentoo-user] irssi autosendcmd Matt Nordhoff <mnordhoff@×××××.com>