From aea29fe019af2670add8a04b6c4710fa743ebcd6 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 22 Apr 2023 15:14:56 +1000 Subject: [PATCH] Adjustments for email quotas --- app/Models/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Account.php b/app/Models/Account.php index 266803400456..b88ad09b3ac9 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -550,7 +550,7 @@ class Account extends BaseModel $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 50; } else { $limit = $this->free_plan_email_quota; - $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 10; + $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 3; } return min($limit, 5000);