Webchat

These are old archives. They are kept for historic purposes only.
Post Reply
DJ24966
Posts: 26
Joined: Thu Nov 06, 2008 7:18 am

Webchat

Post by DJ24966 »

Why is that when users join any of my channel through a webhchat, they can op themselves even though they do not have access?
zEkE
Posts: 111
Joined: Wed Apr 14, 2004 9:30 am
Location: Harrisonburg, VA
Contact:

Re: Webchat

Post by zEkE »

Unknown, can you provide more information?

This is likely off topic, as it is in all probability a client (webchat) configuration issue, but if you can verify all commands the webchat is sending the server that might cause this to happen it would assist greatly.
NetAdmin - irc.unitedchristianchat.net
http://www2.i-al.net/ircbots/
vbSteve
Posts: 4
Joined: Mon Nov 17, 2008 10:19 am

Re: Webchat

Post by vbSteve »

When a user creates a channel, or joins a channel where no-one is present, (s)he will automatically become the owner of it course. I counter this by deny all channels, and allowing only the channels that I support, and then add a bot to the channel, then the bot will have the ownership of the channel, but you can program the bot to give you and only you ownership, whenever you join that channel.

Code: Select all

deny channel {
	channel "*";
	reason "Channel creation not allowed";
};

allow channel { channel "#channelname"; };
allow channel { channel "#help"; };

official-channels {
	"#help" { topic "The official help channel, if nobody is present type /helpop helpme"; };
};
Post Reply