Adingüklemek
x
Bu web sahypasy möhüm gutapjyklary ulanýar. Siziň razylygyňyz bilen statistika üçin Google Analytics gutapjyklaryny ýerleşdirýäris.

Gutapjyk syýasaty Slzii.com

Bu gutapjyk syýasaty Slzii.com, accessible from slzii.com

What Are Cookies

As is common practice with almost all professional websites this site uses cookies, which are tiny files that are downloaded to your computer, to improve your experience. This page describes what information they gather, how we use it and why we sometimes need to store these cookies. We will also share how you can prevent these cookies from being stored however this may downgrade or 'break' certain elements of the sites functionality.

How We Use Cookies

We use cookies for a variety of reasons detailed below. Unfortunately in most cases there are no industry standard options for disabling cookies without completely disabling the functionality and features they add to this site. It is recommended that you leave on all cookies if you are not sure whether you need them or not in case they are used to provide a service that you use.

Disabling Cookies

You can prevent the setting of cookies by adjusting the settings on your browser (see your browser Help for how to do this). Be aware that disabling cookies will affect the functionality of this and many other websites that you visit. Disabling cookies will usually result in also disabling certain functionality and features of the this site. Therefore it is recommended that you do not disable cookies. This Cookies Policy was created with the help of the Cookies Policy Generator.

The Cookies We Set

  • Account related cookies

    If you create an account with us then we will use cookies for the management of the signup process and general administration. These cookies will usually be deleted when you log out however in some cases they may remain afterwards to remember your site preferences when logged out.

  • Login related cookies

    We use cookies when you are logged in so that we can remember this fact. This prevents you from having to log in every single time you visit a new page. These cookies are typically removed or cleared when you log out to ensure that you can only access restricted features and areas when logged in.

  • Site preferences cookies

    In order to provide you with a great experience on this site we provide the functionality to set your preferences for how this site runs when you use it. In order to remember your preferences we need to set cookies so that this information can be called whenever you interact with a page is affected by your preferences.

Third Party Cookies

In some special cases we also use cookies provided by trusted third parties. The following section details which third party cookies you might encounter through this site.

  • This site uses Google Analytics which is one of the most widespread and trusted analytics solution on the web for helping us to understand how you use the site and ways that we can improve your experience. These cookies may track things such as how long you spend on the site and the pages that you visit so we can continue to produce engaging content.

    For more information on Google Analytics cookies, see the official Google Analytics page.

  • Third party analytics are used to track and measure usage of this site so that we can continue to produce engaging content. These cookies may track things such as how long you spend on the site or pages you visit which helps us to understand how we can improve the site for you.

  • From time to time we test new features and make subtle changes to the way that the site is delivered. When we are still testing new features these cookies may be used to ensure that you receive a consistent experience whilst on the site whilst ensuring we understand which optimisations our users appreciate the most.

  • We also use social media buttons and/or plugins on this site that allow you to connect with your social network in various ways. For these to work the following social media sites including; {List the social networks whose features you have integrated with your site?:12}, will set cookies through our site which may be used to enhance your profile on their site or contribute to the data they hold for various purposes outlined in their respective privacy policies.

More Information

Hopefully that has clarified things for you and as was previously mentioned if there is something that you aren't sure whether you need or not it's usually safer to leave cookies enabled in case it does interact with one of the features you use on our site.

For more general information on cookies, please read the Cookies Policy article.

However if you are still looking for more information then you can contact us through one of our preferred contact methods:

  • By visiting this link: https://www.slzii.com/contact

Install and Setup Roundcube Webmail on Debian 12/11/10

February 20, 2026 — Step-by-step guide for the latest stable version 1.6.13

Roundcube is a free, open-source, browser-based IMAP webmail client with a modern interface. This guide shows how to install it manually from source on Debian 12 (Bookworm), 11 (Bullseye), or 10 (Buster), using Apache2, MariaDB/MySQL, and PHP 8.x.

Prerequisites: A running mail server (Postfix for SMTP, Dovecot for IMAP), root/SSH access, domain/subdomain pointed to your server, and basic firewall (UFW/iptables) allowing HTTP/HTTPS.

