12 lines
515 B
Bash
12 lines
515 B
Bash
#!/bin/bash
|
|
#
|
|
# vmail-webmail
|
|
# https://git.stack-source.com/msb/vmail-webmail
|
|
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
/usr/bin/php /srv/www/html/roundcube/bin/cleandb.sh > /dev/null
|
|
/usr/bin/php /srv/www/html/roundcube/bin/deluser.sh --age=365 --dry-run > /dev/null
|
|
/usr/bin/php /srv/www/html/roundcube/bin/gc.sh
|
|
/usr/bin/php /srv/www/html/roundcube/bin/indexcontacts.sh > /dev/null
|