Search found 568 matches

by Jason
Fri Mar 28, 2008 3:34 am
Forum: Unreal 3.2 Spamfilters
Topic: What regex must I use for this clones?
Replies: 6
Views: 4179

Re: What regex must I use for this clones?

That last regex you pasted will never, under any circumstances, match ANY user (using the u match). it tries to make a "Nick!User@Host:Realname" match "CoolguyAzE" or such, exactly. That will never happen. The pattern has no !, @ or :, all of which are guaranteed to be present. P...
by Jason
Sun Mar 23, 2008 4:50 pm
Forum: Unreal 3.2 Modules
Topic: exit_client
Replies: 6
Views: 4261

Re: exit_client

Not entirely fair, Nate. He could simply be doing this to learn the module system, or may not want to take the time to explain a complex module of which this is only a small part. He was given the spamfilter solution, acknowledged it, and stated that it was not sufficient for his purposes, he should...
by Jason
Thu Mar 20, 2008 10:32 pm
Forum: Unreal 3.2 Modules
Topic: Courtroom
Replies: 7
Views: 4415

Re: Courtroom

I never really used courtroom. quarantine never really worked right. I have, however, used courtroom_lite ever since it was created. It still works on my 3.2.7 net.
by Jason
Tue Mar 11, 2008 10:04 pm
Forum: Unreal 3.2 Spamfilters
Topic: block nick
Replies: 2
Views: 2956

Re: block nick

(?-i)^[a-z][A-Z]{9}!
by Jason
Tue Mar 11, 2008 10:03 pm
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter Help need
Replies: 2
Views: 2691

Re: Spamfilter Help need

You are asking how to spy on your users' every word. We don't help with this. It's unethical, and, in many places, it's illegal.

LOCKED
by Jason
Tue Mar 04, 2008 3:04 pm
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter for clones
Replies: 2
Views: 3826

Re: Spamfilter for clones

/gline *@219.93.152.2 7d Cloning.

No spamfilter needed, they have the same IP.
by Jason
Mon Feb 25, 2008 11:00 pm
Forum: Unreal 3.2 Spamfilters
Topic: how to add clones spamfilter
Replies: 3
Views: 3410

Re: how to add clones spamfilter

The answer is no.

He used [a-a] not [a-z] when, with sensitivity on, what he wanted was: [a-zA-Z] for the ident. Otherwise, yes.
by Jason
Wed Feb 06, 2008 1:57 pm
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter for clones
Replies: 34
Views: 284063

Re: Spamfilter for clones

It will work, but won't be case sensitive, and the (?) wont do anything. (If you wanted that to be the prefix to make it case sensitive, you want (?-i) )
by Jason
Sat Feb 02, 2008 6:39 pm
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter for clones
Replies: 34
Views: 284063

Re: Spamfilter for clones

Ah. /me mangles the mangling. Stupid /who...
by Jason
Sat Feb 02, 2008 1:10 am
Forum: Unreal 3.2 Spamfilters
Topic: Spamfilter for clones
Replies: 34
Views: 284063

Re: Spamfilter for clones

Stealth: You missed the numeral.

Code: Select all

^(?-i)here[A-Z][a-z]![A-Z][a-z]@[^:]+:1 [a-z]$
by Jason
Sat Feb 02, 2008 1:08 am
Forum: Unreal 3.2 Spamfilters
Topic: Unable to remove spamfilter entries?
Replies: 5
Views: 4964

Re: Unable to remove spamfilter entries?

A friendly reminder: None of those filters are any good, really. * doesn't mean anything_here in spamfilters. They use regular expressions, not glob matching. * means previous character was repeated zero or more times.
by Jason
Sat Jan 12, 2008 3:53 am
Forum: Unreal 3.2 Spamfilters
Topic: Exact Word regex
Replies: 4
Views: 3512

Re: Exact Word regex

Stealth: What's the alternative application of exact-word matching?


\bapple\b
by Jason
Fri Dec 28, 2007 10:43 pm
Forum: Unreal 3.2 Spamfilters
Topic: Any regex for this ?
Replies: 9
Views: 5334

Re: Any regex for this ?

Email auth is the way to go. Most services have a feature that requires users to have a valid email. To get their nick, they have to use the password sent to them by email when they try to register.
by Jason
Fri Dec 28, 2007 10:40 pm
Forum: Unreal 3.2 Spamfilters
Topic: empty string filtering
Replies: 4
Views: 3382

Re: empty string filtering

Match: " {2,}"
Replace: " "
by Jason
Wed Dec 05, 2007 3:46 am
Forum: Unreal 3.2 Support
Topic: Unable to resolve server
Replies: 4
Views: 2122

Re: Unable to resolve server

Is your DNS configured properly? Does the domain name you're using point to the IP your server is running on?

Example: You called your server irc.party.com. You don't own party.com, and didn't set up irc.party.com to point to your computer. party.com, obviously, wont work for you.