@@ -64,6 +64,8 @@ RUN curl -sL ${GOOGLE_INTEGRATION_URL} | tar xzf - -C ${BASE_DIR}/custom_apps
RUN rm-rf${BASE_DIR}/themes/Murena/*&&\
curl -sL${SNAPPY_THEME_VERSION} | tar xzf - -C${BASE_DIR}/themes/Murena/
#Workaround to fix line break when answering an email on firefox
RUN sed-i's/this.oEditor?.focus()/(this.oEditor?.focus(),navigator.userAgent.includes("Firefox")\&\&(window.getSelection().modify("move","forward","character"),window.getSelection().modify("move","backward","character")))/'${BASE_DIR}/custom_apps/snappymail/app/snappymail/v/*/static/js/min/app.min.js
# Remove unzip when unzipping is done
RUN apt-get -y remove unzip
@@ -176,6 +178,7 @@ RUN patch -u ${BASE_DIR}/apps/provisioning_api/lib/Controller/UsersController.ph
RUN patch -u${BASE_DIR}/lib/private/Security/VerificationToken/VerificationToken.php -i${TMP_PATCH_DIR}/033-verification-token-private.patch
RUN patch -u${BASE_DIR}/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php -i${TMP_PATCH_DIR}/034-oidc-bearer-token-auth.patch
Subject: [PATCH] Enable appdata folder location can be set up dynamatically
We want to setup appdata folder dynamatically using config. This is specially needed for objectStore setup, so appdata files can be locally accessable, which minimize loadtime. The `appdatadirectory` new config value is introduced by this patch.