Page 1 of 1

CloneX SpamFilter

Posted: Sun Apr 03, 2005 5:33 pm
by [SkG]
I don't know how to use the spam filter and i read this:
seems flooder(s) are using ClonesX script to flood, you can stop one of their method by this regex:

^[a-z][0-9]{1,4}!~[a-z][0-9]{1,4}@.+:[a-z]{6}$
I want know how to add this spamfilter

Posted: Sun Apr 03, 2005 6:13 pm
by Syzop

Code: Select all

/spamfilter add kill u - please_go_away ^[a-z][0-9]{1,4}!~[a-z][0-9]{1,4}@.+:[a-z]{6}$
Or 'gline' instead of kill, etc etc, read up about spamfilter in 3.14 - Spamfilter.

Note the ~ sign at ident, if you got a server with ident disabled (no set::options::identd-check) then you need to remove that ~ because nobody will have a ~ in it, so then you want to use:

Code: Select all

/spamfilter add kill u - please_go_away ^[a-z][0-9]{1,4}![a-z][0-9]{1,4}@.+:[a-z]{6}$

Posted: Mon Apr 18, 2005 9:01 pm
by Magician
When i do:

Code: Select all

/spamfilter add kill u - please_go_away ^[a-z][0-9]{1,4}![a-z][0-9]{1,4}@.+:[a-z]{6}$
i get this:

Code: Select all

[03:59pm]  « Vangic.SmoothIRC.Net : Use: /spamfilter [add|del|remove|+|-] [type] [action] [tkltime] [tklreason] [regex]
[03:59pm]  « Vangic.SmoothIRC.Net : See '/helpop ?spamfilter' for more information.
whats the problem?

Posted: Mon Apr 18, 2005 10:11 pm
by Stealth

Code: Select all

/spamfilter add u kill - please_go_away ^[a-z][0-9]{1,4}![a-z][0-9]{1,4}@.+:[a-z]{6}$
Try that :)