Page 1 of 1

how too auto load channel

Posted: Thu Jan 28, 2010 1:18 pm
by c64web
First off i wish to introduce myself.
I run a small web site run from a unmodified commodore 64 running contiki. www.c64web.com
I'm a retro computer collector. :)

I started a irc server with the sold purpose of having a unbiased and friendly environment for commodore computer hobbyist.

I have unrealircd working but i would like to auto load the only channel i wish to have on our irc server #c64mates, how can i auto
load the channel in the conf file and deny all others. ?

Thanks in advance for any help.

Re: how too auto load channel

Posted: Wed Feb 03, 2010 11:22 pm
by Bunkerwaiss
Firstly, you can allow one single channel, and deny all others..

Allowing the single chan

Code: Select all

allow channel {
	channel "#c64mates";
};
Denying all channels

Code: Select all

deny channel {
	channel "*"; // for all channels
	reason "The reason";
	redirect "#c64mates";
	warn on; // or OFF, is up to you
};
in the SET blocks at the end of the config file...

Code: Select all

set {
      auto-join "#c64mates";
      };
And don't forget to read the documentation about this..
http://www.vulnscan.org/UnrealIRCd/unre ... annelblock
http://www.vulnscan.org/UnrealIRCd/unre ... annelblock
http://www.vulnscan.org/UnrealIRCd/unre ... l#setblock

Re: how too auto load channel

Posted: Wed Feb 03, 2010 11:50 pm
by c64web
Thanks mate that worked a treat,
:)