neutron

Self-hosted server for the ProtonMail client

Github星跟蹤圖

neutron

Build Status
GoDoc

Self-hosted server for Protonmail client.

This project is not affiliated or supported by ProtonMail.

What is it?

Neutron is a server that will allow the ProtonMail client to be used with
backends. Several backends are available right now:

  • IMAP: this will read and store messages on your IMAP server. Received messages
    will stay as is (that is, unencrypted) but messages saved from the web client
    will be encrypted. You will login to the web client with your IMAP username
    and password.
  • SMTP: this will send messages using your SMTP server. Messages are sent
    encrypted to the server. If a recipient's public key is not found, the server
    will decrypt the message before sending it to this recipient.
  • Filesystem: settings, contacts, keys are stored on disk. Keys are always
    stored encrypted.
  • Memory: all is stored in memory and will be destroyed when the server is
    stopped.

Neutron is modular so it's easy to create new backends and handle more scenarios.

Keep in mind that Neutron is less secure than ProtonMail: most servers don't
use full-disk encryption and aren't under 1,000 meters of granite rock in
Switzerland. Also, SRP is not yet supported (#35).
If you use Neutron, make sure to donate to ProtonMail!

Install

Configuration

See config.json. You'll have to change IMAP and SMTP settings to match your
mail server config.

{
	"Memory": {
		"Enabled": true,
		"Populate": false, // Populate server with default neutron user
		"Domains": ["emersion.fr"] // Available e-mail domains
	},
	"Imap": { // IMAP server config
		"Enabled": true,
		"Hostname": "mail.gandi.net",
		"Tls": true,
		"Suffix": "@emersion.fr" // Will be appended to username when authenticating
	},
	"Smtp": { // SMTP server config
		"Enabled": true,
		"Hostname": "mail.gandi.net",
		"Port": 587,
		"Suffix": "@emersion.fr" // Will be appended to username when authenticating
	},
	"Disk": { // Store keys, contacts and settings on disk
		"Enabled": true,
		"Keys": { "Directory": "db/keys" }, // PGP keys location
		"Contacts": { "Directory": "db/contacts" },
		"UsersSettings": { "Directory": "db/settings" },
		"Addresses": { "Directory": "db/addresses" }
	}
}

Usage

To generate keys for a new user the first time, just click Sign up on the
login page and enter your IMAP credentials.

Options

  • -config: specify a custom config file
  • -help: show help

Build

Requirements:

  • Go (to build the server)
  • Node, NPM (to build the client)
# Get the code
go get -u github.com/emersion/neutron
cd $GOPATH/src/github.com/emersion/neutron

# Build the client
git submodule init
git submodule update
make build-client

# Start the server
make start

Docker

make build-docker
docker build -t neutron .
docker create -p 4000:4000 -v $PWD/config.json:/config.json -v $PWD/db:/db neutron

Backends

All backends must implement the backend interface.
The main backend interface is split into multiple other backend interfaces for
different roles: ContactsBackend, LabelsBackend and so on. This allows to
build modular backends, e.g. a MessagesBackend which stores messages on an
IMAP server with a ContactsBackend which stores contacts on a LDAP server and
a SendBackend which sends outgoing messages to a SMTP server.

Writing a backend is just a matter of implementing the necessary functions. You
can read the memory backend
to understand how to do that. Docs for the backend are available here:
https://godoc.org/github.com/emersion/neutron/backend#Backend

License

MIT

主要指標

概覽
名稱與所有者emersion/neutron
主編程語言Go
編程語言Makefile (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2016-03-06 20:45:15
推送於2018-01-07 15:30:58
最后一次提交2018-01-07 16:30:57
發布數1
最新版本名稱v1.0-beta1 (發布於 )
第一版名稱v1.0-beta1 (發布於 )
用户参与
星數514
關注者數28
派生數41
提交數246
已啟用問題?
問題數53
打開的問題數30
拉請求數3
打開的拉請求數1
關閉的拉請求數1
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?