<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://studioware.com/wikislax/index.php?action=history&amp;feed=atom&amp;title=RoundCube</id>
		<title>RoundCube - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://studioware.com/wikislax/index.php?action=history&amp;feed=atom&amp;title=RoundCube"/>
		<link rel="alternate" type="text/html" href="http://studioware.com/wikislax/index.php?title=RoundCube&amp;action=history"/>
		<updated>2026-05-07T15:10:42Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.29.2</generator>

	<entry>
		<id>http://studioware.com/wikislax/index.php?title=RoundCube&amp;diff=37&amp;oldid=prev</id>
		<title>Wikislax: Created page with &quot;{{RightTOC}}  == What is RoundCube ? ==  [http://roundcube.net RoundCube] is a PHP Web Mail application using SMTP and IMAP servers on the Network or on the local host. RoundC...&quot;</title>
		<link rel="alternate" type="text/html" href="http://studioware.com/wikislax/index.php?title=RoundCube&amp;diff=37&amp;oldid=prev"/>
				<updated>2017-12-06T21:35:00Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{RightTOC}}  == What is RoundCube ? ==  [http://roundcube.net RoundCube] is a PHP Web Mail application using SMTP and IMAP servers on the Network or on the local host. RoundC...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&lt;br /&gt;
== What is RoundCube ? ==&lt;br /&gt;
&lt;br /&gt;
[http://roundcube.net RoundCube] is a PHP Web Mail application using SMTP and IMAP servers on the Network or on the local host. RoundCube also requires a database. Recommended databases are MySQL or SQLite. PostgreSQL would be too buggy for production.&lt;br /&gt;
&lt;br /&gt;
== Installing RoundCube ==&lt;br /&gt;
&lt;br /&gt;
[http://roundcube.net/download Download] and untar the software. As RoundCube is a PHP application there is nothing to compile. Review the INSTALL files to check dependancies and other recommendations. Create a link from the http directory or anywhere you deem appropriate :&lt;br /&gt;
&lt;br /&gt;
 # tar -C /usr/local -xvf roundcubemail-x.y.z.tar.gz&lt;br /&gt;
 # cd /usr/local&lt;br /&gt;
 # chown -R root:root roundcubemail-x.y.z&lt;br /&gt;
 # cd roundcubemail-x.y.z&lt;br /&gt;
 # chown -R apache:apache temp&lt;br /&gt;
 # chown -R apache:apache logs&lt;br /&gt;
 # less INSTALL&lt;br /&gt;
 # ln -s /usr/local/roundcubemail-x.y.z /var/www/htdocs/roundcube&lt;br /&gt;
&lt;br /&gt;
RoundCube requires a database. Recommended databases are MySQL or SQLite. PostgreSQL would be too buggy for production. On this installation we use MySQL. Create the RoundCube database and user using [[phpMyAdmin]] or using MySQL commands :&lt;br /&gt;
&lt;br /&gt;
 # cd /usr/local/roundcubemail-x.y.z&lt;br /&gt;
 # mysql -u root -p&lt;br /&gt;
 Enter password:&lt;br /&gt;
 &amp;gt; CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;&lt;br /&gt;
 &amp;gt; GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube.% IDENTIFIED BY 'password';&lt;br /&gt;
 &amp;gt; FLUSH PRIVILEGES;&lt;br /&gt;
 &amp;gt; quit&lt;br /&gt;
 # mysql -u roundcube -p roundcubemail &amp;lt; SQL/mysql.initial.sql&lt;br /&gt;
 # cp config/defaults.inc.php config.inc.php&lt;br /&gt;
&lt;br /&gt;
Update the config file. Specify the database user password &amp;amp; the SMTP configuration. '''enable_installer''' affords using the test script that was once an installer script.&lt;br /&gt;
&lt;br /&gt;
 # vi config/config.inc.php&lt;br /&gt;
 '''. . .'''&lt;br /&gt;
 $config['db_dsnw'] = 'mysql://roundcube:'''password'''@localhost/roundcubemail';&lt;br /&gt;
 $config['smtp_server'] = ''''tls://inner.studioware.com'''';&lt;br /&gt;
 $config['smtp_port'] = '''587''';&lt;br /&gt;
 $config['smtp_user'] = ''''%u'''';&lt;br /&gt;
 $config['smtp_pass'] = ''''%p'''';&lt;br /&gt;
 $config['smtp_auth_type'] = ''''PLAIN'''';&lt;br /&gt;
 '''. . .'''&lt;br /&gt;
 $config['enable_installer'] = false;&lt;br /&gt;
 :x&lt;br /&gt;
&lt;br /&gt;
Point your browser to http://localhost/roundcube/installer. Follow the instructions given. In case you see some red NOT OK messages, then you need to fix something. When everything works, remove all the permissions on the installer directory. Otherwise the installer script could be re-launched again from the start, disclosing existing configuration information - including the passwords. Also make sure that files in directories config, temp, logs are protected from disclosure by the following non-overidable statements in the .htaccess hierarchy :&lt;br /&gt;
&lt;br /&gt;
 Order allow,deny&lt;br /&gt;
 Deny from all&lt;br /&gt;
&lt;br /&gt;
For more information on installation and configuration of RoundCube check the [http://trac.roundcube.net/wiki RoundCube Wiki].&lt;br /&gt;
&lt;br /&gt;
== Maintaining RoundCube ==&lt;br /&gt;
&lt;br /&gt;
To keep your database slick and clean it is recommended to periodically execute bin/cleandb.sh which finally removes all records that are marked as deleted. The best solution is to install a cron job running this script daily.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{pFoot|[[MediaWiki]]|[[Main Page]]|[[INN]]}}&lt;/div&gt;</summary>
		<author><name>Wikislax</name></author>	</entry>

	</feed>