mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-03-07 07:28 am

[dw-free] configure login rate-limiting

[commit: http://hg.dwscoalition.org/dw-free/rev/b0001defcff4]

http://bugs.dwscoalition.org/show_bug.cgi?id=455

Configure rate limiting.

Patch by [personal profile] janinedog.

Files modified:
  • etc/config.pl
--------------------------------------------------------------------------------
diff -r 0f4b9258ed8b -r b0001defcff4 etc/config.pl
--- a/etc/config.pl	Sat Mar 07 07:20:45 2009 +0000
+++ b/etc/config.pl	Sat Mar 07 07:28:38 2009 +0000
@@ -350,8 +350,10 @@
             'hide_email_after' => 60,
             'userlinks' => 10,
             'maxcomments' => 5000,
-            'rateperiod-lostinfo' => 24*60, # 24 hours
+            'rateperiod-lostinfo' => 60*60*24, # 24 hours
             'rateallowed-lostinfo' => 3,
+            'rateperiod-failed_login' => 60*5, # 5 minutes
+            'rateallowed-failed_login' => 3,
             'staff_headicon' => 0,
             );
 
--------------------------------------------------------------------------------