From: Alex Koch Date: Sat, 31 Aug 2019 18:52:59 +0000 (+0200) Subject: WUI log-section Mail: bugfix for dma X-Git-Tag: v2.23-core136~7^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2da785f90bf2de9b9ea4a86a01fabccefd140e00;p=ipfire-2.x.git WUI log-section Mail: bugfix for dma The prefix for dmi in /var/log/mail seems to have changed from "dma[]: " to "dma: ". This results in a bug where no lines are being shown at all in the WUI. Signed-off-by: Alex Koch Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat index 3548d5810a..7074a4a612 100644 --- a/html/cgi-bin/logs.cgi/log.dat +++ b/html/cgi-bin/logs.cgi/log.dat @@ -57,7 +57,7 @@ my %sections = ( 'cron' => '(fcron\[.*\]: )', 'ddns' => '(ddns\[\d+\]:)', 'dhcp' => '(dhcpd: )', - 'dma' => '(dma\[.*\]: )', + 'dma' => '(dma: |dma\[.*\]: )', 'guardian' => '(guardian\[.*\]: )', 'ipfire' => '(ipfire: )', 'ipsec' => '(ipsec_[\w_]+: |pluto\[.*\]: |charon: |vpnwatch: )',