From 54dc06416b3a87d7ef6cbfd2b760c69cd37a753c Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sat, 29 Jan 2022 12:19:31 -0500 Subject: [PATCH] Periodically clean the roundcube database --- setup/webmail.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup/webmail.sh b/setup/webmail.sh index 88733b45..63586d81 100755 --- a/setup/webmail.sh +++ b/setup/webmail.sh @@ -238,3 +238,12 @@ chmod 664 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite # Enable PHP modules. phpenmod -v php mcrypt imap ldap restart_service php7.2-fpm + +# Periodically clean the roundcube database (see roundcubemail/INSTALL) +cat > /etc/cron.daily/mailinabox-roundcubemail << EOF +#!/bin/bash +# Mail-in-a-Box +# Clean up the roundcube database +cd $RCM_DIR && bin/cleandb.sh >/dev/null +EOF +chmod +x /etc/cron.daily/mailinabox-roundcubemail