From cefdcefdb8f15ffdec8345b93aff2036db92d1f7 Mon Sep 17 00:00:00 2001 From: Brian Wolff Date: Wed, 9 May 2018 20:43:51 +0000 Subject: [PATCH 1/1] Add default edit rate limit of 90 edits/minute for all users Previously there was no rate limit at all if you were autoconfirmed. This initial setting is set on the high end of things, we may adjust later. See also T192668, T194204. Change-Id: I7cb002900bae2da3f4f4758671186659c1720e1d --- includes/DefaultSettings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 4f4fa86e18..c69869c4e5 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5674,6 +5674,7 @@ $wgRateLimits = [ 'edit' => [ 'ip' => [ 8, 60 ], 'newbie' => [ 8, 60 ], + 'user' => [ 90, 60 ], ], // Page moves 'move' => [ -- 2.20.1