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

Re: Question about &XXX channels



[Jordi Muñoz]
| My question is: Is there any way to hidde the &XXX (like &KILLS,
| &ERRORS, etc, i.e., internal ircd channels) channels to clients?
| 
| I want to hidde them because I'd like to simplify to my users the use of
| my server.

check out ircd/channel.c, the function setup_server_channels().
if you change the lines:

  smode = MODE_MODERATED|MODE_TOPICLIMIT|MODE_NOPRIVMSGS|MODE_ANONYMOUS|
          MODE_QUIET;

to 

  smode = MODE_MODERATED|MODE_TOPICLIMIT|MODE_NOPRIVMSGS|MODE_ANONYMOUS|
          MODE_QUIET|MODE_SECRET;

the channels won't turn up in /list

-Bjørn