在您的ISPConfig3服务器上从SquirrelMail更改为RoundCube
本教程是为已安装完美服务器 - CentOS 5.4 x86_64 [ISPConfig 3]的用户而创建的,并且不喜欢SquirrelMail作为Webmail客户端。 以下是使用RoundCube替换SquirrelMail的指南,它更具视觉吸引力,更易于管理客户端。
重要! 我没有尝试过,但是...喜欢如何安装SquirrelMail在最近的CentOS 5.x完美的服务器Howtos没有改变。 我认为本教程对于早期版本的CentOS以及甚至其他Linux发行版也是有效的,它几乎不改变系统中的任何内容。
第1步。
下载RoundCube,解压缩,删除不必要的文件并准备安装文件夹。 替换最后一个可用的roundcubemail-0.3.1。
cd /usr/share
wget http://downloads.sourceforge.net/project/roundcubemail/roundcubemail/0.3.1/roundcubemail-0.3.1.tar.gz?use_mirror=ignum
tar -vxf roundcubemail-0.3.1.tar.gz
rm -fr roundcubemail-0.3.1.tar.gz
cd roundcubemail-0.3.1
rm -fr installer
chmod 755 temp logs
cd config
cp db.inc.php.dist db.inc.php
cp main.inc.php.dist main.inc.php
第2步。
现在我们来创建我们的RoundCube数据库。 我使用ISPConfig创建了我,因为我希望它在我的ISPConfig数据库列表中显示。 这是我的数据库示例:
Database name: roundcubedb
Database user: roundcubeuser
Database pass: 12345
更改这些更安全
第3步。
有必要手动安装RoundCube,因为如果使用RoundCube安装程序,则会报告php版本错误,并且不会继续安装。 编辑文件db.inc.php
,我们寻找以下行并使用我们的数据(我们在ISPConfig中创建的数据库)进行编辑。
vi db.inc.php
换行:
[...] $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; [...]
至:
[...] $rcmail_config['db_dsnw'] = 'mysql://roundcubeuser:12345@localhost/roundcubedb'; [...]
还要更改文件main.inc.php
中的这些设置:
vi main.inc.php
更改行:
[...] $rcmail_config['message_cache_lifetime'] = '10d'; [...]
$rcmail_config['default_host'] = ''; [...]
$rcmail_config['smtp_server'] = ''; [...]
$rcmail_config['session_lifetime'] = 10; [...]
$rcmail_config['create_default_folders'] = FALSE; [...]
至:
[...] $rcmail_config['message_cache_lifetime'] = '30m';
[...] $rcmail_config['default_host'] = 'localhost';
[...] $rcmail_config['smtp_server'] = '%h';
[...] $rcmail_config['session_lifetime'] = 30;
[...] $rcmail_config['create_default_folders'] = TRUE; [...]
第4步。
现在我们必须在我们的RoundCube数据库中手动创建表。 在roundcubemail-0.3.1 / SQL /
文件夹中搜索mysql.initial.sql
文件并复制其内容:
-- RoundCube Webmail initial database structure /*!40014 SET FOREIGN_KEY_CHECKS=0 */; -- Table structure for table `session` CREATE TABLE `session` ( `sess_id` varchar(40) NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `ip` varchar(40) NOT NULL, `vars` mediumtext NOT NULL, PRIMARY KEY(`sess_id`), INDEX `changed_index` (`changed`) ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -- Table structure for table `users` CREATE TABLE `users` ( `user_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `username` varchar(128) NOT NULL, `mail_host` varchar(128) NOT NULL, `alias` varchar(128) NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `last_login` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `language` varchar(5), `preferences` text, PRIMARY KEY(`user_id`), INDEX `username_index` (`username`), INDEX `alias_index` (`alias`) ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -- Table structure for table `messages` CREATE TABLE `messages` ( `message_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', `del` tinyint(1) NOT NULL DEFAULT '0', `cache_key` varchar(128) /*!40101 CHARACTER SET ascii COLLATE ascii_general_ci */ NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `idx` int(11) UNSIGNED NOT NULL DEFAULT '0', `uid` int(11) UNSIGNED NOT NULL DEFAULT '0', `subject` varchar(255) NOT NULL, `from` varchar(255) NOT NULL, `to` varchar(255) NOT NULL, `cc` varchar(255) NOT NULL, `date` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `size` int(11) UNSIGNED NOT NULL DEFAULT '0', `headers` text NOT NULL, `structure` text, PRIMARY KEY(`message_id`), INDEX `created_index` (`created`), INDEX `index_index` (`user_id`, `cache_key`, `idx`), UNIQUE `uniqueness` (`user_id`, `cache_key`, `uid`), CONSTRAINT `user_id_fk_messages` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -- Table structure for table `cache` CREATE TABLE `cache` ( `cache_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `cache_key` varchar(128) /*!40101 CHARACTER SET ascii COLLATE ascii_general_ci */ NOT NULL , `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `data` longtext NOT NULL, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY(`cache_id`), INDEX `created_index` (`created`), INDEX `user_cache_index` (`user_id`,`cache_key`), CONSTRAINT `user_id_fk_cache` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -- Table structure for table `contacts` CREATE TABLE `contacts` ( `contact_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `del` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `firstname` varchar(128) NOT NULL, `surname` varchar(128) NOT NULL, `vcard` text NULL, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY(`contact_id`), INDEX `user_contacts_index` (`user_id`,`email`), CONSTRAINT `user_id_fk_contacts` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; -- Table structure for table `identities` CREATE TABLE `identities` ( `identity_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `del` tinyint(1) NOT NULL DEFAULT '0', `standard` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL, `organization` varchar(128) NOT NULL DEFAULT '', `email` varchar(128) NOT NULL, `reply-to` varchar(128) NOT NULL DEFAULT '', `bcc` varchar(128) NOT NULL DEFAULT '', `signature` text, `html_signature` tinyint(1) NOT NULL DEFAULT '0', `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', PRIMARY KEY(`identity_id`), CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) /*!40008 ON DELETE CASCADE ON UPDATE CASCADE */ ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; /*!40014 SET FOREIGN_KEY_CHECKS=1 */;
现在转到http://www.yourdomain.tld:8080 / phpmyadmin
,输入你的MySQL用户名和密码。 选择我们的RoundCube数据库“roundcubedb”并转到SQL选项卡,进入文本框,粘贴您复制的文本mysql.initial.sql
并执行查询。 我们成功安装了RoundCube Webmail。
第5步。
我们希望RoundCube作为我们的默认Webmail。 松鼠邮件不会被使用,我们也不希望我们的客户遭受任何改变。 我们这样做: 这一步可以适应他们的需要。 可以保留SquirrelMail,为RoundCube创建一个新的别名。
cd /usr/share
mv squirrelmail squirrelmail.bak
mv roundcubemail-0.3.1 squirrelmail
第6步。
最后去http://www.yourdomain.tld:8080 / webmail
并登录欣赏这个可爱的Webmail。
信息:
- 有关RoundCube的更多信息: http : //www.roundcube.net
- Falko的Howto 完美的服务器 - CentOS 5.4 x86_64 [ISPConfig 3]
特别感谢:
- 法尔科 您的完美服务器Howtos在启动Linux服务器时帮助了我很多。
- 我的女朋友Naty。 她做了翻译的文本。
- youcl团队为您的出色工作。