Allow channels and auto Oper

These are old archives. They are kept for historic purposes only.
Post Reply
sonick
Posts: 2
Joined: Tue May 03, 2011 11:21 am

Allow channels and auto Oper

Post 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
sonick
Posts: 2
Joined: Tue May 03, 2011 11:21 am

Re: Allow channels and auto Oper

Post 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
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Allow channels and auto Oper

Post 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.
Post Reply