Installation

<!-- NOTES - Notes here --> <!-- GOAL ONE-LINER --> <!-- RATIONALE --> <!-- NUANCE --> <h2>Procedure</h2> <!-- NARRATIVE FORM --> <!-- Describe the function of each packages within the whole system --> <!-- STEP BY STEP --> <ol> <li> <p>Install supportive packages from the Apt-repositories to have a platform (PHP enabled mailserver) for the webmail client to run on:</p> <pre><code class="language-shell"># Install the http(web)server with PHP support apt install -y wget unzip nginx php-fpm php-curl php-dom php7.0-sqlite3</code></pre> </li> <li> <p>Manually download and unpack the Rainloop archive and assign functional user rights to the resulting directory and its contents to install the application:</p> <pre><code class="language-shell"># Download the zip archive containing the required files, unzip it, and remove the archive itself: wget -O /tmp/rainloop.zip https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip unzip -d /var/www/rainloop /tmp/rainloop.zip rm /tmp/rainloop.zip # Transfer ownership the directory and its contents to the 'www-data' user and 'group': chown -R www-data:www-data /var/www/rainloop</code></pre> </li> </ol> <!-- REFERENCES -->