Page 1 of 1

oper

Posted: Tue Jun 29, 2004 1:31 am
by Mr_S
i can connect mirc (finally!!) to my localhost and am working towards a website now to link with the server.. but i cant oper up

Code: Select all

oper [mynamehere] {
	class           clients;
	from {
		userhost *@*.*;
	};
	password "mypw-hereobv";
	flags
	{
		netadmin;
		global;
                can_overide;  
	};
};

When i try to oper up ~ i get a message "No O-lines for your host"

Any suggestions??

(ps ive read all the oper features in FAQ anddddd in this forum + official documentaion)

Posted: Tue Jun 29, 2004 4:42 am
by Josh
If you're connecting through /server localhost your hostmask will have no dots (.) include within it, therefore userhost *@*.*; becomes userhost *@*;, or it could even become userhost *@localhost;

Code: Select all

oper [mynamehere] { 
   class           clients; 
   from { 
      userhost *@*; 
   }; 
   password "mypw-hereobv"; 
   flags 
   { 
      netadmin; 
      global; 
                can_override;  
   }; 
};

Posted: Tue Jun 29, 2004 9:12 am
by AngryWolf
Additionally, you may get rid of the global operflag, because netadmin already includes it.

Posted: Wed Jun 30, 2004 2:52 pm
by roothorick
AngryWolf wrote:Additionally, you may get rid of the global operflag, because netadmin already includes it.
It's worthwhile to note that UnrealIRCd 3.2 example.conf includes both in the "bobsmith" example, which apparently is misleading.

Posted: Wed Jun 30, 2004 4:29 pm
by AngryWolf
Hmm... I didn't know that, haven't look in the example.conf for ages. Then I suggest you to report it at http://bugs.unrealircd.org/. :)