1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Increase duplicate IP check

This commit is contained in:
Hillel Coren 2018-03-20 12:57:30 +02:00
parent 622de49c64
commit 84a5718f3c

View File

@ -133,13 +133,13 @@ class AccountRepository
$query->whereRegistered(true);
})->count();
if ($count > 1 && $errorEmail = env('ERROR_EMAIL')) {
if ($count > 10 && $errorEmail = env('ERROR_EMAIL')) {
\Mail::raw($ip, function ($message) use ($ip, $errorEmail) {
$message->to($errorEmail)
->from(CONTACT_EMAIL)
->subject('Duplicate company for IP: ' . $ip);
});
if ($count >= 5) {
if ($count >= 15) {
abort();
}
}