2014-06-03 13:24:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source setup/functions.sh
|
2022-06-19 10:48:55 +00:00
|
|
|
source /etc/mailinabox.conf # load global vars
|
2014-06-03 13:24:48 +00:00
|
|
|
|
2015-08-19 19:58:35 +00:00
|
|
|
echo "Installing Mail-in-a-Box system management daemon..."
|
|
|
|
|
2017-02-01 14:14:01 +00:00
|
|
|
# DEPENDENCIES
|
|
|
|
|
2020-11-26 12:13:31 +00:00
|
|
|
# duplicity is used to make backups of user data.
|
2018-05-12 15:32:54 +00:00
|
|
|
#
|
2018-10-24 21:20:48 +00:00
|
|
|
# virtualenv is used to isolate the Python 3 packages we
|
2018-05-12 15:32:54 +00:00
|
|
|
# install via pip from the system-installed packages.
|
2018-05-13 00:02:25 +00:00
|
|
|
#
|
|
|
|
# certbot installs EFF's certbot which we use to
|
|
|
|
# provision free TLS certificates.
|
2022-06-19 11:12:02 +00:00
|
|
|
apt_install duplicity python3-pip virtualenv certbot rsync
|
2020-11-26 12:13:31 +00:00
|
|
|
|
2021-02-28 12:54:55 +00:00
|
|
|
# b2sdk is used for backblaze backups.
|
2022-09-03 11:50:36 +00:00
|
|
|
# boto3 is used for amazon aws backups.
|
2020-11-26 12:13:31 +00:00
|
|
|
# Both are installed outside the pipenv, so they can be used by duplicity
|
2022-09-03 11:50:36 +00:00
|
|
|
hide_output pip3 install --upgrade b2sdk boto3
|
2015-07-27 19:56:08 +00:00
|
|
|
|
2018-01-15 17:43:32 +00:00
|
|
|
# Create a virtualenv for the installation of Python 3 packages
|
|
|
|
# used by the management daemon.
|
|
|
|
inst_dir=/usr/local/lib/mailinabox
|
|
|
|
mkdir -p $inst_dir
|
|
|
|
venv=$inst_dir/env
|
|
|
|
if [ ! -d $venv ]; then
|
2019-05-15 18:59:32 +00:00
|
|
|
hide_output virtualenv -ppython3 $venv
|
2018-01-15 17:43:32 +00:00
|
|
|
fi
|
2016-02-18 11:59:38 +00:00
|
|
|
|
2018-05-12 15:32:54 +00:00
|
|
|
# Upgrade pip because the Ubuntu-packaged version is out of date.
|
2018-01-15 17:43:32 +00:00
|
|
|
hide_output $venv/bin/pip install --upgrade pip
|
2017-02-01 14:14:01 +00:00
|
|
|
|
2016-02-18 11:59:38 +00:00
|
|
|
# Install other Python 3 packages used by the management daemon.
|
|
|
|
# The first line is the packages that Josh maintains himself!
|
|
|
|
# NOTE: email_validator is repeated in setup/questions.sh, so please keep the versions synced.
|
2018-01-15 17:43:32 +00:00
|
|
|
hide_output $venv/bin/pip install --upgrade \
|
2018-05-13 00:02:25 +00:00
|
|
|
rtyaml "email_validator>=1.0.0" "exclusiveprocess" \
|
2022-09-17 12:03:16 +00:00
|
|
|
flask dnspython python-dateutil expiringdict gunicorn \
|
2021-08-22 20:07:16 +00:00
|
|
|
qrcode[pil] pyotp \
|
2022-06-19 10:48:55 +00:00
|
|
|
"idna>=2.0.0" "cryptography==37.0.2" psutil postfix-mta-sts-resolver \
|
2022-09-03 11:50:36 +00:00
|
|
|
b2sdk boto3
|
2014-06-03 20:21:17 +00:00
|
|
|
|
2017-02-01 14:14:01 +00:00
|
|
|
# CONFIGURATION
|
|
|
|
|
2014-06-03 20:21:17 +00:00
|
|
|
# Create a backup directory and a random key for encrypting backups.
|
|
|
|
mkdir -p $STORAGE_ROOT/backup
|
|
|
|
if [ ! -f $STORAGE_ROOT/backup/secret_key.txt ]; then
|
2014-08-22 21:23:56 +00:00
|
|
|
$(umask 077; openssl rand -base64 2048 > $STORAGE_ROOT/backup/secret_key.txt)
|
2014-06-03 20:21:17 +00:00
|
|
|
fi
|
2014-06-03 13:24:48 +00:00
|
|
|
|
2017-05-08 11:25:16 +00:00
|
|
|
|
|
|
|
# Download jQuery and Bootstrap local files
|
|
|
|
|
|
|
|
# Make sure we have the directory to save to.
|
2018-01-15 17:43:32 +00:00
|
|
|
assets_dir=$inst_dir/vendor/assets
|
2017-05-31 11:36:17 +00:00
|
|
|
rm -rf $assets_dir
|
2017-05-08 11:25:16 +00:00
|
|
|
mkdir -p $assets_dir
|
|
|
|
|
|
|
|
# jQuery CDN URL
|
|
|
|
jquery_version=2.1.4
|
|
|
|
jquery_url=https://code.jquery.com
|
|
|
|
|
|
|
|
# Get jQuery
|
|
|
|
wget_verify $jquery_url/jquery-$jquery_version.min.js 43dc554608df885a59ddeece1598c6ace434d747 $assets_dir/jquery.min.js
|
|
|
|
|
|
|
|
# Bootstrap CDN URL
|
|
|
|
bootstrap_version=3.3.7
|
2017-05-31 11:36:17 +00:00
|
|
|
bootstrap_url=https://github.com/twbs/bootstrap/releases/download/v$bootstrap_version/bootstrap-$bootstrap_version-dist.zip
|
2017-05-08 11:25:16 +00:00
|
|
|
|
|
|
|
# Get Bootstrap
|
2017-05-31 11:36:17 +00:00
|
|
|
wget_verify $bootstrap_url e6b1000b94e835ffd37f4c6dcbdad43f4b48a02a /tmp/bootstrap.zip
|
2018-01-15 17:43:32 +00:00
|
|
|
unzip -q /tmp/bootstrap.zip -d $assets_dir
|
|
|
|
mv $assets_dir/bootstrap-$bootstrap_version-dist $assets_dir/bootstrap
|
2017-05-31 11:36:17 +00:00
|
|
|
rm -f /tmp/bootstrap.zip
|
2017-05-08 11:25:16 +00:00
|
|
|
|
2014-06-03 13:24:48 +00:00
|
|
|
# Create an init script to start the management daemon and keep it
|
|
|
|
# running after a reboot.
|
2022-10-08 12:17:24 +00:00
|
|
|
# Set a long timeout since some commands take a while to run, matching
|
|
|
|
# the timeout we set for PHP (fastcgi_read_timeout in the nginx confs).
|
2022-09-17 12:03:16 +00:00
|
|
|
# Note: Authentication currently breaks with more than 1 gunicorn worker.
|
2018-01-15 17:43:32 +00:00
|
|
|
cat > $inst_dir/start <<EOF;
|
|
|
|
#!/bin/bash
|
2020-12-20 00:11:58 +00:00
|
|
|
# Set character encoding flags to ensure that any non-ASCII don't cause problems.
|
|
|
|
export LANGUAGE=en_US.UTF-8
|
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
export LANG=en_US.UTF-8
|
|
|
|
export LC_TYPE=en_US.UTF-8
|
|
|
|
|
2022-09-17 12:03:16 +00:00
|
|
|
mkdir -p /var/lib/mailinabox
|
|
|
|
tr -cd '[:xdigit:]' < /dev/urandom | head -c 32 > /var/lib/mailinabox/api.key
|
|
|
|
chmod 640 /var/lib/mailinabox/api.key
|
|
|
|
|
2018-01-15 17:43:32 +00:00
|
|
|
source $venv/bin/activate
|
2022-09-17 12:03:16 +00:00
|
|
|
export PYTHONPATH=$(pwd)/management
|
2022-10-08 12:17:24 +00:00
|
|
|
exec gunicorn -b localhost:10222 -w 1 --timeout 630 wsgi:app
|
2018-01-15 17:43:32 +00:00
|
|
|
EOF
|
|
|
|
chmod +x $inst_dir/start
|
2019-12-01 22:43:56 +00:00
|
|
|
cp --remove-destination conf/mailinabox.service /lib/systemd/system/mailinabox.service # target was previously a symlink so remove it first
|
2019-12-01 21:15:04 +00:00
|
|
|
hide_output systemctl link -f /lib/systemd/system/mailinabox.service
|
2018-07-07 18:41:41 +00:00
|
|
|
hide_output systemctl daemon-reload
|
|
|
|
hide_output systemctl enable mailinabox.service
|
2014-06-03 13:24:48 +00:00
|
|
|
|
2015-12-26 13:39:22 +00:00
|
|
|
# Perform nightly tasks at 3am in system time: take a backup, run
|
|
|
|
# status checks and email the administrator any changes.
|
2015-12-23 22:29:13 +00:00
|
|
|
|
2020-05-03 14:34:42 +00:00
|
|
|
minute=$((RANDOM % 60)) # avoid overloading mailinabox.email
|
2015-12-26 13:39:22 +00:00
|
|
|
cat > /etc/cron.d/mailinabox-nightly << EOF;
|
2015-03-08 21:56:28 +00:00
|
|
|
# Mail-in-a-Box --- Do not edit / will be overwritten on update.
|
2015-12-26 13:39:22 +00:00
|
|
|
# Run nightly tasks: backup, status checks.
|
2021-05-03 23:28:23 +00:00
|
|
|
$minute 3 * * * root (cd $(pwd) && management/daily_tasks.sh)
|
2015-03-08 21:56:28 +00:00
|
|
|
EOF
|
|
|
|
|
2015-10-10 22:03:55 +00:00
|
|
|
# Start the management server.
|
2014-07-16 13:06:45 +00:00
|
|
|
restart_service mailinabox
|