Page 1 of 1

Allow channels and auto Oper

Posted: Tue May 03, 2011 11:31 am
by sonick
Hi there, firstly, thanks for the great software, I'm running it on an EC2 micro instance successfully.
However, I want to be able to achieve the following.

Limit talk to a single room and autojoin that room on login - I have added this to the conf file:

allow channel {
channel "#myroomname";
};

Doesnt appear to work however, it is possible to create new rooms.

Also, I want me, when I login, to auto attain oper status and set the room to oper only change topic.
I'm sure this must be relatively straight forward, but I'm new to this and don't seem to be able to find the right instructions in the docs.
set {
kline-address [email protected];
auto-join #myroom;
level-on-join voice;
options {
hide-ulines;
};
};

oper myusername {
class clients;
from {
userhost *@*;
};
password "mypass";
flags
{
admin;
netadmin;
can_zline;
can_gzline;
can_gkline;
global;
};
};

But neither seem to work

Any Conf recipies out there, or someone who can assist?

many thanks

Re: Allow channels and auto Oper

Posted: Tue May 03, 2011 2:03 pm
by sonick
Okay fixed the only one room here problem:

http://forums.unrealircd.com/viewtopic.php?f=3&t=6420

Needed to be combined with a deny channel block.
Still cant auto oper though...

Thanks

Re: Allow channels and auto Oper

Posted: Wed May 04, 2011 1:56 am
by katsklaw
There is no such thing as "AutoOper". You can only gain oper status via the /oper command. This is for very fundamental security reasons. If you are too lazy to type the /oper command I suggest you should place the command in your client's perform section or write a script for it.