Skip to content

Commit cf85796

Browse files
committed
Check error notifications on email (no storage space) #795
1 parent 196bddd commit cf85796

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

src/Core/System/Notifications.php

+2-6
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,14 @@ public static function sendAdminNotification(string $subject, array $messages, b
9090
return;
9191
}
9292
$managedCache = $di->getShared(ManagedCacheProvider::SERVICE_NAME);
93-
$cacheKey = 'sendAdminNotification:' . md5($subject . implode('', $messages));
93+
$cacheKey = 'SendAdminNotification:' . md5($subject . implode('', $messages));
9494
$cacheTime = 3600 * 24; // 1 day
9595

9696
// Check if the message is not urgent and has been sent recently from cache.
9797
if (!$urgent && $managedCache->has($cacheKey)) {
9898
return;
9999
}
100100

101-
// Check if the notification system is available (e.g., PHP Mailer is configured and working).
102-
if (!self::checkConnection(self::TYPE_PHP_MAILER)) {
103-
return;
104-
}
105-
106101
// Translate the subject and messages to the desired language.
107102
$subject = Util::translate($subject, false);
108103
$text = '';
@@ -197,6 +192,7 @@ public function sendMail($to, $subject, $message, string $filename = ''): bool
197192
}
198193
if (!empty($messages)) {
199194
SystemMessages::sysLogMsg('PHPMailer', implode(' ', $messages), LOG_ERR);
195+
return false;
200196
}
201197
return true;
202198
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace MikoPBX\Tests\Core\Workers\Libs\WorkerPrepareAdvice;
4+
5+
use MikoPBX\Core\Workers\Libs\WorkerPrepareAdvice\CheckStorage;
6+
use MikoPBX\Tests\Unit\AbstractUnitTest;
7+
8+
class CheckStorageTest extends AbstractUnitTest
9+
{
10+
11+
public function testProcess()
12+
{
13+
$class = new CheckStorage();
14+
$class->process();
15+
$this->assertTrue(true);
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace MikoPBX\Tests\Core\Workers;
4+
5+
use MikoPBX\Core\Workers\WorkerPrepareAdvice;
6+
use MikoPBX\Tests\Unit\AbstractUnitTest;
7+
8+
class WorkerPrepareAdviceTest extends AbstractUnitTest
9+
{
10+
11+
public function testStart()
12+
{
13+
$worker = new WorkerPrepareAdvice();
14+
$worker->start(['start']);
15+
$this->assertTrue(true);
16+
}
17+
}

0 commit comments

Comments
 (0)