From 21015e69a31ff67f3bab01bc258e383c66c8d996 Mon Sep 17 00:00:00 2001 From: boban Date: Mon, 27 Apr 2026 04:05:55 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Fail2ban=20SQLite-Abfrage=20nicht=20von?= =?UTF-8?q?=20is=5Freadable=20abh=C3=A4ngig=20machen=20(www-data=20hat=20k?= =?UTF-8?q?ein=20Lesezugriff)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Livewire/Ui/Security/Fail2banBanlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Ui/Security/Fail2banBanlist.php b/app/Livewire/Ui/Security/Fail2banBanlist.php index 1754661..ffd4486 100644 --- a/app/Livewire/Ui/Security/Fail2banBanlist.php +++ b/app/Livewire/Ui/Security/Fail2banBanlist.php @@ -138,7 +138,7 @@ class Fail2banBanlist extends Component $db = $this->getDbFile(); $fallbackPermanent = ($jail === 'mailwolt-blacklist'); - if ($db === '' || !is_readable($db)) { + if ($db === '') { return ['permanent' => $fallbackPermanent, 'remaining' => '']; }