Rehash fails

These are old archives. They are kept for historic purposes only.
Post Reply
Alex
Posts: 88
Joined: Sun Dec 26, 2004 11:07 pm
Location: Kalmar Län - Sweden

Rehash fails

Post 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.
Grunt
Posts: 159
Joined: Mon Jan 09, 2006 7:31 pm
Contact:

Re: Rehash fails

Post 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;
};
Computers are machines that cause trouble you wouldn't normally have if you wouldn't have a computer.
Alex
Posts: 88
Joined: Sun Dec 26, 2004 11:07 pm
Location: Kalmar Län - Sweden

Re: Rehash fails

Post 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.
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post 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; 
};
};
Alex
Posts: 88
Joined: Sun Dec 26, 2004 11:07 pm
Location: Kalmar Län - Sweden

Post by Alex »

Thank you Jobe1986. Did what you suggested and everything works fine now. :wink:
Post Reply