<?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>RainLoop Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/rainloop/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 27 Oct 2020 19:24:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install RainLoop (web-based email client) on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-rainloop-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-rainloop-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 28 Oct 2020 03:06:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[RainLoop]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=24843</guid>

					<description><![CDATA[<p>Email plays an important role in companies and on a personal level. Sometimes it is convenient to have a personal email server, but sometimes it is not. So for this, we would use the web interface of each of the email services. In general, all these web clients fulfill their purpose and there is no [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rainloop-ubuntu-20-04/">How to install RainLoop (web-based email client) on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Email plays an important role in companies and on a personal level. Sometimes it is convenient to have a personal email server, but sometimes it is not. So for this, we would use the web interface of each of the email services. In general, all these web clients fulfill their purpose and there is no need for a third party client. Although sometimes it is necessary to have an alternative to them, there are desktop clients such as Thunderbird but there are also web-based. That’s why today I’ll show you how to install RainLoop on Ubuntu 20.04.</p>



<p><a href="http://rainloop.net/" target="_blank" rel="noreferrer noopener">RainLoop</a> is a modern email client created in <a href="https://www.osradar.com/how-to-install-php-7-3-on-debian-9/" target="_blank" rel="noreferrer noopener">PHP</a>. It is quite lightweight and does not consume too many resources. So we’re talking about a web-based client. It is compatible with many email providers, but also with its own mail server. So we have a new option to handle mail quickly and easily. RainLoop is open source since it is released under the <a href="https://www.rainloop.net/licensing/" target="_blank" rel="noreferrer noopener">GNU AFFERO license</a>. However, it has an enterprise version with more features focused on businesses.</p>



<p>In the community version these are some of its features:</p>



<ul><li>Modern user interface.</li><li>Complete support of IMAP and SMTP protocols including SSL and STARTTLS.<br>Extending functionality with plugins installed through the admin panel.</li><li>Perfect rendering of complex HTML mails.</li><li>Drag’n’drop for mails and attachments.</li><li>Keyboard shortcuts support.</li><li>Autocompletion of e-mail addresses</li></ul>



<p>In addition, the application has integration to popular services such as Dropbox, Twitter, Google, and Facebook.</p>



<p>So, let us start to install RainLoop.</p>



<h2>Install Rainloop on Ubuntu 20.04</h2>



<h3>1.- Install LAMP on Ubuntu 20.04</h3>



<p>Rainloop is a web application that requires a ready and functional webserver to run. The requirements are few so it will not overload the server and we will notice problems.</p>



<p>So, read our post about it.</p>



<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install LAMP on Ubuntu 20.04?</a></p>



<pre class="wp-block-preformatted">And these modules php-curl php-json php-iconv php-xml php-dom php-mysql php-pdo libapache2-mod-php</pre>



<h3>2.- Create a new database and user for Rainloop (Optional)</h3>



<p>By default, Rainloop has contact support, however, to enable the use and management of contacts, it requires a relational database manager such as MariaDB or MySQL.</p>



<p>So, if you already have it and want to add support to contacts, just create a database and a new user.</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p</pre>



<pre class="wp-block-preformatted">CREATE DATABASE rainloop;
GRANT ALL PRIVILEGES ON rainloop.* TO 'user'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit;</pre>



<p>Now you can continue.</p>



<h3>3.- Download and install Rainloop on Ubuntu 20.04</h3>



<p>Now you can download RainLoop. This download will be done from the <code>/tmp/</code> folder and we will use <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">the wget command</a>.</p>



<pre class="wp-block-preformatted">cd /tmp/<br>wget http://www.rainloop.net/repository/webmail/rainloop-community-latest.zip</pre>



<p>Then create a folder for all the content of RainLoop.</p>



<pre class="wp-block-preformatted">sudo mkdir /var/www/rainloop</pre>



<p>Once the package is downloaded, decompress it with the <code>unzip</code> command.</p>



<p>If you don&#8217;t have unzip, install it:</p>



<pre class="wp-block-preformatted">sudo apt install unzip</pre>



<p>Now you can decompress the file.</p>



<pre class="wp-block-preformatted">sudo unzip rainloop-community-latest.zip -d /var/www/rainloop</pre>



<p>The next step is to set the permissions on the folder where RainLoop is located as well as to change the owner of the folder to www-data</p>



<pre class="wp-block-preformatted">cd /var/www/rainloop<br>sudo find . -type d -exec chmod 755 {} \;<br>sudo find . -type f -exec chmod 644 {};<br>sudo chown -R www-data:www-data .</pre>



<p>Then, we must create a new <a href="https://www.osradar.com/how-to-create-apache-virtual-hosts-on-ubuntu-20-04-debian-10-4/" target="_blank" rel="noreferrer noopener">Virtualhost</a> for Rainloop. Remember that we are using Apache as the web server.</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/rainloop.conf</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80&gt;
ServerName yourdomain.com
DocumentRoot "/var/www/rainloop/"

ErrorLog "/var/log/apache2/rainloop_error_log"
TransferLog "/var/log/apache2/rainloop_access_log"

      &lt;Directory /&gt;
               Options +Indexes +FollowSymLinks +ExecCGI
               AllowOverride All
               Order deny,allow
               Allow from all
               Require all granted
       &lt;/Directory&gt;

       &lt;Directory /var/www/rainloop/data&gt;
           Options -Indexes
           Deny from all
        &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="950" height="386" src="https://www.osradar.com/wp-content/uploads/2020/10/1-15.png" alt="1.- Creating a new virtualhost for Rainloop" class="wp-image-24846" srcset="https://www.osradar.com/wp-content/uploads/2020/10/1-15.png 950w, https://www.osradar.com/wp-content/uploads/2020/10/1-15-300x122.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/1-15-768x312.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/1-15-696x283.png 696w" sizes="(max-width: 950px) 100vw, 950px" /><figcaption>1.- Creating a new virtualhost for Rainloop</figcaption></figure>



<p>Replace <code>ServerName</code> with your own. Then save the changes and close the text editor.</p>



<p>To enable the new Virtualhost, execute the following commands:</p>



<pre class="wp-block-preformatted">sudo a2ensite rainloop.conf<br>sudo systemctl reload apache2</pre>



<p>Now we will be able to access it.</p>



<h3>4.- Access to RainLoop</h3>



<p>Now open your web browser and go to <code>http://your-server</code> and you will be shown the login window.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/10/2-15-1024x502.png" alt="2.- Rainloop login page" class="wp-image-24847" srcset="https://www.osradar.com/wp-content/uploads/2020/10/2-15-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/10/2-15-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/2-15-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/2-15-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/10/2-15-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/10/2-15.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Rainloop login page</figcaption></figure>



<p>This is the address you have to use to access your mail with your accounts, but first, you have to access the program&#8217;s configuration panel.</p>



<p>To do this, go to <code>http://your-server/?admin</code> and there you will see the login screen to the control panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/10/3-13-1024x502.png" alt="3.- Rainloop admin login screen" class="wp-image-24848" srcset="https://www.osradar.com/wp-content/uploads/2020/10/3-13-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/10/3-13-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/3-13-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/3-13-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/10/3-13-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/10/3-13.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Rainloop admin login screen</figcaption></figure>



<p><strong>Log in with the default credentials &#8220;admin&#8221; and &#8220;12345&#8221; and you will see the control panel.</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/10/4-10-1024x502.png" alt="4.- Rainloop settings" class="wp-image-24849" srcset="https://www.osradar.com/wp-content/uploads/2020/10/4-10-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/10/4-10-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/4-10-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/4-10-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/10/4-10-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/10/4-10.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Rainloop settings</figcaption></figure>



<p>There you can configure the language, appearance, and so on. You will also see a warning that you need to change your default password.</p>



<p>If you want to enable contacts, go to the <em>Contacts</em> tab and configure it with the database settings.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/10/5-7-1024x502.png" alt="5.- Contacs section" class="wp-image-24850" srcset="https://www.osradar.com/wp-content/uploads/2020/10/5-7-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/10/5-7-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/5-7-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/5-7-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/10/5-7-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/10/5-7.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Contacs section</figcaption></figure>



<p>And in the <em>Domains</em> section, you can add your email accounts.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/10/6-5-1024x502.png" alt="6.- Configuring Rainloop on Ubuntu 20.04" class="wp-image-24851" srcset="https://www.osradar.com/wp-content/uploads/2020/10/6-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/10/6-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/10/6-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/10/6-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/10/6-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/10/6-5.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Configuring Rainloop on Ubuntu 20.04</figcaption></figure>



<p>Now it is ready for you to enjoy it.</p>



<h2>Conclusion</h2>



<p>RainLoop provides us with a modern interface for our email. It is especially useful when we have a personal mail server running.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram channel</a> and our <a href="https://www.facebook.com/osradar" target="_blank" rel="noreferrer noopener">Facebook page</a>. Also, buy us a coffee 😉</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rainloop-ubuntu-20-04/">How to install RainLoop (web-based email client) on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-rainloop-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install RainLoop a web-based email client on Ubuntu 18.04</title>
		<link>https://www.osradar.com/install-rainloop-a-web-based-email-client-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-rainloop-a-web-based-email-client-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 16 Mar 2019 15:55:07 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Mail server]]></category>
		<category><![CDATA[RainLoop]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11443</guid>

					<description><![CDATA[<p>Email plays an important role in companies and on a personal level. Sometimes it is convenient to have a personal email server, but sometimes it is not. So for this, we would use the web interface of each of the email services. In general, all these web clients fulfill their purpose and there is no [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rainloop-a-web-based-email-client-on-ubuntu-18-04/">Install RainLoop a web-based email client on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Email plays an important role in companies and on a personal level. Sometimes it is convenient to have a personal email server, but sometimes it is not. So for this, we would use the web interface of each of the email services. In general, all these web clients fulfill their purpose and there is no need for a third party client. Although sometimes it is necessary to have an alternative to them, there are desktop clients such as Thunderbird but there are also web-based. That&#8217;s why today I&#8217;ll show you how to install RainLoop on Ubuntu 18.04.</p>
<p><a href="http://rainloop.net/" target="_blank" rel="noopener noreferrer">RainLoop</a> is a modern email client created in <a href="https://www.osradar.com/how-to-install-php-7-3-on-debian-9/" target="_blank" rel="noopener noreferrer">PHP</a>. It is quite lightweight and does not consume too many resources. So we&#8217;re talking about a web-based client. It is compatible with many email providers, but also with its own mail server. So we have a new option to handle mail quickly and easily. RainLoop is open source since it is released under the <a href="https://www.rainloop.net/licensing/" target="_blank" rel="noopener noreferrer">GNU AFFERO license</a>. However, it has an enterprise version with more features focused on businesses.</p>
<p>In the community version these are some of its features:</p>
<ul>
<li>Modern user interface.</li>
<li>Complete support of IMAP and SMTP protocols including SSL and STARTTLS.<br />
Extending functionality with plugins installed through the admin panel.</li>
<li>Perfect rendering of complex HTML mails.</li>
<li>Drag&#8217;n&#8217;drop for mails and attachments.</li>
<li>Keyboard shortcuts support.</li>
<li>Autocompletion of e-mail addresses</li>
</ul>
<p>In addition, the application has integration to popular services such as Dropbox, Twitter, Google, and Facebook.</p>
<p>So, let us start to install RainLoop.</p>
<h1>1. Install Apache and PHP</h1>
<p>Being a web-based application, the first thing we have to do is install Apache and <a href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/" target="_blank" rel="noopener noreferrer">PHP</a> for everything to work. So open a terminal or connect to your server using SSH and run the following command:</p>
<pre>:~$ sudo apt install apache2 php php-curl php-json php-iconv php-xml php-dom php-mysql php-pdo libapache2-mod-php</pre>
<p><figure id="attachment_11444" aria-describedby="caption-attachment-11444" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11444" src="https://www.osradar.com/wp-content/uploads/2019/03/1-9.png" alt="1.- Install Apache and PHP" width="1365" height="459" srcset="https://www.osradar.com/wp-content/uploads/2019/03/1-9.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-300x101.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-768x258.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-1024x344.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-696x234.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-1068x359.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/1-9-1249x420.png 1249w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11444" class="wp-caption-text">1.- Install Apache and PHP</figcaption></figure></p>
<p>Once the process is complete. PHP and Apache will be installed and ready to run. Then, it is a good idea to enable and check the status of the service.</p>
<pre>:~$ sudo systemctl enable apache2
:~$ sudo systemctl status apache2</pre>
<p><figure id="attachment_11445" aria-describedby="caption-attachment-11445" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11445" src="https://www.osradar.com/wp-content/uploads/2019/03/2-9.png" alt="2.- The Apache2 service" width="1365" height="445" srcset="https://www.osradar.com/wp-content/uploads/2019/03/2-9.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-768x250.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-1024x334.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-696x227.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-1068x348.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/2-9-1288x420.png 1288w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11445" class="wp-caption-text">2.- The Apache2 service</figcaption></figure></p>
<h1>2. Install MariaDB</h1>
<p>Now, you need to install a database manager. This step is optional because RainLoop does not require it. However, it is good to do so in order to extend its functionality.</p>
<p>So run the following command:</p>
<pre>:~$ sudo apt install mariadb-server</pre>
<p><figure id="attachment_11446" aria-describedby="caption-attachment-11446" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11446" src="https://www.osradar.com/wp-content/uploads/2019/03/3-8.png" alt="3.- Install Mariadb" width="1365" height="508" srcset="https://www.osradar.com/wp-content/uploads/2019/03/3-8.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-768x286.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-1024x381.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-696x259.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-1068x397.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/3-8-1129x420.png 1129w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11446" class="wp-caption-text">3.- Install MariaDB</figcaption></figure></p>
<p>Then, set a root password using the <code>mysql_secure_installation</code> script.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p><figure id="attachment_11447" aria-describedby="caption-attachment-11447" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11447" src="https://www.osradar.com/wp-content/uploads/2019/03/4-6.png" alt="4.- Configuring MariaDB" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/4-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/4-6-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11447" class="wp-caption-text">4.- Configuring MariaDB</figcaption></figure></p>
<p>After defining the <a href="https://www.osradar.com/reset-the-mysql-mariadb-root-password/" target="_blank" rel="noopener noreferrer">root password</a>, you will have to answer other configuration questions. You can answer whatever you want, in this post, I will answer like this: Y, N, Y, Y.</p>
<h1>3. Install RainLoop</h1>
<p>It is now possible to install RainLoop. First of all, you have to download it using wget. So run the following command:</p>
<pre>:~$ cd /tmp/
:~$ wget http://www.rainloop.net/repository/webmail/rainloop-community-latest.zip</pre>
<p><figure id="attachment_11448" aria-describedby="caption-attachment-11448" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11448" src="https://www.osradar.com/wp-content/uploads/2019/03/5-4.png" alt="5.- Download and install RainLoop" width="1365" height="295" srcset="https://www.osradar.com/wp-content/uploads/2019/03/5-4.png 1365w, https://www.osradar.com/wp-content/uploads/2019/03/5-4-300x65.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/5-4-768x166.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/5-4-1024x221.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/5-4-696x150.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/5-4-1068x231.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11448" class="wp-caption-text">5.- Download and install RainLoop</figcaption></figure></p>
<p>Next, you have to create a new folder for RainLoop and then, decompress it.</p>
<pre>:~$ sudo mkdir /var/www/rainloop
:~$ sudo unzip rainloop-community-latest.zip -d /var/www/rainloop</pre>
<p><figure id="attachment_11451" aria-describedby="caption-attachment-11451" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11451" src="https://www.osradar.com/wp-content/uploads/2019/03/6-333.png" alt="6.- Decompress the file" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/6-333.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/6-333-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11451" class="wp-caption-text">6.- Decompress the file</figcaption></figure></p>
<p>If you do not have unzip installed, you just need to install it with <code>sudo apt install unzip</code>.</p>
<p>It is now necessary to set the correct permissions for the RainLoop file folder.</p>
<pre>:~$ cd /var/www/rainloop
:~$ sudo find . -type d -exec chmod 755 {} \;
:~$ sudo find . -type f -exec chmod 644 {} \;</pre>
<p>Now, it is necessary to change the owner of the folder so that there are no problems in which the application can handle it.</p>
<pre>:~$ sudo chown -R www-data:www-data .</pre>
<p>The next step is to create a new <a href="https://www.osradar.com/how-to-configure-an-apache-virtual-host-on-debian-9/" target="_blank" rel="noopener noreferrer">VirtualHost</a> in Apache so that RainLoop can run properly. In addition, this will considerably improve the way we access the application.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/rainloop.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
  ServerName yourdomain.com
  DocumentRoot "/var/www/rainloop/"

  ErrorLog "/var/log/apache2/rainloop_error_log"
  TransferLog "/var/log/apache2/rainloop_access_log"

  &lt;Directory /&gt;
    Options +Indexes +FollowSymLinks +ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all
    Require all granted
  &lt;/Directory&gt;

  &lt;Directory /var/www/rainloop/data&gt;
    Options -Indexes
    Deny from all
  &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_11452" aria-describedby="caption-attachment-11452" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11452" src="https://www.osradar.com/wp-content/uploads/2019/03/7-2.png" alt="7.- Creating a new virtual host for RainLoop" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/7-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/7-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11452" class="wp-caption-text">7.- Creating a new virtual host for RainLoop</figcaption></figure></p>
<p>Then, save the file and close it. To apply the changes, you need to enable the new virtualhost and then restart Apache.</p>
<pre>:~$ sudo a2ensite rainloop.conf
:~$ sudo systemctl reload apache2</pre>
<h1>4. Set up RainLoop using the web interface</h1>
<p>Now, you can access the RainLoop address from your web browser. Go to http://your-server/?admin to access to the admin panel.</p>
<p><figure id="attachment_11453" aria-describedby="caption-attachment-11453" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11453" src="https://www.osradar.com/wp-content/uploads/2019/03/8-1.png" alt="8.- Default admin page" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/8-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11453" class="wp-caption-text">8.- Default admin page</figcaption></figure></p>
<p>The default credentials are admin and 12345.</p>
<p>Once you have logged in, you will be able to change your password and review all the settings you want.</p>
<p><figure id="attachment_11454" aria-describedby="caption-attachment-11454" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11454" src="https://www.osradar.com/wp-content/uploads/2019/03/9-2.png" alt="9.- RainLoop admin panel" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/9-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/9-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11454" class="wp-caption-text">9.- RainLoop admin panel</figcaption></figure></p>
<p>For example, it is recommended to change the default administrative password.</p>
<p><figure id="attachment_11455" aria-describedby="caption-attachment-11455" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11455" src="https://www.osradar.com/wp-content/uploads/2019/03/10-3.png" alt="10.- Change the password" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/10-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/10-3-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11455" class="wp-caption-text">10.- Change the password</figcaption></figure></p>
<p>In the section of domains, you can configure the domains you want. Whether it&#8217;s a personal one or a more popular one like Gmail.</p>
<p><figure id="attachment_11456" aria-describedby="caption-attachment-11456" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11456" src="https://www.osradar.com/wp-content/uploads/2019/03/11-2.png" alt="11.- Domain section" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/11-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/11-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11456" class="wp-caption-text">11.- Domain section</figcaption></figure></p>
<p><figure id="attachment_11457" aria-describedby="caption-attachment-11457" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11457" src="https://www.osradar.com/wp-content/uploads/2019/03/12-2.png" alt="12 domain" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/12-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/12-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11457" class="wp-caption-text">12 domain</figcaption></figure></p>
<p>Next, go to the main screen of RainLoop and put your credentials.</p>
<h1>Conclusion</h1>
<p>RainLoop provides us with a modern interface for our email. It is especially useful when we have a personal mail server running.</p>
<p>Share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rainloop-a-web-based-email-client-on-ubuntu-18-04/">Install RainLoop a web-based email client on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-rainloop-a-web-based-email-client-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
