[error] set::cloak-keys missing!

These are old archives. They are kept for historic purposes only.
Post Reply
DarkRaven
Posts: 3
Joined: Mon Mar 02, 2009 8:51 pm

[error] set::cloak-keys missing!

Post by DarkRaven »

Hello everyone,

I was trying to set up UnrealIRCd this morning and I've reached the point where I don't know what to do.
I am using Debian 5 and here is the part out of my config:

set {
[...]
cloak-keys {
"aB1chhiGIg79g9fIgigioGIGh8989gGgGgG9D2eF3gH4";
"iJ5khgzgz677VOIOug89gGg9FGzfZGHh89hL6mN7oP8";
"qR9sTggGhoGuiog79679hh809hHH809zhH99hHHo0uV1wX2";
};
[...]
};


And it keeps saying:

* Loading IRCd configuration ..
[error] set::cloak-keys missing!
[error] 1 errors encountered
[error] IRCd configuration failed to pass testing

From my understanding this shouldn't happen since the way I've defined the cloak keys should be correct. I've already tried shorter keys and also without " ", no difference.
Thx in advance for any help!
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: [error] set::cloak-keys missing!

Post by Stealth »

What's the line above it in your set block?
DarkRaven
Posts: 3
Joined: Mon Mar 02, 2009 8:51 pm

Re: [error] set::cloak-keys missing!

Post by DarkRaven »

The line above is "help-channel #help;".
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: [error] set::cloak-keys missing!

Post by Stealth »

The channel name needs to be in quotes.

Code: Select all

help-channel "#help";
What happens is Unreal is reading the # as the start of a comment, so the ; would be in the comment, which doesn't close the line. Anywhere you're missing a ;, it won't see the end of that directive until the next logical ;. This means it completely ignores the cloak-keys sub-section.
DarkRaven
Posts: 3
Joined: Mon Mar 02, 2009 8:51 pm

Re: [error] set::cloak-keys missing!

Post by DarkRaven »

Thank you, it works! I was just used to naming channels with a # :)
Post Reply