Install Rainloop on PHP 5.6 on Debian 8 LAMP

Step-1: Install LAMP on Debian

I’ve used a bash script to install LAMP. You may find it useful.

#!/bin/bash

########################################################
### This script is created by Hasn T. Emdad Rumi <h.t.emdad@gmail.com>.
### Released under GPL 2.0 licensing
### Date: 12-Aug-2016
########################################################

echo "Updating Debian Repository..."
apt-get install debian-keyring debian-archive-keyring -y
apt-get update
echo "Installing mysql serve & client..."
apt-get install mysql-server mysql-client -y

echo "Installing Apache2 and PHP5..."
apt-get install apache2 php5 libapache2-mod-php5 libapache2-mod-auth-mysql libmysqlclient15-dev php5-mysql  php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php-xml pcre php-common curl phpmyadmin -y

echo "Now rebooting services..."
/etc/init.d/apache2 restart

clear

ip_add=`ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'`

l1=" _____ _ _ _ _ _ "
l2=" |_ _| | | | | | | | |"
l3=" | | _ __ ___| |_ __ _| | | ___ __| | |"
l4=" | | | '_ \/ __| __/ _ | | |/ _ \/ _ | |"
l5=" _| |_| | | \__ \ || (_| | | | __/ (_| |_|"
l6=" |_____|_| |_|___/\__\__,_|_|_|\___|\__,_(_)"
echo "$l1"
echo "$l2"
echo "$l3"
echo "$l4"
echo "$l5"
echo "$l6"
echo "=============================================="
echo "Phpmyadmin is available at http://$ip_add/phpmyadmin/"
echo "=============================================="
echo "username: root"
echo "password: (mysql root password)"
echo "Update: innodb_file_per_table=1"

Continue reading “Install Rainloop on PHP 5.6 on Debian 8 LAMP” »

Share

Fixing Rainloop Can’t get message list error

For large mailbox when you have some mailbox having more than 100k mails in inbox, for those account you are getting error “Can’t get message list”. Here I got my fix, however can’t guarantee it works for you as well. My Rainloop version is 1.11.3.

Following settings might help to fix this issue-

Open application.ini-

nano /home/purple/web/webmail.purple.com.bd/public_html/data/_data_/_default_/configs/application.ini

In your case:

Turns off deleted message filter:

imap_message_list_hide_deleted_messages = Off

Set the number of messages in the folder that activates additional optimizations (such as disabled threads and message list sort):

imap_message_list_count_limit_trigger = 10000

Show messages over the last 12 months only.

imap_message_list_date_filter = 12
Share

CRYPTBOT Secure web-Mail

Security Purposes

 

The CryptBot Secure web-Mail™ was developed for solving the e-mail security problems, especially the attacks of junk or spam e-mails and viruses. This web-based security application also serves you with the digital identity and confidentiality of your e-mail by using the PKI (Public Key Infrastructure); digital signature and encryption, which you can digitally sign and encrypt your e-mail on the IE web browser. The standard secure web-mail consists of three types of e-mail modes which each mode is designated for each specific use as follows: Continue reading “CRYPTBOT Secure web-Mail” »
Share

Tweaking Afterlogic Webmail Pro 6

Removed the default footer texts and added up usermin module like this 😉 in inc.footer.php file-

<!– Powered by <a href="http://www.afterlogic.com/products/webmail-pro" target="_blank"> AfterLogic WebMail Pro</a><br />
Copyright &copy; 2002-2010 <a href="http://www.afterlogic.com" target="_blank">AfterLogic Corporation</a> –>

<?php
$domain= $_SERVER['SERVER_NAME'];
echo ":: CLICK BELOW LINK TO :: <BR /> <a href= https://$domain:20000>Change Password – Activation of Auto Responder – Enable Mail Forward </a>";

?>

Share