summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2013-01-06 00:38:38 -0500
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2013-01-06 00:38:38 -0500
commit5e9bbeeeba7e1287a53db0da5d7b6ddd50fa5385 (patch)
tree1a5d395c6ac637b2d0c40a9d7233cf527bfa32b9
parent8cff13bebe4966f6a04292931c35ba6c28aedb0d (diff)
raise acct per ip limit to 10
-rw-r--r--src/site.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site.clj b/src/site.clj
index 79b63bd..66e880e 100644
--- a/src/site.clj
+++ b/src/site.clj
@@ -305,7 +305,7 @@ WHERE user_id IN
; this should check if the user was created in the last day i guess
(defn ip-recently-created? [ip]
- (> (count (do-select ["select * from users where created_ip=?::cidr" (str ip)] )) 5))
+ (> (count (do-select ["select * from users where created_ip=?::cidr" (str ip)] )) 10))
(def *reserved-nicks-path* "docs/reserved_nicks.txt")
(def *reserved-nicks-refresh-period-sec* 300)