Page 1 of 1

Rehash fails

Posted: Wed May 03, 2006 4:09 pm
by Alex
Hello,

I have a problem here that I not can make to fix. I'll post it here what's happening when I do /rehash:

listen xx.xx.xx.xxx:6667;

options

#ssl;
clientsonly;



listen xx.xx.xx.xxx:6667;
listen xx.xx.xx.xxx:8067;

So, when I do /rehash in mIRC, I get the following err message:

[3:33pm] -my.domain.net- *** Notice -- unrealircd.conf:515: unknown directive options.

I did also tried the following example from the UnrealIRCd Manual:

listen *:6601 {
options {
ssl;
clientsonly;
};
};

but this did not work either.

Are there anyone that know if something are set wrong here or can tell me what it should be, it would be appreciated.

Thanks in advance.

Re: Rehash fails

Posted: Wed May 03, 2006 6:09 pm
by Grunt
Alex wrote:listen xx.xx.xx.xxx:6667;

options

#ssl;
clientsonly;
Replace with:

Code: Select all

listen xx.xx.xx.xxx:6667;
options {
   clientsonly;
};

Re: Rehash fails

Posted: Wed May 03, 2006 6:35 pm
by Alex
Grunt wrote:
Alex wrote:listen xx.xx.xx.xxx:6667;

options

#ssl;
clientsonly;
Replace with:

Code: Select all

listen xx.xx.xx.xxx:6667;
options {
   clientsonly;
};
Hello Grunt, did what you suggested me above, but still get the following err.message after this change:

Code: Select all

listen xx.xx.xx.xxx:6667;
options {
   clientsonly;
};
[8:25pm] -irc.my.net- *** Notice -- unrealircd.conf:514: unknown directive options.

Posted: Wed May 03, 2006 7:15 pm
by Jobe
Try replacing:

Code: Select all

listen xx.xx.xx.xxx:6667; 
options { 
   clientsonly; 
};
with:

Code: Select all

listen xx.xx.xx.xxx:6667 { 
options { 
   clientsonly; 
};
};

Posted: Wed May 03, 2006 7:26 pm
by Alex
Thank you Jobe1986. Did what you suggested and everything works fine now. :wink: