Edit filter configuration

Jump to navigation Jump to search

Differences between versions

ItemVersion from 18:47, 12 July 2017 by FuzzyCatPotatoVersion from 12:10, 15 July 2017 by Christopher
Basic information
Notes:
 
If a new editor creates a userpage that:
 
If a new editor creates a userpage that:
 
- Has external links (95% spam, 5% new contributors making good userpages), or
 
- Has external links (95% spam, 5% new contributors making good userpages), or
 
- Is in another users' userspace (99% spam or dox, 1% legitimate mistakes about new pages)
 
- Is in another users' userspace (99% spam or dox, 1% legitimate mistakes about new pages)
  
12Jun2017-FCP: Merged in Filter 42 (user creating page in another user's userspace)
+
15Jul2017-Chr: Replaced ((length(added_links) >= 0) with ((length(added_links) > 0) because it appears to be triggered by all userspace creations even if there are no external links.
12Jun2017-FCP: Updated warning
+
12Jul2017-FCP: Merged in Filter 42 (user creating page in another user's userspace)
 +
12Jul2017-FCP: Updated warning
 
31Dec2016-FCP: Changed to tag-only, no warning. A small portion of legitimate users appear to be scared off by the message.
 
31Dec2016-FCP: Changed to tag-only, no warning. A small portion of legitimate users appear to be scared off by the message.
 
02Feb2016-FCP: Allowed users to resubmit.
 
02Feb2016-FCP: Allowed users to resubmit.
 
02Feb2016-FCP: Made filter publicly visible, cleaned up.
 
02Feb2016-FCP: Made filter publicly visible, cleaned up.
 
02Feb2016-FCP: Added warning.
 
02Feb2016-FCP: Added warning.
Filter conditions
Conditions:
 
!("autoconfirmed" in user_groups) & !("autopatrolled" in user_groups) & !("sysop" in user_groups) & !("bot" in user_groups)
 
!("autoconfirmed" in user_groups) & !("autopatrolled" in user_groups) & !("sysop" in user_groups) & !("bot" in user_groups)
 
& ((article_namespace == 2)          /* Userspace or */
 
& ((article_namespace == 2)          /* Userspace or */
 
| (article_namespace == 3))          /* User talk */
 
| (article_namespace == 3))          /* User talk */
 
& (old_size == 0)                    /* New page */
 
& (old_size == 0)                    /* New page */
 
& (user_editcount == 0)              /* Very new account */
 
& (user_editcount == 0)              /* Very new account */
 
& (user_age < 10800)                /* Very new account */
 
& (user_age < 10800)                /* Very new account */
& ((length(added_links) >= 0)        /* External links or */
+
& ((length(added_links) > 0)        /* External links or */
 
|!(user_name in article_text))      /* Not own userpage */
 
|!(user_name in article_text))      /* Not own userpage */