1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-04 15:54:48 +01:00

Update roundcube carddav plugin to support roundcube 1.5 and close a security hole

This commit is contained in:
downtownallday
2021-11-15 16:07:54 -05:00
parent 334c7f71b5
commit 06216876a2
4 changed files with 27 additions and 11 deletions

View File

@@ -24,9 +24,11 @@ echo "[Force Roundcube contact sync]" 1>&2
# contacts for it will be removed in the Roundcube database after the
# sync
if ! roundcube_force_carddav_refresh "$TEST_USER" "$TEST_USER_PASS" 1>&2
roundcube_force_carddav_refresh "$TEST_USER" "$TEST_USER_PASS" 1>&2
rc=$?
if [ $rc -ne 0 ]
then
echo "Roundcube <-> Nextcloud contact sync failed ($?)"
echo "Roundcube <-> Nextcloud contact sync failed ($rc)"
exit 1
fi