<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: CentOS: Install Roundcube web mail client	</title>
	<atom:link href="https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/</link>
	<description></description>
	<lastBuildDate>Sat, 24 Oct 2020 12:47:47 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Kliment Andreev		</title>
		<link>https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/#comment-89</link>

		<dc:creator><![CDATA[Kliment Andreev]]></dc:creator>
		<pubDate>Mon, 24 Feb 2014 02:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iandreev.com/?p=1017#comment-89</guid>

					<description><![CDATA[Sorry, but I am not familiar with the plugin manager. You might want to post the question to their forum. 

Thanks]]></description>
			<content:encoded><![CDATA[<p>Sorry, but I am not familiar with the plugin manager. You might want to post the question to their forum. </p>
<p>Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: saidultalukder		</title>
		<link>https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/#comment-88</link>

		<dc:creator><![CDATA[saidultalukder]]></dc:creator>
		<pubDate>Sat, 22 Feb 2014 11:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iandreev.com/?p=1017#comment-88</guid>

					<description><![CDATA[Thanks for your replay, the issue is clear. Now i am facing another problem when going to install plugin_manager with round cube web mail and getting some database error. please check the below error:

=============================================
Plugin Manager database versioning: Plugin &quot;plugin_manager&quot;
Plugin Manager has detected required missing adjustments in your database. The following commands will be executed against your database mysql://webmail:***masked***@localhost/webmail:
============================================= 
 

CREATE TABLE IF NOT EXISTS `plugin_manager` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `conf` text NOT NULL,
  `value` text,
  `type` text,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `user_identities_index` (`user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `system` (
 `name` varchar(64) NOT NULL,
 `value` mediumtext,
 PRIMARY KEY(`name`)
);

INSERT INTO `system` (name, value) VALUES (&#039;myrc_plugin_manager&#039;, &#039;initial&#039;);

ALTER TABLE `plugin_manager`
  ADD CONSTRAINT `user_id_fk_plugin_manager` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE  `plugin_manager` DROP FOREIGN KEY  `user_id_fk_plugin_manager` ;
ALTER TABLE  `plugin_manager` DROP  `user_id`;
ALTER TABLE  `plugin_manager` ENGINE=MyISAM;
UPDATE `system` SET `value`=&#039;initial&#124;20131209&#039; WHERE `name`=&#039;myrc_plugin_manager&#039;;
============================================
This is my db.inc.php and main.inc.php configure for web mail and plugin_manager:

$rcmail_config[&#039;db_dsnw&#039;] = &#039;mysql://webmail:dhaka1234@localhost/webmail&#039;;


// List of active plugins (in plugins/ directory)
$rcmail_config[&#039;plugins&#039;] = array(&#039;plugin_manager&#039;);

Would you please help me to overcome from the problem.


Thanks 
Md. Saidul Islam Talukder.]]></description>
			<content:encoded><![CDATA[<p>Thanks for your replay, the issue is clear. Now i am facing another problem when going to install plugin_manager with round cube web mail and getting some database error. please check the below error:</p>
<p>=============================================<br />
Plugin Manager database versioning: Plugin &#8220;plugin_manager&#8221;<br />
Plugin Manager has detected required missing adjustments in your database. The following commands will be executed against your database mysql://webmail:***masked***@localhost/webmail:<br />
============================================= </p>
<p>CREATE TABLE IF NOT EXISTS `plugin_manager` (<br />
  `id` int(10) NOT NULL AUTO_INCREMENT,<br />
  `user_id` int(10) unsigned NOT NULL,<br />
  `conf` text NOT NULL,<br />
  `value` text,<br />
  `type` text,<br />
  PRIMARY KEY (`id`),<br />
  KEY `user_id` (`user_id`),<br />
  KEY `user_identities_index` (`user_id`)<br />
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;</p>
<p>CREATE TABLE IF NOT EXISTS `system` (<br />
 `name` varchar(64) NOT NULL,<br />
 `value` mediumtext,<br />
 PRIMARY KEY(`name`)<br />
);</p>
<p>INSERT INTO `system` (name, value) VALUES (&#8216;myrc_plugin_manager&#8217;, &#8216;initial&#8217;);</p>
<p>ALTER TABLE `plugin_manager`<br />
  ADD CONSTRAINT `user_id_fk_plugin_manager` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE;<br />
ALTER TABLE  `plugin_manager` DROP FOREIGN KEY  `user_id_fk_plugin_manager` ;<br />
ALTER TABLE  `plugin_manager` DROP  `user_id`;<br />
ALTER TABLE  `plugin_manager` ENGINE=MyISAM;<br />
UPDATE `system` SET `value`=&#8217;initial|20131209&#8242; WHERE `name`=&#8217;myrc_plugin_manager&#8217;;<br />
============================================<br />
This is my db.inc.php and main.inc.php configure for web mail and plugin_manager:</p>
<p>$rcmail_config[&#8216;db_dsnw&#8217;] = &#8216;mysql://webmail:dhaka1234@localhost/webmail&#8217;;</p>
<p>// List of active plugins (in plugins/ directory)<br />
$rcmail_config[&#8216;plugins&#8217;] = array(&#8216;plugin_manager&#8217;);</p>
<p>Would you please help me to overcome from the problem.</p>
<p>Thanks<br />
Md. Saidul Islam Talukder.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kliment Andreev		</title>
		<link>https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/#comment-87</link>

		<dc:creator><![CDATA[Kliment Andreev]]></dc:creator>
		<pubDate>Thu, 20 Feb 2014 17:10:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iandreev.com/?p=1017#comment-87</guid>

					<description><![CDATA[It depends. If you use virtual hosts, then your username is your e-mail address, if not, then your username is your Linux account name. For the server name use localhost, but at the end of the post, you can see how to change the config file, so you won&#039;t be prompted for this.]]></description>
			<content:encoded><![CDATA[<p>It depends. If you use virtual hosts, then your username is your e-mail address, if not, then your username is your Linux account name. For the server name use localhost, but at the end of the post, you can see how to change the config file, so you won&#8217;t be prompted for this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: saidultalukder		</title>
		<link>https://blog.andreev.it/2013/12/centos-install-roundcube-web-mail-client/#comment-86</link>

		<dc:creator><![CDATA[saidultalukder]]></dc:creator>
		<pubDate>Thu, 20 Feb 2014 13:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iandreev.com/?p=1017#comment-86</guid>

					<description><![CDATA[Thanks for your step by step configuration, really appreciated. but getting problem when trying to logging in web mail asking username, Password and server name. What will be username it will be included @domain or excluding and what will be the server name. Still i can not logging using web mail.

So we need three information:

1. How to write username
2. password ( I knew)
3. Server name :

Thanks 
Md. Saidul Islam Talukder
saidultalukder@yahoo.com]]></description>
			<content:encoded><![CDATA[<p>Thanks for your step by step configuration, really appreciated. but getting problem when trying to logging in web mail asking username, Password and server name. What will be username it will be included @domain or excluding and what will be the server name. Still i can not logging using web mail.</p>
<p>So we need three information:</p>
<p>1. How to write username<br />
2. password ( I knew)<br />
3. Server name :</p>
<p>Thanks<br />
Md. Saidul Islam Talukder<br />
<a href="mailto:saidultalukder@yahoo.com">saidultalukder@yahoo.com</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
