Allowing users to use blocked names?

These are old archives. They are kept for historic purposes only.
Post Reply
token
Posts: 2
Joined: Tue Mar 16, 2004 2:45 am
Location: in your dresser

Allowing users to use blocked names?

Post 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
Yum!
codemastr
Former UnrealIRCd head coder
Posts: 811
Joined: Sat Mar 06, 2004 8:47 pm
Location: United States
Contact:

Post 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.
-- codemastr
token
Posts: 2
Joined: Tue Mar 16, 2004 2:45 am
Location: in your dresser

Post by token »

Thank you so much!
Yum!
Post Reply