SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Revision of Roundcube from Wed, 01/13/2010 - 14:59
Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.
The latest stable release is 0.3.1:
cd /extra/src
wget http://iweb.dl.sourceforge.net/project/roundcubemail/roundcubemail/0.3.1/roundcubemail-0.3.1.tar.gz
tar zxf roundcubemail-0.3.1.tar.gz
mv roundcubemail-0.3.1 /var/websites/mail/htdocs/roundcube
chown -R nobody:nobody /var/websites/mail/htdocs/roundcube
Create the MySQL database:
/usr/local/mysql/bin/mysql -u root -p
CREATE DATABASE roundcubemail;
GRANT ALL PRIVILEGES ON roundcubemail.* TO username@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
Point your web browser at http://http://example.com/roundcube/installer/
.
Once you've used the installer to create main.inc.php
and db.inc.php
, save them in /var/websites/mail/htdocs/roundcube/config
After completing the installation and the final tests please remove the whole installer folder from the document root of the webserver.
rm -rf /var/websites/mail/htdocs/roundcube/installer
Updating
Based on the upgrading instructions from roundcube.net.
- Backup the RoundCube directory:
cd /var/websites/webmail/htdocs
mv roundcube roundcube.old - Backup the Roundcube MySQL database:
/usr/local/mysql/bin/mysqldump -u username -p roundcubemail > /extra/roundcubemail.sql
- Download the new version, unstuff it and move it into your
htdocs
directory - Copy the old config files:
cd /var/websites/mail/htdocs
cp roundcube.old/config/db.inc.php roundcube/config/
cp roundcube.old/config/main.inc.php roundcube/config/ - Check
roundcube/SQL/mysql.updates.sql
and execute any updates from after your previous version of Roundcube
- Log in to post comments