A Mail-in-a-Box with extra capabilities and more customizability. Not just for power users!
Find a file
2021-11-17 22:57:46 +00:00
api v55.0 2021-10-19 21:12:17 +01:00
conf nginx: Overhaul upstream directives (#38) 2021-11-17 22:41:36 +00:00
management Move from 'master' to 'main' 2021-11-17 22:57:46 +00:00
setup Update to above: Bail only at the second failure. 2021-11-17 22:55:18 +00:00
tests Replace HMAC-based session API keys with tokens stored in memory in the daemon process 2021-09-06 09:23:58 -04:00
tools Move from 'master' to 'main' 2021-11-17 22:57:46 +00:00
.editorconfig Fix status check colors, add SMTP relay stub 2020-04-13 01:16:23 +01:00
.gitignore Automatically import existing local CA cerificates 2021-02-01 02:20:38 +00:00
CHANGELOG.md Version 55 2021-10-18 20:40:51 -04:00
CODE_OF_CONDUCT.md some improvements suggested by the community 2016-08-15 20:09:05 -04:00
CONTRIBUTING.md Add some development instructions to CONTRIBUTING.md (#1348) 2018-02-05 08:41:19 -05:00
LICENSE add CC0 1.0 Universal in LICENSE 2014-04-23 15:49:23 -04:00
README.md Move from 'master' to 'main' 2021-11-17 22:57:46 +00:00
security.md fail2ban now supports ipv6 (#2015) 2021-08-22 14:13:58 -04:00
Vagrantfile (vagrant) Permanently enable IPv6 on loopback 2021-08-23 02:10:34 +01:00

Power Mail-in-a-Box

Installation (current version: v55.0)

Power Mail-in-a-Box (a fork of Mail-in-a-Box) is a complete pre-configured mail appliance, quickly deployable in a matter of minutes.

It's main difference to the main project is focused on ad-hoc, advanced features. While Mail-in-a-Box caters to beginners by providing sane configurations, Power Mail-in-a-Box also attempts to cater to advanced users that want deeper levels of customization.

Features

  • Configure Power Mail-in-a-Box to use an external SMTP relay;
  • Brand new admin panel (with up-to-date libraries);
  • Perform backups right away from the admin panel;
  • Account quotas support (thanks to @jrsupplee!)
  • Customize TTL's for custom DNS records;
  • Publish OpenPGP keys authoritatively via a WKD server;
    • In the future: Allow usage of OpenPGP keys to encrypt backups;
  • Per-domain nginx configuration;

Goals

  • Easy of use - deployment shouldn't take too many technical details to understand. Power Mail-in-a-Box already comes with default configurations which should be good for most users.
  • Privacy, security and independence - keeping your mail safe from the big companies.
  • Accessible customizability - bring the features closer to the people instead of tucking them away in configuration files.
  • Customizability potential - allow for deep customization by power users.
  • Concentration - all the services you need in just one box.
  • Support - support a wide range of operating systems when possible, without compromising the codebase as a whole.
  • Lightweight - should be able to run even with very limited resources.

Non-goals

  • Scalability - this appliance is geared towards individuals and small/mid-sized organizations. If your use case is mission-critical it probably is a better idea to shop for a product that provides support.
  • Portability - I didn't figure out yet a way to easily transition from Mail-in-a-Box to Power Mail-in-a-Box.

Minimum Pre-requisites

The machine this appliance will be installed on needs to have the following specs (or better). Most cloud providers are able to provide VM's that satisfy these specs at relatively low cost.

These specs depend on the number of users being served and/or amount of traffic

  • 1 CPU core;
  • 512MB of RAM (at least 1GB is recommended);
  • 10GB of disk;
  • One of the following operating systems:
    • Debian GNU/Linux 10 (buster)
    • Debian GNU/Linux 11 (bullseye)
    • Ubuntu LTS 20.04 (Focal Fossa)
    • Ubuntu LTS 18.04 (Bionic Beaver) is not supported

These network requirements are usually not provided by residential ISP's. They are not strictly required for Power Mail-in-a-Box to install, but it will take more work to get it running as intended.

  • Static, public IPv4 (most residential connections do not provide static addresses);
    • If the machine is behind a NAT, manual configuration might be required.
  • Reverse DNS for that IPv4 address (Caution: some cloud providers do not provide this);
  • You should be able to edit the firewall for that address. In particular, outbound port 25 should not be blocked.

Firewall

If the machine is behind an external firewall or NAT, the following inbound ports SHOULD be open to external traffic:

  • 25/tcp
  • 53/tcp
  • 53/udp
  • 80/tcp
  • 443/tcp
  • 465/tcp
  • 587/tcp
  • 993/tcp
  • 995/tcp
  • 4190/tcp

Installation

  1. Power Mail-in-a-Box uses ufw to configure it's internal firewall. If your cloud provider requires you to use another tool (usually it does not, but *cough* Oracle Cloud *cough*), you can follow these instructions.

  2. Make sure curl is installed and locales are configured correctly - you'll want to make sure the primary locale is set to en_US.UTF-8:

sudo apt install curl locales
sudo dpkg-reconfigure locales
  1. Run the following command, and then follow the instructions that appear on the screen:
curl https://raw.githubusercontent.com/ddavness/power-mailinabox/main/setup/bootstrap.sh | sudo bash