RaimLoop PostfixAdmin

------

Rainloop Postfixadmin Webmail On CentOS 7

# yum install httpd php php-mysql php-xml pcre php-common curl -y

           ------------------------------------------------------

 mkdir /var/www/html/rainloop

 cd /var/www/html/rainloop

 curl -s http://repository.rainloop.net/installer.php | php

 find . -type d -exec chmod 755 {} \;

 find . -type f -exec chmod 644 {} \;

 chown -R apache:apache .

          ----------------------------------------------

ROOT Access webmail

[root@dz-mail-server ~]# vi /etc/httpd/conf.d/mail.conf

           ------------------------------

<VirtualHost *:80>         DocumentRoot /var/www/html/rainloop         ServerName mail.worldcm.net </VirtualHost>

                 ------------OR--------------------

# vim /etc/httpd/conf.d/mail.conf         [ Add this Line]

Alias /mail /var/www/html/rainloop

<Directory /var/www/html/rainloop>

Options -Indexes

AllowOverride All

</Directory>

<Directory /var/www/html/rainloop/data>

Order Deny,Allow

Deny from All

</Directory>

[root@dz-mail-server ~]# systemctl restart httpd

RainLoop Admin Panel

URL : http://Your-IP-Address/rainloop/?admin

RainLoopwebmail

URL : http://Your-IP-Address/mail

# mysql -u root -p

CREATE DATABASE rainloop; CREATE USER 'rainloop'@'localhost' IDENTIFIED BY 'Passwd'; GRANT ALL PRIVILEGES ON rainloop.* TO 'rainloop'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; FLUSH PRIVILEGES; EXIT;

OR

mysql -u root -p create database if not exists rainloop; create user rainloop_user@localhost identified by “password”; grant all privileges on rainloop.* to rainloop_user@localhost; flush privileges; exit;

RailLoop Plugin:                                                                                                        : https://github.com/RainLoop/rainloop-webmail/tree/master/plugins

Change Password Rainloop:  postfixadmin-change-password plugin

# cd /var/www/html/rainloop/data/_data_/_default_/plugins

 

copy/paste  the postfixadmin-change-password folder in the Plugin folder

Login Admin panel:  http://192.168.80.83/rainloop/?admin#/general

WEBMAIL 

-----