<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PRESOON.COM &#187; RoundCube</title>
	<atom:link href="http://presoon.com/blog/category/roundcube/feed/" rel="self" type="application/rss+xml" />
	<link>http://presoon.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to change language for Roundcube webmail</title>
		<link>http://presoon.com/blog/2008/04/18/how-to-change-language-for-roundcube-webmail/</link>
		<comments>http://presoon.com/blog/2008/04/18/how-to-change-language-for-roundcube-webmail/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:54:15 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[RoundCube]]></category>
		<category><![CDATA[language]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=15</guid>
		<description><![CDATA[ Edit Roundcube main config(/usr/local/cpanel/base/roundcube/config/main.inc.php) 
To change language from English to Portuguese Brasil 
Find 
$rcmail_config['locale_string'] = &#8216;en&#8217;; 
Replace it to 
$rcmail_config['locale_string'] = &#8216;pt_BR&#8217;; 
You can see the installed languages such as fr(french), en_US(english US) from the folder /usr/local/cpanel/base/roundcube/program/localization.
]]></description>
			<content:encoded><![CDATA[<p> Edit Roundcube main config(/usr/local/cpanel/base/roundcube/config/main.inc.php) </p>
<p>To change language from English to Portuguese Brasil </p>
<p>Find </p>
<p>$rcmail_config['locale_string'] = &#8216;en&#8217;; </p>
<p>Replace it to </p>
<p>$rcmail_config['locale_string'] = &#8216;pt_BR&#8217;; </p>
<p>You can see the installed languages such as fr(french), en_US(english US) from the folder /usr/local/cpanel/base/roundcube/program/localization.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/18/how-to-change-language-for-roundcube-webmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install RoundCube on CPanel</title>
		<link>http://presoon.com/blog/2008/04/18/how-to-install-roundcube-on-cpanel/</link>
		<comments>http://presoon.com/blog/2008/04/18/how-to-install-roundcube-on-cpanel/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:35:43 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[RoundCube]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=14</guid>
		<description><![CDATA[The First step is to remove the previous traces of Roundcube in the server.
====================
cd /usr/local/cpanel/base
rm -rf roundcube*
mysql
mysql>drop database roundcube;
====================
Before starting the installation, you need to know the root password of Mysql.
Lets proceed&#8230;.
====================
cd /usr/local/cpanel/base
wget http://easynews.dl.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.1beta2.1.tar.gz
tar -zxvf roundcubemail-0.1beta2.1.tar.gz
mv -f roundcubemail-0.1beta2 roundcube
cd roundcube
chmod -R 777 temp
chmod -R 777 logs
====================
Create the database. Find mysql root password from /root/.my.cnf.
Login as [...]]]></description>
			<content:encoded><![CDATA[<p>The First step is to remove the previous traces of Roundcube in the server.</p>
<p>====================<br />
cd /usr/local/cpanel/base<br />
rm -rf roundcube*<br />
mysql<br />
mysql>drop database roundcube;<br />
====================</p>
<p>Before starting the installation, you need to know the root password of Mysql.<br />
Lets proceed&#8230;.</p>
<p>====================<br />
cd /usr/local/cpanel/base<br />
wget http://easynews.dl.sourceforge.net/sourceforge/roundcubemail/roundcubemail-0.1beta2.1.tar.gz<br />
tar -zxvf roundcubemail-0.1beta2.1.tar.gz<br />
mv -f roundcubemail-0.1beta2 roundcube<br />
cd roundcube<br />
chmod -R 777 temp<br />
chmod -R 777 logs<br />
====================</p>
<p>Create the database. Find mysql root password from /root/.my.cnf.<br />
Login as user, root.</p>
<p>====================<br />
mysql -u root -p<br />
Password:<br />
mysql>CREATE DATABASE roundcube;<br />
mysql>use roundcube;<br />
mysql>source SQL/mysql.initial.sql;<br />
mysql>quit<br />
====================</p>
<p>Add the configuration:</p>
<p>====================<br />
cd config<br />
mv db.inc.php.dist db.inc.php<br />
mv main.inc.php.dist main.inc.php<br />
====================</p>
<p>Edit the configuration files</p>
<p>====================<br />
using your text editor edit db.inc.php</p>
<p>Find:<br />
$rcmail_config['db_dsnw'] = &#8216;mysql://roundcube:pass@localhost/roundcubemail&#8217;;<br />
Replace with:<br />
$rcmail_config['db_dsnw'] = &#8216;mysql://root:rootpass@localhost/roundcube&#8217;;<br />
#vi main.inc.php<br />
====================<br />
Replace the corresponding root password</p>
<p>====================<br />
using your text editor edit main.inc.php<br />
Find:<br />
$rcmail_config['default_host'] = &#8221;;<br />
Replace with:<br />
$rcmail_config['default_host'] = &#8216;localhost&#8217;;<br />
====================</p>
<p>Configure cPanel to show roundcube in the theme. X theme(default) only!! </p>
<p>====================<br />
cd /usr/local/cpanel/base/roundcube/skins/default/images/<br />
cp roundcube_logo.png /usr/local/cpanel/base/frontend/x/images/roundcube_logo.png<br />
cp roundcube_logo.png /usr/local/cpanel/base/webmail/x/images/roundcube_logo.png<br />
wget http://www.yourserverguide.com/Files/HGpatch-roundcube-1.0BETA2.1<br />
patch -p0 < HGpatch-roundcube-1.0BETA2.1<br />
====================</p>
<p>If you receive a message stating: Reversed (or previously applied) patch detected! Assume -R? Please press N for No as this is because you previously installed roundcube </p>
<p>This will auto do all the necessary changes to roundcube and the X theme. Once the patch is executed you may now access roundcube via http://yourdomain/webmail </p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/18/how-to-install-roundcube-on-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
