Skip to content
forked from wallix/PEPS

The new open source collaboration platform

License

Notifications You must be signed in to change notification settings

trexmaster/PEPS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PEPS = open source email for teams

Innovative open source email and collaboration server with unique social features.

Main Features
Clean UX/UI
Messages
File sharing
Newsfeed
Client-side encryption
New internal message protocol
Extensible
RESTful APIs
Powered by Node.js
Data in MongoDB
Open Source

Messages View

Dashboard View

Files View

Why PEPS?

PEPS is an email, file sharing and collaboration server that intends to fullfil the need for high-quality on-premises software that could rival with top-notch SaaS products such as Gmail or Dropbox, and innovate with new features.

PEPS is built to be extensible thanks to complete APIs and we aim at creating an ecosystem of compatible apps and services.

Please read more about PEPS and its roadmap. We also have a FAQ.

PEPS source is available from a separate repository under the Affero GPL License.

Installation guide

The deployment of PEPS is using Docker to simplify the installation process. This quick guide covers the deployment of a single server, which you should have up and running in 30 minutes.

Docker containers

First install Docker on your server. If you are new to Docker, you can use Docker-ready linux instances at DigitalOcean or similar services. We recommend to have at least 2 Gb RAM in your PEPS instance.

To build the Docker containers and run on a Docker instance, just type:

# Just in case, install make
apt-get install make
# Clone the repository
git clone https://github.com/MLstate/PEPS
cd PEPS

# Configure your domain name
echo YOUR_DOMAIN_NAME > domain

# Build the containers
make build
make certificate # or install existing certificates server.key and server.crt
# Run the containers
make run

To later stop, start and remove containers, you can use:

make stop
make start
make rm

System Configuration

PEPS runs by default using HTTPS. The only major pre-requisites are that you should have installed server.crt and server.key in the $(PEPS_ETC) directory (by default /etc/peps) which is shared by several containers. If you want to start quickly with a self-signed certificate, type:

make certificate

before running make run.

Note that the same certificates are used for the HTTPS server and the SMTPS services.

PEPS Configuration

You should now be able to run the PEPS server at https://YOUR_DOMAIN_NAME and connect to it, you then need to:

  1. Set up the 'admin' password at first launch and accept the license
  2. Go to the "Users" tab in the topbar
  3. Create users, teams, and go!

Documentation

Manuals for both users and admins are available in form of the PEPS wiki:

Twitter contacts

About

The new open source collaboration platform

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 80.9%
  • JavaScript 8.1%
  • Makefile 7.3%
  • Shell 3.7%