Unintentional QLINE (help me understand why)

These are old archives. They are kept for historic purposes only.
Post Reply
MrBugSir
Posts: 29
Joined: Fri Feb 25, 2005 9:19 pm
Location: Seattle, Washington, USA, Earth
Contact:

Unintentional QLINE (help me understand why)

Post by MrBugSir »

Hey there!

I had a chatter accidentally caught in my QLINE:
[19:15] -chat.mynetwork.com- Forbidding Q-lined nick mrs_doolittle from [x.x.x.x].
And here is my config snippet:

Code: Select all


 ban nick {
	mask "*A*d*m*i*n*";
	reason "Unauthorized Nickname";
 };

 ban nick {
	mask "*R*o*o*t*";
	reason "Unauthorized Nickname";
 };

Um, I would be eternally grateful if some one could explain to my how "mrs_doolittle" could be caught up in either of those QLINEs?
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Code: Select all

 ban nick { 
   mask "*R*o*o*t*"; 
   reason "Unauthorized Nickname"; 
 }; 
That is why, this is how:

mRs_dOOliTtle

* = match anything.
MrBugSir
Posts: 29
Joined: Fri Feb 25, 2005 9:19 pm
Location: Seattle, Washington, USA, Earth
Contact:

Post by MrBugSir »

Stealth ---

Thanks. I am blind.
Post Reply