[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: IRC relocation



> #debian-women now. If you have specific questions about how to connect
> your client to multiple networks, I'm happy to take off-list questions


For people using irssi and still use freenode (aka irc.debian.org),
please find below an example simple ~/.irssi/config file.

PS : I use the nickname registration service on both freenode and
oftc. Please use "/msg NickServ HELP" for more info. Hence the
autosend commands (where XXXXXXXX is replaced by by nickname password)

PS/2: please don't copy this blindly....I kept my example settings
sections and thus you would end up using "bubulle" as nickname....as
well as using the same channels than me..:-)

servers = (
  { 
    address = "irc.freenode.net";
    chatnet = "freenode";
    port = "6667";
    use_ssl = "no";
    autoconnect = "yes";
  },
  {
    address = "irc.oftc.net";
    chatnet = "oftc";
    port = "6667";
    use_ssl = "no";
    autoconnect = "yes";
  }
);


settings = {
  core = {
    real_name = "Christian Perrier";
    user_name = "bubulle";
    nick = "bubulle";
  };
};

chatnets = {
  freenode = {
    type = "IRC";
    autosendcmd = "/^msg -freenode nickserv ident XXXXXXXX;wait -freenode 2000";
  };
  oftc = {
    type = "IRC";
    autosendcmd = "/^msg -oftc nickserv ident XXXXXXXX;wait -oftc 2000";
  };
};
channels = (
  { name = "#debian-boot"; chatnet = "freenode"; autojoin = "yes"; },
  { name = "#alioth"; chatnet = "oftc"; autojoin = "yes"; },
  { name = "#debian-l10n-fr"; chatnet = "freenode"; autojoin = "yes"; },
  { name = "#debian-devel-fr"; chatnet = "freenode"; autojoin = "yes";  },
  { name = "#shadow"; chatnet = "freenode"; autojoin = "yes"; },
  { name = "#debian-women"; chatnet = "oftc"; autojoin = "yes"; },
);



Reply to: