{"id":2698,"date":"2013-11-19T10:12:43","date_gmt":"2013-11-19T16:12:43","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=2698"},"modified":"2022-06-03T03:47:16","modified_gmt":"2022-06-03T08:47:16","slug":"install-and-set-up-roundcube-webmail-interface","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/","title":{"rendered":"Install And Set Up Roundcube Webmail Interface"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\"><img decoding=\"async\" class=\"alignleft size-medium wp-image-2699\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface-300x225.png\" alt=\"Install and set-up Roundcube webmail interface\" width=\"300\" height=\"225\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface-300x225.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png 400w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a>The following article is about <strong>how to install and set up the Roundcube webmail interface<\/strong> on a <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a>.<\/p>\n<p>It is actually <strong>part 2<\/strong> of our <a title=\"Mailserver with virtual users and domains using Postfix and Dovecot on a CentOS 6 VPS\" href=\"https:\/\/www.rosehosting.com\/blog\/mailserver-with-virtual-users-and-domains-using-postfix-and-dovecot-on-a-centos-6-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">mailserver with virtual users and domains using Postfix and Dovecot on a CentOS 6 VPS<\/a> series.<\/p>\n<h2>What is Roundcube?<\/h2>\n<p><strong>Roundcube<\/strong> is a <strong>web-based IMAP email client<\/strong> written in <strong>PHP<\/strong>. Roundcube&#8217;s most prominent feature is the pervasive use of Ajax technology to present a more fluid and responsive user interface than one of the traditional webmail clients. It provides the full functionality you expect from an email client, including MIME support, address book, folder manipulation, message searching, spell checking, etc.<\/p>\n<p><!--more--><\/p>\n<p>As usual, before proceeding any further, SSH to your <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 6 VPS<\/a>, fire-up a <code>screen<\/code> session, and make sure your system is fully up-to-date by running:<\/p>\n<pre>## screen -U -S roundcube-screen\n## yum update<\/pre>\n<p>Roundcube requires PHP, a webserver, and a database server. We are going to use the <strong>LAMP stack<\/strong> here, so, if LAMP is not already set up on your system please check our fine tutorial on <a title=\"How to install LAMP (Linux Apache MySQL and PHP) on CentOS 6 with phpMyAdmin and APC cache\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-lamp-linux-apache-mysql-and-php-on-centos-6-with-phpmyadmin-and-apc-cache\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to install LAMP (Linux Apache MySQL and PHP) on CentOS 6<\/a>.<\/p>\n<p>Ok, the next step is to set up a database for Roundcube using the following commands:<\/p>\n<pre>## mysql -u root -p\nmysql&gt; CREATE DATABASE IF NOT EXISTS `roundcube`;\nmysql&gt; GRANT ALL PRIVILEGES ON `roundcube` . * TO 'roundcube'@'localhost' IDENTIFIED BY 'mySecretPassword';\nmysql&gt; FLUSH PRIVILEGES;\nmysql&gt; quit<\/pre>\n<p>make sure you change &#8216;<code>mySecretPassword<\/code>&#8216; with your own one.<\/p>\n<p>Before downloading and installing Roundcube, let&#8217;s first create Roundcube&#8217;s Apache configuration file in <code>\/etc\/httpd\/conf.d\/90-roundcube.conf<\/code> by using an editor:<\/p>\n<pre>## vim  \/etc\/httpd\/conf.d\/90-roundcube.conf<\/pre>\n<p>and paste the following:<\/p>\n<pre>Alias \/webmail \/var\/www\/html\/roundcube\n\n&lt;Directory \/var\/www\/html\/roundcube&gt;\n    Options -Indexes\n    AllowOverride All\n&lt;\/Directory&gt;\n\n&lt;Directory \/var\/www\/html\/roundcube\/config&gt;\n    Order Deny,Allow\n    Deny from All\n&lt;\/Directory&gt;\n\n&lt;Directory \/var\/www\/html\/roundcube\/temp&gt;\n    Order Deny,Allow\n    Deny from All\n&lt;\/Directory&gt;\n\n&lt;Directory \/var\/www\/html\/roundcube\/logs&gt;\n    Order Deny,Allow\n    Deny from All\n&lt;\/Directory&gt;<\/pre>\n<p>So far so good. Now, download and set up the latest version of Roundcube to <code>\/var\/www\/html\/roundcube<\/code> using:<\/p>\n<pre>## curl -L \"http:\/\/sourceforge.net\/projects\/roundcubemail\/files\/latest\/download?source=files\" &gt; \/tmp\/roundcube-latest.tar.gz\n## tar -zxf \/tmp\/roundcube-latest.tar.gz -C \/var\/www\/html\n## rm -f \/tmp\/roundcube-latest.tar.gz\n## cd \/var\/www\/html\n## mv roundcubemail-* roundcube\n## chown root: -R roundcube\/\n## chown apache: -R roundcube\/temp\/\n## chown apache: -R roundcube\/logs\/<\/pre>\n<p>The next thing to do, is to set up Roundcube&#8217;s <code>main.inc.php<\/code> configuration file. But, before setting it up, let&#8217;s first create all the necessary database tables for Roundcube using:<\/p>\n<pre>## mysql -u roundcube -p\"mySecretPassword\" roundcube &lt; roundcube\/SQL\/mysql.initial.sql<\/pre>\n<p><i>again, make sure you use the correct MySQL user\/password combination<\/i><\/p>\n<p>with tables in place, proceed with copying the <code>main.inc.php.dist<\/code> sample configuration file and editing <code>main.inc.php<\/code>:<\/p>\n<pre>## cp roundcube\/config\/main.inc.php.dist roundcube\/config\/main.inc.php\n## vim roundcube\/config\/main.inc.php<\/pre>\n<pre>change:\n  $rcmail_config['default_host'] = '';\nto\n  $rcmail_config['default_host'] = 'localhost';\n\nchange:\n  $rcmail_config['smtp_server'] = '';\nto\n  $rcmail_config['smtp_server'] = 'localhost';\n\nchange:\n  $rcmail_config['smtp_user'] = '';\nto\n  $rcmail_config['smtp_user'] = '%u';\n\nchange:\n  $rcmail_config['smtp_pass'] = '';\nto\n  $rcmail_config['smtp_pass'] = '%p';\n\nchange:\n  $rcmail_config['quota_zero_as_unlimited'] = false;\nto\n  $rcmail_config['quota_zero_as_unlimited'] = true;\n\nchange:\n  $rcmail_config['preview_pane'] = false;\nto\n  $rcmail_config['preview_pane'] = true;\n\nchange:\n  $rcmail_config['read_when_deleted'] = true;\nto\n  $rcmail_config['read_when_deleted'] = false;\n\nchange:\n  $rcmail_config['check_all_folders'] = false;\nto\n  $rcmail_config['check_all_folders'] = true;<\/pre>\n<p>save and close the configuration file and proceed with setting up Roundcube&#8217;s database configuration file:<\/p>\n<pre>## cp roundcube\/config\/db.inc.php.dist roundcube\/config\/db.inc.php\n## vim roundcube\/config\/db.inc.php<\/pre>\n<pre>change:\n  $rcmail_config['db_dsnw'] = 'mysql:\/\/roundcube:pass@localhost\/roundcubemail';\nto\n  $rcmail_config['db_dsnw'] = 'mysqli:\/\/roundcube:mySecretPassword@localhost\/roundcube';<\/pre>\n<p>save and close the configuration file and remove the <code>installer<\/code> directory using:<\/p>\n<pre>## rm -rf roundcube\/installer\/<\/pre>\n<p>finally, restart Apache using:<\/p>\n<pre>## service httpd restart<\/pre>\n<p>and login to your webmail at <strong>http:\/\/yourdomain.com\/webmail<\/strong><\/p>\n<hr \/>\n<p>Adding <strong>Roundcube Webmail<\/strong> to the <a title=\"Mailserver with virtual users and domains using Postfix and Dovecot on a CentOS 6 VPS\" href=\"https:\/\/www.rosehosting.com\/blog\/mailserver-with-virtual-users-and-domains-using-postfix-and-dovecot-on-a-centos-6-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">mailserver set-up with virtual users and domains using Postfix and Dovecot<\/a> on a <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a> provides you with a web-based email client solution for managing your user&#8217;s emails.<\/p>\n<p>There are still other parts missing such as SSL encrypted connection, anti-spam service, digital signatures using opendkim, filter rules, etc for a full-featured mail server. In the next few related articles, we will be adding additional features to the set-up so stay tuned.<\/p>\n<p>Update: <a title=\"Permalink to Set-up SSL encrypted connection in Postfix, Dovecot and Apache\" href=\"https:\/\/www.rosehosting.com\/blog\/set-up-ssl-encrypted-connection-in-postfix-dovecot-and-apache\/\" target=\"_blank\" rel=\"bookmark noopener noreferrer\">Part 3 &#8211; Set-up SSL encrypted connection in Postfix, Dovecot and Apache<\/a><\/p>\n<p>Update: <a title=\"How to install and integrate SpamAssassin with Postfix on a CentOS 6 VPS\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-spamassassin-with-postfix-on-a-centos-6-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">Part 4 &#8211; How to install and integrate SpamAssassin with Postfix on a CentOS 6 VPS<\/a><\/p>\n<p>Update: <a title=\"How to install and integrate OpenDKIM with Postfix on a CentOS 6 VPS\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-integrate-opendkim-with-postfix-on-a-centos-6-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">Part 5 &#8211; How to install and integrate OpenDKIM with Postfix on a CentOS 6 VPS<\/a><\/p>\n<p>Update: <a title=\"How to set-up server-side email filtering with Dovecot Sieve and Roundcube on a CentOS 6 VPS\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-server-side-email-filtering-with-dovecot-sieve-and-roundcube-on-a-centos-6-vps\/\" target=\"_blank\" rel=\"noopener noreferrer\">Part 6 &#8211; How to set up server-side email filtering with Dovecot Sieve and Roundcube on a CentOS 6 VPS<\/a><\/p>\n<hr \/>\n<p>Of course, if you are one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> customers, you don\u2019t have to do any of this, simply ask our admins, sit back and relax. Our admins will set this up for you immediately. For updates, you can also read <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-roundcube-webmail-on-ubuntu-20-04\/\">how to Install Roundcube Webmail on Ubuntu 20.04<\/a>.<\/p>\n<p><strong>PS.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The following article is about how to install and set up the Roundcube webmail interface on a CentOS VPS. It &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install And Set Up Roundcube Webmail Interface\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#more-2698\" aria-label=\"Read more about Install And Set Up Roundcube Webmail Interface\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":2699,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1706,13],"tags":[157,71,177,220,1152,204,333],"class_list":["post-2698","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-email-servers","category-tutorials","tag-centos6","tag-dovecot","tag-linux-vps","tag-postfix","tag-rosehosting","tag-roundcube","tag-webmail","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install And Set Up Roundcube Webmail Interface | RoseHosting<\/title>\n<meta name=\"description\" content=\"Learn how to install and set up RoundCube webmail interface on a CentOS VPS. This guide shows a step-by-step tutorial.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install And Set Up Roundcube Webmail Interface\" \/>\n<meta property=\"og:description\" content=\"Install And Set Up Roundcube Webmail Interface | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-19T16:12:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install And Set Up Roundcube Webmail Interface\",\"datePublished\":\"2013-11-19T16:12:43+00:00\",\"dateModified\":\"2022-06-03T08:47:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\"},\"wordCount\":557,\"commentCount\":37,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\",\"keywords\":[\"centos6\",\"Dovecot\",\"linux vps\",\"postfix\",\"rosehosting\",\"roundcube\",\"webmail\"],\"articleSection\":[\"Email Servers\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\",\"name\":\"Install And Set Up Roundcube Webmail Interface | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\",\"datePublished\":\"2013-11-19T16:12:43+00:00\",\"dateModified\":\"2022-06-03T08:47:16+00:00\",\"description\":\"Learn how to install and set up RoundCube webmail interface on a CentOS VPS. This guide shows a step-by-step tutorial.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png\",\"width\":400,\"height\":300,\"caption\":\"Install and set-up Roundcube webmail interface\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install And Set Up Roundcube Webmail Interface\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install And Set Up Roundcube Webmail Interface | RoseHosting","description":"Learn how to install and set up RoundCube webmail interface on a CentOS VPS. This guide shows a step-by-step tutorial.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/","og_locale":"en_US","og_type":"article","og_title":"Install And Set Up Roundcube Webmail Interface","og_description":"Install And Set Up Roundcube Webmail Interface | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-11-19T16:12:43+00:00","article_modified_time":"2022-06-03T08:47:16+00:00","og_image":[{"width":400,"height":300,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install And Set Up Roundcube Webmail Interface","datePublished":"2013-11-19T16:12:43+00:00","dateModified":"2022-06-03T08:47:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/"},"wordCount":557,"commentCount":37,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png","keywords":["centos6","Dovecot","linux vps","postfix","rosehosting","roundcube","webmail"],"articleSection":["Email Servers","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/","url":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/","name":"Install And Set Up Roundcube Webmail Interface | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png","datePublished":"2013-11-19T16:12:43+00:00","dateModified":"2022-06-03T08:47:16+00:00","description":"Learn how to install and set up RoundCube webmail interface on a CentOS VPS. This guide shows a step-by-step tutorial.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/11\/install-and-set-up-roundcube-webmail-interface.png","width":400,"height":300,"caption":"Install and set-up Roundcube webmail interface"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-and-set-up-roundcube-webmail-interface\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install And Set Up Roundcube Webmail Interface"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2698","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=2698"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2698\/revisions"}],"predecessor-version":[{"id":37656,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2698\/revisions\/37656"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/2699"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=2698"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=2698"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=2698"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}