2014-10-20 20:20:24 +00:00
|
|
|
#!/bin/bash
|
2014-09-21 20:05:11 +00:00
|
|
|
# Webmail with Roundcube
|
|
|
|
# ----------------------
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2014-06-03 11:12:38 +00:00
|
|
|
source setup/functions.sh # load our functions
|
2014-03-17 00:46:59 +00:00
|
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# ### Installing Roundcube
|
|
|
|
|
|
|
|
# We install Roundcube from sources, rather than from Ubuntu, because:
|
|
|
|
#
|
|
|
|
# 1. Ubuntu's `roundcube-core` package has dependencies on Apache & MySQL, which we don't want.
|
2014-07-08 00:37:53 +00:00
|
|
|
#
|
2014-09-21 20:05:11 +00:00
|
|
|
# 2. The Roundcube shipped with Ubuntu is consistently out of date.
|
2014-07-08 00:37:53 +00:00
|
|
|
#
|
2014-09-21 20:05:11 +00:00
|
|
|
# 3. It's packaged incorrectly --- it seems to be missing a directory of files.
|
2014-07-08 00:37:53 +00:00
|
|
|
#
|
|
|
|
# So we'll use apt-get to manually install the dependencies of roundcube that we know we need,
|
|
|
|
# and then we'll manually install roundcube from source.
|
2014-04-25 12:25:47 +00:00
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# These dependencies are from `apt-cache showpkg roundcube-core`.
|
2015-08-19 19:58:35 +00:00
|
|
|
echo "Installing Roundcube (webmail)..."
|
2014-05-01 19:13:00 +00:00
|
|
|
apt_install \
|
2015-02-12 19:53:17 +00:00
|
|
|
dbconfig-common \
|
2017-07-10 20:56:59 +00:00
|
|
|
php7.0-cli php7.0-sqlite php7.0-mcrypt php7.0-intl php7.0-json php7.0-common \
|
2017-10-15 11:53:01 +00:00
|
|
|
php7.0-gd php7.0-pspell tinymce libjs-jquery libjs-jquery-mousewheel libmagic1 php7.0-mbstring
|
2017-07-10 20:56:59 +00:00
|
|
|
|
2015-11-05 11:03:34 +00:00
|
|
|
apt_get_quiet remove php-mail-mimedecode # no longer needed since Roundcube 1.1.3
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2014-10-04 21:57:26 +00:00
|
|
|
# We used to install Roundcube from Ubuntu, without triggering the dependencies #NODOC
|
|
|
|
# on Apache and MySQL, by downloading the debs and installing them manually. #NODOC
|
|
|
|
# Now that we're beyond that, get rid of those debs before installing from source. #NODOC
|
|
|
|
apt-get purge -qq -y roundcube* #NODOC
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2014-09-24 12:46:42 +00:00
|
|
|
# Install Roundcube from source if it is not already present or if it is out of date.
|
2017-07-10 21:30:08 +00:00
|
|
|
# Combine the Roundcube version number with the commit hash of plugins to track
|
|
|
|
# whether we have the latest version of everything.
|
2017-11-15 15:55:51 +00:00
|
|
|
VERSION=1.3.3
|
|
|
|
HASH=903a4eb1bfc25e9a08d782a7f98502cddfa579de
|
2017-09-22 15:10:40 +00:00
|
|
|
PERSISTENT_LOGIN_VERSION=dc5ca3d3f4415cc41edb2fde533c8a8628a94c76
|
2016-03-25 19:16:51 +00:00
|
|
|
HTML5_NOTIFIER_VERSION=4b370e3cd60dabd2f428a26f45b677ad1b7118d5
|
2017-01-15 15:46:33 +00:00
|
|
|
CARDDAV_VERSION=2.0.4
|
|
|
|
CARDDAV_HASH=d93f3cfb3038a519e71c7c3212c1d16f5da609a4
|
|
|
|
|
2017-07-10 21:30:08 +00:00
|
|
|
UPDATE_KEY=$VERSION:$PERSISTENT_LOGIN_VERSION:$HTML5_NOTIFIER_VERSION:$CARDDAV_VERSION
|
2017-01-15 15:46:33 +00:00
|
|
|
|
|
|
|
# paths that are often reused.
|
|
|
|
RCM_DIR=/usr/local/lib/roundcubemail
|
|
|
|
RCM_PLUGIN_DIR=${RCM_DIR}/plugins
|
|
|
|
RCM_CONFIG=${RCM_DIR}/config/config.inc.php
|
|
|
|
|
2014-09-24 12:46:42 +00:00
|
|
|
needs_update=0 #NODOC
|
|
|
|
if [ ! -f /usr/local/lib/roundcubemail/version ]; then
|
2014-10-04 21:57:26 +00:00
|
|
|
# not installed yet #NODOC
|
2014-09-24 12:46:42 +00:00
|
|
|
needs_update=1 #NODOC
|
2015-05-30 14:07:36 +00:00
|
|
|
elif [[ "$UPDATE_KEY" != `cat /usr/local/lib/roundcubemail/version` ]]; then
|
2014-09-24 12:46:42 +00:00
|
|
|
# checks if the version is what we want
|
|
|
|
needs_update=1 #NODOC
|
|
|
|
fi
|
|
|
|
if [ $needs_update == 1 ]; then
|
2015-03-08 19:02:49 +00:00
|
|
|
# install roundcube
|
2015-04-11 19:21:38 +00:00
|
|
|
wget_verify \
|
2017-07-10 21:30:08 +00:00
|
|
|
https://github.com/roundcube/roundcubemail/releases/download/$VERSION/roundcubemail-$VERSION-complete.tar.gz \
|
2015-04-11 19:21:38 +00:00
|
|
|
$HASH \
|
|
|
|
/tmp/roundcube.tgz
|
2016-01-09 14:17:20 +00:00
|
|
|
tar -C /usr/local/lib --no-same-owner -zxf /tmp/roundcube.tgz
|
2014-10-20 12:48:12 +00:00
|
|
|
rm -rf /usr/local/lib/roundcubemail
|
2017-01-15 15:46:33 +00:00
|
|
|
mv /usr/local/lib/roundcubemail-$VERSION/ $RCM_DIR
|
2014-07-08 00:37:53 +00:00
|
|
|
rm -f /tmp/roundcube.tgz
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2015-05-29 19:49:40 +00:00
|
|
|
# install roundcube persistent_login plugin
|
2017-01-15 15:46:33 +00:00
|
|
|
git_clone https://github.com/mfreiholz/Roundcube-Persistent-Login-Plugin.git $PERSISTENT_LOGIN_VERSION '' ${RCM_PLUGIN_DIR}/persistent_login
|
2015-05-29 19:49:40 +00:00
|
|
|
|
2015-09-05 21:33:19 +00:00
|
|
|
# install roundcube html5_notifier plugin
|
2017-01-15 15:46:33 +00:00
|
|
|
git_clone https://github.com/kitist/html5_notifier.git $HTML5_NOTIFIER_VERSION '' ${RCM_PLUGIN_DIR}/html5_notifier
|
|
|
|
|
|
|
|
# download and verify the full release of the carddav plugin
|
|
|
|
wget_verify \
|
|
|
|
https://github.com/blind-coder/rcmcarddav/releases/download/v${CARDDAV_VERSION}/carddav-${CARDDAV_VERSION}.zip \
|
|
|
|
$CARDDAV_HASH \
|
|
|
|
/tmp/carddav.zip
|
|
|
|
|
|
|
|
# unzip and cleanup
|
|
|
|
unzip -q /tmp/carddav.zip -d ${RCM_PLUGIN_DIR}
|
|
|
|
rm -f /tmp/carddav.zip
|
2015-09-05 21:33:19 +00:00
|
|
|
|
2015-03-08 19:02:49 +00:00
|
|
|
# record the version we've installed
|
2017-01-15 15:46:33 +00:00
|
|
|
echo $UPDATE_KEY > ${RCM_DIR}/version
|
2014-07-08 00:37:53 +00:00
|
|
|
fi
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# ### Configuring Roundcube
|
|
|
|
|
2014-07-08 00:37:53 +00:00
|
|
|
# Generate a safe 24-character secret key of safe characters.
|
2015-11-17 22:13:49 +00:00
|
|
|
SECRET_KEY=$(dd if=/dev/urandom bs=1 count=18 2>/dev/null | base64 | fold -w 24 | head -n 1)
|
2014-07-08 00:37:53 +00:00
|
|
|
|
|
|
|
# Create a configuration file.
|
|
|
|
#
|
|
|
|
# For security, temp and log files are not stored in the default locations
|
|
|
|
# which are inside the roundcube sources directory. We put them instead
|
|
|
|
# in normal places.
|
2017-01-15 15:46:33 +00:00
|
|
|
cat > $RCM_CONFIG <<EOF;
|
2014-07-08 00:37:53 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Do not edit. Written by Mail-in-a-Box. Regenerated on updates.
|
|
|
|
*/
|
|
|
|
\$config = array();
|
|
|
|
\$config['log_dir'] = '/var/log/roundcubemail/';
|
2017-12-18 13:12:45 +00:00
|
|
|
\$config['temp_dir'] = '/var/tmp/roundcubemail/';
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['db_dsnw'] = 'sqlite:///$STORAGE_ROOT/mail/roundcube/roundcube.sqlite?mode=0640';
|
2016-05-16 11:14:45 +00:00
|
|
|
\$config['default_host'] = 'ssl://localhost';
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['default_port'] = 993;
|
2017-07-10 20:56:59 +00:00
|
|
|
\$config['imap_conn_options'] = array(
|
|
|
|
'ssl' => array(
|
|
|
|
'verify_peer' => false,
|
|
|
|
'verify_peer_name' => false,
|
|
|
|
),
|
|
|
|
);
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['imap_timeout'] = 15;
|
2016-05-06 13:06:52 +00:00
|
|
|
\$config['smtp_server'] = 'tls://127.0.0.1';
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['smtp_port'] = 587;
|
|
|
|
\$config['smtp_user'] = '%u';
|
|
|
|
\$config['smtp_pass'] = '%p';
|
2017-07-10 20:56:59 +00:00
|
|
|
\$config['smtp_conn_options'] = array(
|
|
|
|
'ssl' => array(
|
|
|
|
'verify_peer' => false,
|
|
|
|
'verify_peer_name' => false,
|
|
|
|
),
|
|
|
|
);
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['support_url'] = 'https://mailinabox.email/';
|
2016-04-09 08:23:20 +00:00
|
|
|
\$config['product_name'] = '$PRIMARY_HOSTNAME Webmail';
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['des_key'] = '$SECRET_KEY';
|
2017-07-10 21:30:08 +00:00
|
|
|
\$config['plugins'] = array('html5_notifier', 'archive', 'zipdownload', 'password', 'managesieve', 'jqueryui', 'persistent_login', 'carddav');
|
2017-04-17 11:29:50 +00:00
|
|
|
\$config['skin'] = 'larry';
|
2014-07-08 00:37:53 +00:00
|
|
|
\$config['login_autocomplete'] = 2;
|
|
|
|
\$config['password_charset'] = 'UTF-8';
|
|
|
|
\$config['junk_mbox'] = 'Spam';
|
|
|
|
?>
|
|
|
|
EOF
|
|
|
|
|
2017-01-15 15:46:33 +00:00
|
|
|
# Configure CardDav
|
|
|
|
cat > ${RCM_PLUGIN_DIR}/carddav/config.inc.php <<EOF;
|
|
|
|
<?php
|
|
|
|
/* Do not edit. Written by Mail-in-a-Box. Regenerated on updates. */
|
2017-03-27 12:16:36 +00:00
|
|
|
\$prefs['_GLOBAL']['hide_preferences'] = true;
|
|
|
|
\$prefs['_GLOBAL']['suppress_version_warning'] = true;
|
2017-01-15 15:46:33 +00:00
|
|
|
\$prefs['ownCloud'] = array(
|
|
|
|
'name' => 'ownCloud',
|
2017-03-27 12:16:36 +00:00
|
|
|
'username' => '%u', // login username
|
|
|
|
'password' => '%p', // login password
|
2017-01-15 15:46:33 +00:00
|
|
|
'url' => 'https://${PRIMARY_HOSTNAME}/cloud/remote.php/carddav/addressbooks/%u/contacts',
|
|
|
|
'active' => true,
|
|
|
|
'readonly' => false,
|
|
|
|
'refresh_time' => '02:00:00',
|
|
|
|
'fixed' => array('username','password'),
|
|
|
|
'preemptive_auth' => '1',
|
|
|
|
'hide' => false,
|
|
|
|
);
|
|
|
|
EOF
|
|
|
|
|
2014-07-08 00:37:53 +00:00
|
|
|
# Create writable directories.
|
2017-12-18 13:12:45 +00:00
|
|
|
mkdir -p /var/log/roundcubemail /var/tmp/roundcubemail $STORAGE_ROOT/mail/roundcube
|
|
|
|
chown -R www-data.www-data /var/log/roundcubemail /var/tmp/roundcubemail $STORAGE_ROOT/mail/roundcube
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2016-08-18 12:32:14 +00:00
|
|
|
# Ensure the log file monitored by fail2ban exists, or else fail2ban can't start.
|
|
|
|
sudo -u www-data touch /var/log/roundcubemail/errors
|
|
|
|
|
2014-04-30 17:07:15 +00:00
|
|
|
# Password changing plugin settings
|
2017-01-15 15:46:33 +00:00
|
|
|
# The config comes empty by default, so we need the settings
|
2014-04-30 17:07:15 +00:00
|
|
|
# we're not planning to change in config.inc.dist...
|
2017-01-15 15:46:33 +00:00
|
|
|
cp ${RCM_PLUGIN_DIR}/password/config.inc.php.dist \
|
|
|
|
${RCM_PLUGIN_DIR}/password/config.inc.php
|
2014-04-30 17:07:15 +00:00
|
|
|
|
2017-01-15 15:46:33 +00:00
|
|
|
tools/editconf.py ${RCM_PLUGIN_DIR}/password/config.inc.php \
|
2017-02-14 19:24:59 +00:00
|
|
|
"\$config['password_minimum_length']=8;" \
|
2014-07-08 00:37:53 +00:00
|
|
|
"\$config['password_db_dsn']='sqlite:///$STORAGE_ROOT/mail/users.sqlite';" \
|
|
|
|
"\$config['password_query']='UPDATE users SET password=%D WHERE email=%u';" \
|
|
|
|
"\$config['password_dovecotpw']='/usr/bin/doveadm pw';" \
|
|
|
|
"\$config['password_dovecotpw_method']='SHA512-CRYPT';" \
|
|
|
|
"\$config['password_dovecotpw_with_method']=true;"
|
2013-09-07 20:53:25 +00:00
|
|
|
|
2014-07-08 00:37:53 +00:00
|
|
|
# so PHP can use doveadm, for the password changing plugin
|
2014-04-30 17:07:15 +00:00
|
|
|
usermod -a -G dovecot www-data
|
|
|
|
|
|
|
|
# set permissions so that PHP can use users.sqlite
|
|
|
|
# could use dovecot instead of www-data, but not sure it matters
|
|
|
|
chown root.www-data $STORAGE_ROOT/mail
|
|
|
|
chmod 775 $STORAGE_ROOT/mail
|
2017-01-15 15:46:33 +00:00
|
|
|
chown root.www-data $STORAGE_ROOT/mail/users.sqlite
|
|
|
|
chmod 664 $STORAGE_ROOT/mail/users.sqlite
|
|
|
|
|
|
|
|
# Fix Carddav permissions:
|
|
|
|
chown -f -R root.www-data ${RCM_PLUGIN_DIR}/carddav
|
|
|
|
# root.www-data need all permissions, others only read
|
|
|
|
chmod -R 774 ${RCM_PLUGIN_DIR}/carddav
|
2014-04-30 17:07:15 +00:00
|
|
|
|
2016-09-19 15:10:44 +00:00
|
|
|
# Run Roundcube database migration script (database is created if it does not exist)
|
2017-01-15 15:46:33 +00:00
|
|
|
${RCM_DIR}/bin/updatedb.sh --dir ${RCM_DIR}/SQL --package roundcube
|
2016-12-05 22:31:20 +00:00
|
|
|
chown www-data:www-data $STORAGE_ROOT/mail/roundcube/roundcube.sqlite
|
|
|
|
chmod 664 $STORAGE_ROOT/mail/roundcube/roundcube.sqlite
|
2016-06-02 11:47:32 +00:00
|
|
|
|
2014-04-18 00:17:24 +00:00
|
|
|
# Enable PHP modules.
|
2017-07-10 20:56:59 +00:00
|
|
|
phpenmod -v php7.0 mcrypt imap
|
|
|
|
restart_service php7.0-fpm
|