Abuse filter management

Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to navigation Jump to search

Differences between versions

ItemVersion from 15:06, 18 May 2016 by GilrainVersion from 15:51, 18 May 2016 by Gilrain
Basic information
Notes:
This will not allow users without "autoconfirmed"-status to create a new article with a name that either contains a number or "http", or is longer than 50 characters.
This example will not allow users without "autoconfirmed"-status to create a new article with a name that either contains a number or "http", or is longer than 100 characters.
Filter conditions
Conditions:
!("autoconfirmed" in user_groups)
!("autoconfirmed" in user_groups)
& (action == "edit")
& (action == "edit")
& (article_articleid == 0)
& (article_articleid == 0)
& (length(added_links) >= 1)
& (length(added_links) >= 1)
& ((contains_any( article_text , "Http", "@@@", "0" , "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" ) == true) | (length(article_text) > 50) )
& ((contains_any( article_text , "Http", "@@@", "0" , "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" ) == true) | (length(article_text) > 100) )