error] unrealircd.conf: Unexpected EOF for section starting

These are old archives. They are kept for historic purposes only.
Post Reply
jaystew
Posts: 2
Joined: Sat Dec 06, 2008 3:10 pm

error] unrealircd.conf: Unexpected EOF for section starting

Post 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
jaystew
Posts: 2
Joined: Sat Dec 06, 2008 3:10 pm

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

Post by jaystew »

I also tried

oper _Darkness_Falls_ {

class clients;
from {
userhost [email protected];

No joy, any one who can help please :cry:
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

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

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