From cc0a6d25cb074ab9d4c7fd97296ff712eee660c1 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 5 Sep 2022 15:32:24 -0400 Subject: [PATCH] z-push hack for php 8.0: change a debug print statement and make a policies.ini change --- setup/zpush.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup/zpush.sh b/setup/zpush.sh index ecbbffc6..00ded8eb 100755 --- a/setup/zpush.sh +++ b/setup/zpush.sh @@ -45,6 +45,15 @@ if [ $needs_update == 1 ]; then echo $VERSION > /usr/local/lib/z-push/version fi +# HACK z-push for php 8.0 +# see: https://github.com/mail-in-a-box/mailinabox/pull/2083#issuecomment-1237232402 +if [ "$PHP_VER" = "8.0" ]; then + # change a z-push source code logging line so it doesn't print the mutexid or memid, which cause an exception ("Uncaught Error: Object of class SysvSemaphore could not be converted to string in /usr/local/lib/z-push/backend/ipcsharedmemory/ipcsharedmemoryprovider.php:45" + sed -i 's/\(Initialized mutexid\) %s\( and memid\) %s/\1\2/' /usr/local/lib/z-push/backend/ipcsharedmemory/ipcsharedmemoryprovider.php + # change the default value of maxattsize from '' to -1 in policies.ini + tools/editconf.py /usr/local/lib/z-push/policies.ini -ini-section default -c ';' maxattsize=-1 +fi + # Configure default config. sed -i "s^define('TIMEZONE', .*^define('TIMEZONE', '$(cat /etc/timezone)');^" /usr/local/lib/z-push/config.php sed -i "s/define('BACKEND_PROVIDER', .*/define('BACKEND_PROVIDER', 'BackendCombined');/" /usr/local/lib/z-push/config.php