how too auto load channel

These are old archives. They are kept for historic purposes only.
Post Reply
c64web
Posts: 2
Joined: Thu Jan 28, 2010 1:09 pm

how too auto load channel

Post 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.
Bunkerwaiss
Posts: 36
Joined: Thu Dec 27, 2007 8:48 am

Re: how too auto load channel

Post 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
c64web
Posts: 2
Joined: Thu Jan 28, 2010 1:09 pm

Re: how too auto load channel

Post by c64web »

Thanks mate that worked a treat,
:)
Post Reply