Step 1: Update System and Install Dependencies

sudo apt update && sudo apt upgrade -y
sudo apt install apache2 mariadb-server php php-mysql php-gd php-xml php-mbstring php-intl php-zip php-curl php-imap php-json php-pear composer unzip wget -y

For Debian 12, PHP is 8.2 by default. For older versions, consider adding Ondřej Surý's PPA if needed for newer PHP.

Step 2: Secure MariaDB and Create Database

sudo mysql_secure_installation

Then create Roundcube database:

sudo mysql -u root -p
CREATE DATABASE roundcube CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'roundcube'@'localhost' IDENTIFIED BY 'strong_password_here';
GRANT ALL PRIVILEGES ON roundcube.* TO 'roundcube'@'localhost';
FLUSH PRIVILEGES;
EXIT;

Step 3: Download and Extract Roundcube 1.6.13

cd /tmp
wget https://github.com/roundcube/roundcubemail/releases/download/1.6.13/roundcubemail-1.6.13-complete.tar.gz
tar xzf roundcubemail-1.6.13-complete.tar.gz
sudo mv roundcubemail-1.6.13 /var/www/roundcube
sudo chown -R www-data:www-data /var/www/roundcube
sudo chmod -R 775 /var/www/roundcube/{temp,logs}
Always verify the GPG signature from https://roundcube.net/download for security.

Step 4: Import Database Schema

sudo mysql roundcube < /var/www/roundcube/SQL/mysql.initial.sql

Step 5: Configure Apache Virtual Host

Create /etc/apache2/sites-available/roundcube.conf:

<VirtualHost *:80>
    ServerName webmail.yourdomain.com
    DocumentRoot /var/www/roundcube

    <Directory /var/www/roundcube>
        Options +FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/roundcube_error.log
    CustomLog ${APACHE_LOG_DIR}/roundcube_access.log combined
</VirtualHost>
sudo a2ensite roundcube.conf
sudo a2enmod rewrite headers expires deflate
sudo systemctl restart apache2

Step 6: Configure Roundcube

sudo cp /var/www/roundcube/config/config.inc.php.sample /var/www/roundcube/config/config.inc.php
sudo nano /var/www/roundcube/config/config.inc.php

Key settings to edit:

$config['db_dsnw'] = 'mysql://roundcube:strong_password_here@localhost/roundcube';
$config['default_host'] = 'ssl://localhost';          // or your IMAP server, e.g. 'ssl://mail.yourdomain.com'
$config['default_port'] = 993;
$config['smtp_server'] = 'tls://localhost';           // or 'tls://mail.yourdomain.com'
$config['smtp_port'] = 587;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['des_key'] = 'random-24-char-string-here==';  // Generate a secure 24-char key
$config['plugins'] = ['archive', 'zipdownload', 'password', ...]; // Add desired plugins

Step 7: Run the Installer (Browser-Based)

Open in browser: http://webmail.yourdomain.com/installer

  • Check environment → Fix any red items.
  • Create config → Paste into config.inc.php if needed.
  • Initialize database (if not done manually).
  • Test IMAP/SMTP connection.
Security: After success, remove installer:
sudo rm -rf /var/www/roundcube/installer
And set $config['enable_installer'] = false; in config.inc.php.

Step 8: Access Roundcube & Final Security

Go to http://webmail.yourdomain.com (or HTTPS) and log in with your email credentials.

  • Enable HTTPS with Let's Encrypt: sudo apt install certbot python3-certbot-apache; sudo certbot --apache
  • Protect directories: Deny access to /config, /temp, /logs in .htaccess or vhost.
  • Update regularly: Watch for security releases like 1.6.13.

This guide is based on official Roundcube docs, community tutorials (kifarunix, linuxbabe), and best practices as of February 2026. Always backup before changes. For production, consider Nginx or containerized setups.

0.0058739185333252


Makalalar
Makalalar

Makalalar

February 20, 2026 — Step-by-step guide for the latest stable version 1.6.13

Rou...
Makalalar