Add scripts to install rcmcarddav plugin, intialize database after install.
This commit is contained in:
parent
21519ab198
commit
972934605b
|
@ -0,0 +1,63 @@
|
|||
#!/bin/bash
|
||||
# CardDAV client/sync for RoundCube Mail
|
||||
##########################
|
||||
|
||||
source setup/functions.sh # load our functions
|
||||
source /etc/mailinabox.conf # load global vars
|
||||
RCMPLUGINDIR=/usr/local/lib/roundcubemail/plugins/
|
||||
CARDDAVDIR=${RCMPLUGINDIR}/carddav/
|
||||
CARDDAVCONF=${CARDDAVDIR}/config.inc.php
|
||||
CARDDAVGIT=https://github.com/blind-coder/rcmcarddav.git
|
||||
RCMCONFIG=/usr/local/lib/roundcubemail/config/config.inc.php
|
||||
CURRDIR=`pwd`
|
||||
# ### Clone
|
||||
git_clone $CARDDAVGIT master '' $CARDDAVDIR
|
||||
|
||||
# ### Install composer
|
||||
|
||||
# We need php5-curl for this
|
||||
apt_install php5-curl
|
||||
|
||||
# This doesn't like hide_output so we keep things quiet the old fashioned way
|
||||
COMPOSERLOG=/tmp/rcmcarddav-composer-install.log
|
||||
cd $CARDDAVDIR
|
||||
curl -sS https://getcomposer.org/installer 2> $COMPOSERLOG | php 2>&1 >> $COMPOSERLOG
|
||||
php composer.phar install 2>> $COMPOSERLOG | php 2>&1 >> $COMPOSERLOG
|
||||
cd $CURRDIR
|
||||
|
||||
# ### Configure rcmcarddav
|
||||
cat > $CARDDAVCONF <<EOF;
|
||||
<?php
|
||||
\$prefs['ownCloud'] = array(
|
||||
// required attributes
|
||||
'name' => 'ownCloud',
|
||||
// will be substituted for the roundcube username
|
||||
'username' => '%u',
|
||||
// will be substituted for the roundcube password
|
||||
'password' => '%p',
|
||||
// %u will be substituted for the CardDAV username
|
||||
'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
|
||||
|
||||
# Enable plugin
|
||||
sed -ri "s@'vacation_sieve'\)@'vacation_sieve', 'carddav'\)@" $RCMCONFIG
|
||||
|
||||
# Fix permissions.
|
||||
chmod -R 644 $CARDDAVDIR
|
||||
chmod -R a+X $CARDDAVDIR
|
||||
chmod -R 644 $RCMCONFIG
|
||||
chmod -R a+X $RCMCONFIG
|
||||
|
||||
# Make sure ownership is correct
|
||||
chown -f -R www-data.www-data $CARDDAVDIR
|
||||
chown -f -R www-data.www-data $RCMCONFIG
|
||||
|
||||
# Should be all set after a restart
|
||||
restart_service nginx
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
# CardDAV client/sync for RoundCube Mail
|
||||
##########################
|
||||
|
||||
source setup/functions.sh # load our functions
|
||||
source /etc/mailinabox.conf # load global vars
|
||||
|
||||
# initialize roundcube database
|
||||
export PRIVATE_IP
|
||||
curl -sk https://${PRIVATE_IP}/mail/index.php 2>&1 >> /tmp/roundcube_db_init.log
|
||||
|
||||
# Work around bug in db init code in rcmcarddav
|
||||
RCMSQLF=/home/user-data/mail/roundcube/roundcube.sqlite
|
||||
DBINIT=/usr/local/lib/roundcubemail/plugins/carddav/dbinit/sqlite3.sql
|
||||
DBMIG=/usr/local/lib/roundcubemail/plugins/carddav/dbmigrations/0000-dbinit/sqlite3.sql
|
||||
|
||||
# This may fail if we've already created the database, so capture output
|
||||
/usr/bin/sqlite3 $RCMSQLF < $DBINIT &> /tmp/dbinit.log
|
||||
|
Loading…
Reference in New Issue