Allow channel block change with new update.
Posted: Tue Mar 15, 2005 2:36 am
I used to use this block successfully for multiple channels to be allowed.
With version 3.2.3, i get the following errors on rehash/load
To allow the configuration file to load without any errors, i had to rewrite it like this.
I personaly find this last method messy.. is this the proper solution or am i missing something simple?
Code: Select all
allow
channel {
channel "#Lobby";
channel "#Oper";
channel "#Memebers";
};
Code: Select all
[9:28pm] -Irc.matridom.ca- *** Notice -- Loading IRCd configuration ..
[9:28pm] -Irc.matridom.ca- *** Notice -- [warning] configfiles/banlist.conf:11: Duplicate allow channel::channel directive
[9:28pm] -Irc.matridom.ca- *** Notice -- [warning] configfiles/banlist.conf:12: Duplicate allow channel::channel directive
[9:28pm] -Irc.matridom.ca- *** Notice -- [SQL Log] SQL connection activated
[9:28pm] -Irc.matridom.ca- *** Notice -- Configuration loaded without any problems ..Code: Select all
allow
channel {
channel "#Lobby";
};
allow
channel {
channel "#Oper";
};
allow
channel {
channel "#Members";
};