All Projects → afterlogic → Webmail Lite 8

afterlogic / Webmail Lite 8

Licence: agpl-3.0
Open-source webmail script for existing IMAP server

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Webmail Lite 8

Laravel Messenger
Simple user messaging package for Laravel
Stars: ✭ 2,140 (+928.85%)
Mutual labels:  composer
Alidayu
阿里大于(鱼)API接口-SDK
Stars: ✭ 186 (-10.58%)
Mutual labels:  composer
Ad Hoc Email Server
An ad-hoc disposable temporary mail server. Create and use ad hoc disposable mailboxes for testing or any other purpose.
Stars: ✭ 201 (-3.37%)
Mutual labels:  webmail
Composer Preload
Preload your sweet sweet code to opcache with a composer command, making your code faster to run.
Stars: ✭ 173 (-16.83%)
Mutual labels:  composer
Wpstarter
Easily bootstrap whole site Composer packages for WordPress.
Stars: ✭ 182 (-12.5%)
Mutual labels:  composer
Nebula
Nebula is a minimalistic and easy to use administration tool for Laravel applications, made with Laravel, Alpine.js, and Tailwind CSS.
Stars: ✭ 190 (-8.65%)
Mutual labels:  composer
Imall
基于Laravel5.2,Vue.js1.0的微信商城,用于熟悉 Laravel、Vuejs、Webpack、Gulp 的结合使用,已不维护及更新。(1MB单核基础服务器,浏览请耐心等待图片加载...)
Stars: ✭ 168 (-19.23%)
Mutual labels:  composer
Openapi Sdk Php Client
Official repository of the Alibaba Cloud Client for PHP
Stars: ✭ 206 (-0.96%)
Mutual labels:  composer
Plus
💝The Plus (ThinkSNS+) is a powerful, easy-to-develop social system built with Laravel.
Stars: ✭ 2,148 (+932.69%)
Mutual labels:  composer
Wordpress Heroku
This project is a template for installing and running WordPress 5.x on Heroku.
Stars: ✭ 198 (-4.81%)
Mutual labels:  composer
Package Builder
📦 A composer package builder.
Stars: ✭ 174 (-16.35%)
Mutual labels:  composer
Docker
Composer in Docker
Stars: ✭ 180 (-13.46%)
Mutual labels:  composer
Laravel Shield
A HTTP basic auth middleware for Laravel
Stars: ✭ 193 (-7.21%)
Mutual labels:  composer
Security Checker
PHP frontend for security.symfony.com
Stars: ✭ 2,036 (+878.85%)
Mutual labels:  composer
Ourls
url shorten service/短网址服务
Stars: ✭ 203 (-2.4%)
Mutual labels:  composer
Securityadvisories
🔐 Security advisories as a simple composer exclusion list, updated daily
Stars: ✭ 2,279 (+995.67%)
Mutual labels:  composer
Laravel Deployment
📗[WIP] 追求质量的 Laravel 应用部署上线课程。
Stars: ✭ 190 (-8.65%)
Mutual labels:  composer
Bitrix Project
Заготовка 1C Bitrix проекта: автозагрузка, композер, базовые ООП компоненты, миграции, модели, современный фронтенд стек, инструменты для деплоя.
Stars: ✭ 207 (-0.48%)
Mutual labels:  composer
Magento Composer Installer
Composer installer for Magento modules
Stars: ✭ 204 (-1.92%)
Mutual labels:  composer
Composer Patches
Applies a patch from a local or remote file to any package that is part of a given composer project. Patches can be defined both on project and on package level. Optional support for patch versioning, sequencing, custom patch applier configuration and composer command for testing/troubleshooting patches.
Stars: ✭ 196 (-5.77%)
Mutual labels:  composer

Build Status

Afterlogic WebMail Lite 8

Open-source webmail script for your existing IMAP server.

Afterlogic WebMail Lite 8: Message List

You can download WebMail Lite 8 from our website, unzip the package and configure the installation as described at this documentation page. This is a simple approach convenient for those who simply wish to install the product. But if you're looking for building and adding custom modules or skins, installing from Git repository is recommended per the instructions below.

Installation instructions

During installation process you will need:

  1. Download and unpack the latest version of WebMail Lite 8 into your installation root directory https://github.com/afterlogic/webmail-lite-8/archive/latest.zip

We're assuming that you wish to install the latest stable version of the product. If you're looking for the latest code (e.g., to contribute changes), the following steps needs to be taken:

  • Instead of unpacking the archive, clone the repository into the installation directory:
git clone https://github.com/afterlogic/webmail-lite-8.git INSTALL_FOLDER_PATH
  • change modules' versions in composer.json file to "dev-master"
  • adjust composer.json configuration file so that sources are preferred:
{
	"config": {
		"minimum-stability": "dev",
		"preferred-install": {
			"afterlogic/*": "source"
		}
	}.......
  1. Download composer.phar from https://getcomposer.org/composer-1.phar

  2. Start the composer installation process by running the following from the command line:

    php composer.phar install
    

    NB: It is strongly advised to run composer as non-root user. Otherwise, third-party scripts will be run with root permissions and composer issues a warning that it's not safe. We recommend running the script under the same user web server runs under.

  3. Set up initial config values

    php composer.phar run pre-config
    
  4. Next, you need to build static files for the current module set.

    First of all, install all npm modules via

    npm install
    

    and install gulp-cli module globaly

    npm install --global gulp-cli
    
  5. Now you can build static files

    gulp styles --themes Default,DeepForest,Funny,Sand
    
    gulp js:min
    
  6. Now you are ready to open a URL pointing to the installation directory in your favorite web browser.

  7. Upon installing the product, you'll need to configure your installation.

IMPORTANT:

  1. Make sure data directory is writable by the web server. For example:
chown -R www-data:www-data /var/www/webmail/data
  1. It is strongly recommended to runs the product via https. If you run it via http, the majority of features will still be available, but some functionality aspects, such as authentication with Google account, won't work.

To enable automatic redirect from http to https, set RedirectToHttps to true in data/settings/config.json file.

Protecting data directory:

All configuration files of the application and user data are stored in data directory, so it's important to protect data directory to make sure that nobody can access that directory over the Internet directly.

Licensing

This product is licensed under AGPLv3. The modules and other packages included in this product as dependencies are licensed under their own licenses.

NB: Afterlogic Aurora modules which have dual licensing are licensed under AGPLv3 within this product.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].