aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2018-06-01-mailu.md
blob: 2c0d75f9281d25d422fc03953cd1161689b41c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
layout: post
title:  "Mailu"
date:   2018-06-01 20:17:00 +0100
params:
  comments: true
---

## My search for an email server

![Rainloop Screenshot](/assets/mailu_screenshot.png)

A big theme in the news recently is data protection, how your personal data is being used (and abused), and taking back control of your data. Part of the problem is that people's personal data is kept in huge private corporate networks, and historically companies have been able to do (essentially) whatever they like with it. I started investigating how difficult it would be to really re-take control of my personal data - beginning with my email. 

Email is complicated: this is because it is old, and it has changed over time. [One of the first articles I found](https://www.digitalocean.com/community/tutorials/why-you-may-not-want-to-run-your-own-mail-serve) is a quick rundown of how complex the email system is. [Ars technica][ars-technica-guide] ran a guide for setting up your own email server:

>Why do battle with arcane dragons to roll your own e-mail solution?

The arcane dragons are the pieces of software that have become the most popular choices for email servers. A typical email server configuration contains the following pieces of open-source software: dovecot, postfix, spamassassin, clamav, sendmail, roundcube, mysql. Each of them fills a different role in the email system, and each of them can be configured to operate in many different ways.

I began setting up my email server in this way, however I gave up pretty quickly: I found that walkthroughs on the internet were often out of date, and configuration options had changed or been removed. I also found it really difficult to understand from the guides how all the pieces of the puzzle fit together. I started looking for alternative routes. 

Microsoft Exchange Server fulfils all the roles of the separate open-source components in a single piece of software. This sounds much easier to configure: however I don't have a Windows server, and nor do I want to pay licensing costs for it. 

I started looking for an open-source project that fulfils the same role. I found [Maddy](https://github.com/emersion/maddy), inspired by the new minimal-configuration http/2 server [Caddy][caddy]. Sadly, the project is seriously incomplete right now, but the principle sounds great: a self-contained email server with minimal configuration conforming to best practices by default.

Although I made a [little effort](https://github.com/MFAshby/gomail) to cobble together this project into a working email server, I discovered this was a much bigger task than I had anticipated. I discovered some more arcane dragons in the form of the email standards for SMTP and IMAP. These are old, stateful protocols with many extensions, versions and awkward syntax. Modern systems are built with REST APIs for a reason: they are much quicker for the developer to understand and build with (they are also way easier to load balance, due to the lack of state)

I came back around to the idea of using the existing software, but this time I started looking for pre-configured systems. I discovered [iRedMail][iredmail] which claims to turn a fresh Debian or Ubuntu install into a working email server. This isn't bad, but I want to run a few other services from my Raspberry as well, and I'd rather not clobber them by re-installing Debian.

This approach actually leads really neatly onto the last solution I tried, and the one I actually have working: [Mailu][mailu]. This project provides all the same open-source email components (postfix, dovecot), but pre-configured and packaged as [Docker][docker] images. I feel like this is the best approach for a few reasons:

* You don't need a fresh Debian install, you just need a working Docker host.
* The hard configuration has been done for you. Just a single config file with a few easy to understand options is required.
* It's portable: copy over the mailu directory and the docker-compose.yml file to another machine, execute  `docker-compose up -d` and it's back online with all the same accounts.
* An admin interface is included.
* It's open source so you can check if it conforms to current security practices, and modify it if you need to.
* The maintainer [kaiyou](https://github.com/kaiyou) is very helpful, and gratefully accepts pull requests. 

Although the project didn't work out of the box with Raspberry Pi this was a pretty easy thing to fix. I now maintain a permanent fork of mailu for Raspberry Pi over [here][mailu-rpi]

[rpi]:https://www.raspberrypi.org/
[dovecot-basic]:https://wiki.dovecot.org/BasicConfiguration
[ars-technica-guide]:https://arstechnica.com/information-technology/2014/02/how-to-run-your-own-e-mail-server-with-your-own-domain-part-1/
[golang]:https://golang.org/
[caddy]:https://caddyserver.com/
[gomail]:https://github.com/MFAshby/gomail
[emersion]:https://github.com/emersion
[maddy]:https://github.com/emersion/maddy
[caddy-forum-non-http]:https://caddy.community/t/server-types-other-than-http/65/7
[iredmail]:https://www.iredmail.org/
[mailu]:https://github.com/Mailu/Mailu
[docker]:http://docker.io/
[mailu-rpi]:https://github.com/MFAshby/mailu