Page 1 of 1

error] unrealircd.conf: Unexpected EOF for section starting

Posted: Sat Dec 06, 2008 3:16 pm
by jaystew
hi, need help please ive done everything i can think of and still get this error can any body help please.......

* Loading IRCd configuration ..
[error] unrealircd.conf: Unexpected EOF for section starting on line 59
[error] Could not load config file unrealircd.conf


oper {
_Darkness_falls;
class clients;
from {
userhost [email protected];

};
password "censored";
flags
{

netadmin;
can_zline;
can_gzline;
can_gkline;
global;
can_unkline;
can_setq;
};


line 57 being the problem (OPER PART)

i await a reply many thanks

Re: error] unrealircd.conf: Unexpected EOF for section starting

Posted: Sat Dec 06, 2008 3:23 pm
by jaystew
I also tried

oper _Darkness_Falls_ {

class clients;
from {
userhost [email protected];

No joy, any one who can help please :cry:

Re: error] unrealircd.conf: Unexpected EOF for section starting

Posted: Sat Dec 06, 2008 5:02 pm
by Stealth
This oper block has a rather messy format.

Code: Select all

oper _Darkness_Falls_ {
  from { userhost *@*; };
  password "censored";
  flags {
    netadmin;
    can_zline;
    can_gkline;
    can_gzline;
  };
};    
The last }; is not present in your paste, and that is possibly the reason why you receive this error.