Reverses in quit/part msg.

These are old archives. They are kept for historic purposes only.
Post Reply
Guest

Reverses in quit/part msg.

Post by Guest »

Can block Reverses in quit msg or part msg with Spamfilter? :?:
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

No. Spamfilter can't block control codes.
Spamfilter is intended to block spam! (doh)
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
Guest

Post by Guest »

Code: Select all

No. Spamfilter can't block control codes.
Spamfilter is intended to block spam! (doh)
Thanks you Dukat
Guest

Post by Guest »

Then Dukat how can i block repeat words in quit msg

example :

* Quits: BU54 (~[email protected]) ( [Quit ] tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt tttt )




:roll:
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

Code: Select all

/spamfilter + cpnNqat gzline 1d Spamming ([^ ]{3,})\1{25,}
That will match three or more letter words being repeated at least 25 times.


If you only want to block, replace 'gzline 1d' with 'block -'.
If you only want it to work on quit messages, replace 'cpnNqat' with 'q'.
Why the hell can't my signature be empty?
"Your message contains too few characters."
Guest

Post by Guest »

Code:
/spamfilter + cpnNqat gzline 1d Spamming ([^ ]{3,})\1{25,}


That will match three or more letter words being repeated at least 25 times.


If you only want to block, replace 'gzline 1d' with 'block -'.
If you only want it to work on quit messages, replace 'cpnNqat' with 'q'.
thanks Jason :D
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Post by Annihilator90 »

Jason wrote:

Code: Select all

/spamfilter + cpnNqat gzline 1d Spamming ([^ ]{3,})\1{25,}
That will match three or more letter words being repeated at least 25 times.


If you only want to block, replace 'gzline 1d' with 'block -'.
If you only want it to work on quit messages, replace 'cpnNqat' with 'q'.
Sorry but it doesn't seem to work for me. I changed the setting to /spamfilter + cpnNqat gzline 1d Spamming ([^ ]{3,})\1{10,} so as to kick three or more letter words being repeated 10 times but when i tested it in private, spamfilter didn't catch the repeated message. :(
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Post by Annihilator90 »

Dukat wrote:No. Spamfilter can't block control codes.
Spamfilter is intended to block spam! (doh)
So it means anyone can spam anything in their quit messages in reverses and we can't do anything? Doh :(
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post by Jobe »

Annihilator90 wrote:So it means anyone can spam anything in their quit messages in reverses and we can't do anything? Doh :(
Youd block the content, not the formatting control characters. Also if spamming in quit messages are that big of a problem for you try looking in the documentation on how to set up static quits (fixed quit messages).
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Post by Annihilator90 »

Thank You !!! :)
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

Jason's spamfilter is kinda overkill... Something more simple (only works on Unreal 3.2.5 and newer)

Code: Select all

(....)\1{4}
That will block anything that is 4 or more characters, repeated at least 4 times. If you want to change it, the number of .'s is the minimum number of characters, and the number in the {} is the minimum number of repeats
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

Annihilator: Spamfilter will ignore the reverses and hit the message anyhow.

Also: You are an oper, and as such, cannot trigger spamfilters, at all, ever. Only normal people can get hit by them.
Why the hell can't my signature be empty?
"Your message contains too few characters."
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Post by Annihilator90 »

Stealth wrote:Jason's spamfilter is kinda overkill... Something more simple (only works on Unreal 3.2.5 and newer)

Code: Select all

(....)\1{4}
That will block anything that is 4 or more characters, repeated at least 4 times. If you want to change it, the number of .'s is the minimum number of characters, and the number in the {} is the minimum number of repeats
It works wonders. Thank you so much !!!
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Post by Annihilator90 »

Jason wrote:Annihilator: Spamfilter will ignore the reverses and hit the message anyhow.

Also: You are an oper, and as such, cannot trigger spamfilters, at all, ever. Only normal people can get hit by them.
Sure Jason. Thank you !!!
Post Reply