CloneX SpamFilter

These are old archives. They are kept for historic purposes only.
Post Reply
[SkG]

CloneX SpamFilter

Post 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
Syzop
UnrealIRCd head coder
Posts: 2112
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post 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}$
Magician
Posts: 23
Joined: Sun Oct 31, 2004 10:35 pm
Location: Tulsa,Oklahoma

Post 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?
Magician
Network Coordinator
irc.smoothirc.net
Main channel: #smoothirc
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post 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 :)
Post Reply