Posts

Showing posts from December 13, 2018

Setting up a Mail server using Roundcube - Part-3 - Centos 7

Image
    The previous article shows how to configure Postfix and Dovecot for our mail server but we also need a web interface to access our mail server for handling the mail accounts. A mail client helps us to acquire this requirement, Roundcubemail .     Roundcube web mail is a PHP based application that integrate with SMTP and IMAP servers. This open-source mail client helps to handle the mail accounts on browsers.     Since Roundcubemail is a PHP based application the server should be a LAMP configured server. For LAMP installation, For Centos, Click here for RPM based machines. For Ubuntu, Click here for Debian based machines. Installing Roundcubemail,     Download the roundcube open-source package from their official site Roundcube.net $ wget https://github.com/roundcube/roundcubemail/releases/download/1.2.7/roundcubemail-1.2.7-complete.tar.gz Extract and rename the file, $ tar -xzf roundcubemail-1.2.7-complete.tar.gz $ mv roundcubemail-1.2.7 roundcu

Setting up a Mail server using Roundcube - Part-2 - Centos 7

Image
    On the previous article we have seen how to configure postfix configuration for a mail server. In this second part we will be seeing how to configure and integrate dovecot to handle mail box.     Dovecot is an open-source Internet Message Access Protocol (IMAP) and Post Office Protocol version 3 (POP3) server application. It retrieves emails from Postfix and delivers them to the relevant mailbox on the mail server.     The main config file is /etc/dovecot/dovecot.conf , all other related files are included in the main config file. To integrate IMAP with postfix we have already declared the parameters on /etc/postfix/main.cf files on the Part-I article , smtpd_sasl_auth_enable = yes smtpd_sasl_security_options = noanonymous smtpd_sasl_local_domain = $myhostname smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks, reject_unauth_destination broken_sasl_auth_clients = yes smtpd_sasl_type = dovecot smtpd_sasl_path = private/auth Changes to be up

Setting up a Mail server using Roundcube - Part-1 - Centos 7

Image
    Do you want to setup a dedicated mail server for your website, Our mail server depends on three major criteria, Postfix (SMTP) Dovecot (IMAP) Roundcube (Mail Client)     This article will show how to install and configure the above criteria for setting up a mail server for a domain. Postfix:     Postfix is a mail transfer agent (MTA) that delivers electronic mail across globe. It is also called as an SMTP server. Postifx can be integrated with spamfilters, dovecot and  complex SMTP-level access-policies     To install postfix in a rpm based machines run the below command, $ yum install postfix     The default path of the config files are found under this directory /etc/postfix.     The main.cf file is the core of your mail server configuration. The default main.cf file lists only a portion of the nearly 300 Postfix parameters. Most Postfix parameters do not need to be changed, but the flexibility is there when it’s required. The path for the main.cf f

Blog Top Sites

Blog Log