Page 1 of 1
Webchat
Posted: Tue Nov 11, 2008 12:30 am
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?
Re: Webchat
Posted: Tue Nov 11, 2008 5:25 am
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.
Re: Webchat
Posted: Mon Nov 17, 2008 11:14 am
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"; };
};