Page 1 of 1

Allowing users to use blocked names?

Posted: Tue Mar 16, 2004 2:50 am
by token
Can it be done?


I would like to allow certain users the privilege to use disallowed names such as *serv names, admin, and other names I blocked.. Only certain users who aren't opered. How can this be done, if it can be done?


Thanks,
Token

Posted: Tue Mar 16, 2004 3:38 am
by codemastr
As of 3.2RC2 you can use a new config directive.

Code: Select all

except tkl {
     type qline;
     mask "*@blah.com";
}; /* This only allows you through ban nick {}'s */

except tkl {
     type gqline;
     mask "*@blah.com";
}; /* This only allows you through global qlines (SQLINES) */
You'd probably want to include both of those blocks for each host so it overrides local and global qlines.

Posted: Wed Mar 17, 2004 3:53 am
by token
Thank you so much!