2017-09-13 17:03:04 +05:00
|
|
|
# ![Simple Nixos MailServer][logo]
|
2016-07-21 21:55:01 +05:00
|
|
|
![license](https://img.shields.io/badge/license-GPL3-brightgreen.svg)
|
2017-09-21 19:32:01 +05:00
|
|
|
![status](https://travis-ci.org/r-raymond/nixos-mailserver.svg?branch=master)
|
2016-07-21 21:11:43 +05:00
|
|
|
|
2017-09-13 17:03:04 +05:00
|
|
|
|
2017-09-13 16:16:17 +05:00
|
|
|
## Stable Releases
|
2016-07-21 21:55:59 +05:00
|
|
|
|
2017-09-13 16:16:17 +05:00
|
|
|
None so far.
|
|
|
|
|
2017-09-20 19:27:52 +05:00
|
|
|
[Latest Release Candidate](https://github.com/r-raymond/nixos-mailserver/releases/latest)
|
|
|
|
|
2017-09-13 16:16:17 +05:00
|
|
|
## Features
|
2017-11-11 20:15:30 +05:00
|
|
|
### v2.0
|
|
|
|
* [x] Multiple Domains
|
2017-09-13 16:16:17 +05:00
|
|
|
* Postfix MTA
|
|
|
|
- [x] smtp on port 25
|
|
|
|
- [x] submission port 587
|
2017-08-13 15:58:00 +05:00
|
|
|
- [x] lmtp with dovecot
|
|
|
|
* Dovecot
|
2017-09-13 16:16:17 +05:00
|
|
|
- [x] maildir folders
|
|
|
|
- [x] imap starttls on port 143
|
|
|
|
- [x] pop3 starttls on port 110
|
2017-08-13 15:58:00 +05:00
|
|
|
* Certificates
|
|
|
|
- [x] manual certificates
|
|
|
|
- [x] on the fly creation
|
2017-11-11 20:15:30 +05:00
|
|
|
- [x] Let's Encrypt
|
2017-08-13 15:58:00 +05:00
|
|
|
* Spam Filtering
|
2017-09-13 16:16:17 +05:00
|
|
|
- [x] via rspamd
|
|
|
|
- [x] hard coded sieve script to move spam into Junk folder
|
2017-08-13 15:58:00 +05:00
|
|
|
* Virus Scanning
|
2017-09-13 16:16:17 +05:00
|
|
|
- [x] via clamav
|
2017-08-13 15:58:00 +05:00
|
|
|
* DKIM Signing
|
2017-09-13 16:16:17 +05:00
|
|
|
- [x] via opendkim
|
2017-08-13 15:58:00 +05:00
|
|
|
* User Management
|
2017-09-13 16:16:17 +05:00
|
|
|
- [x] declarative user management
|
|
|
|
- [x] declarative password management
|
|
|
|
|
2017-11-11 20:15:30 +05:00
|
|
|
### In the future
|
2017-09-13 16:16:17 +05:00
|
|
|
* Sieves
|
|
|
|
- [ ] Allow user defined sieve scripts
|
|
|
|
* User Aliases
|
|
|
|
- [ ] More complete alias support
|
2017-11-11 20:15:30 +05:00
|
|
|
* DKIM Signing
|
|
|
|
- [ ] Allow a per domain selector
|
2017-09-13 13:17:04 +05:00
|
|
|
|
|
|
|
### Changelog
|
|
|
|
|
|
|
|
#### v1.0 -> v1.1
|
|
|
|
* Changed structure to Nix Modules
|
2017-09-13 16:16:17 +05:00
|
|
|
* Adds Sieve support
|
2017-08-13 15:58:00 +05:00
|
|
|
|
2017-11-11 20:15:30 +05:00
|
|
|
#### v1.1 -> v2.0
|
|
|
|
* rename domain to fqdn, seperate fqdn from domains
|
|
|
|
* multi domain support
|
|
|
|
|
2017-10-17 14:52:47 +05:00
|
|
|
### How to Deploy
|
|
|
|
|
2017-10-17 14:53:53 +05:00
|
|
|
```nix
|
2017-10-17 14:52:47 +05:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
2017-11-11 20:15:30 +05:00
|
|
|
(builtins.fetchTarball "https://github.com/r-raymond/nixos-mailserver/releases/tag/v2.0-rc1")
|
2017-10-17 14:52:47 +05:00
|
|
|
];
|
2017-11-05 14:57:26 +05:00
|
|
|
|
2017-10-17 14:52:47 +05:00
|
|
|
mailserver = {
|
|
|
|
enable = true;
|
2017-11-11 20:15:30 +05:00
|
|
|
fqdn = "mail.example.com";
|
|
|
|
domains = [ "example.com" "example2.com" ];
|
|
|
|
loginAccounts = {
|
|
|
|
"user1@example.com" = {
|
|
|
|
hashedPassword = "$6$/z4n8AQl6K$kiOkBTWlZfBd7PvF5GsJ8PmPgdZsFGN1jPGZufxxr60PoR0oUsrvzm2oQiflyz5ir9fFJ.d/zKm/NgLXNUsNX/";
|
|
|
|
};
|
2017-10-17 14:52:47 +05:00
|
|
|
};
|
2017-10-17 20:29:07 +05:00
|
|
|
virtualAliases = {
|
2017-11-11 20:15:30 +05:00
|
|
|
# address = forward address;
|
|
|
|
"info@example.com" = "user1@example.com";
|
|
|
|
"postmaster@example.com" = "user1@example.com";
|
|
|
|
"abuse@example.com" = "user1@example.com";
|
|
|
|
"user1@example2.com" = "user1@example.com";
|
|
|
|
"info@example2.com" = "user1@example.com";
|
|
|
|
"postmaster@example2.com" = "user1@example.com";
|
|
|
|
"abuse@example2.com" = "user1@example.com";
|
2017-10-17 14:52:47 +05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
For a complete list of options, see `default.nix`.
|
|
|
|
|
|
|
|
|
2017-08-12 14:52:01 +05:00
|
|
|
### How to Test
|
|
|
|
|
|
|
|
You can test the setup via `nixops`. After installation, do
|
|
|
|
|
|
|
|
```
|
|
|
|
nixops create nixops/single-server.nix nixops/vbox.nix -d mail
|
|
|
|
nixops deploy -d mail
|
|
|
|
nixops info -d mail
|
|
|
|
```
|
|
|
|
|
|
|
|
You can then test the server via e.g. `telnet`. To log into it, use
|
|
|
|
|
|
|
|
```
|
|
|
|
nixops ssh -d mail mailserver
|
|
|
|
```
|
|
|
|
|
2017-09-13 16:16:17 +05:00
|
|
|
To test imap manually use
|
|
|
|
|
|
|
|
```
|
|
|
|
openssl s_client -host mail.example.com -port 143 -starttls imap
|
|
|
|
```
|
|
|
|
|
2017-09-13 13:17:04 +05:00
|
|
|
|
2017-11-10 20:57:11 +05:00
|
|
|
## How to Set Up a 10/10 Mail Server
|
|
|
|
Mail servers can be a tricky thing to set up. This guide is supposed to run you
|
|
|
|
through the most important steps to achieve a 10/10 score on `mail-tester.com`.
|
|
|
|
|
|
|
|
### Fully Qualified Domain Name
|
|
|
|
No matter how many domains you want to serve on your mail server, you need to
|
|
|
|
settle on a _Fully Qualified Domain Name_ (FQDN) where your server is reachable,
|
|
|
|
so that other servers can find yours. Common FQDN include `mx.example.com`
|
|
|
|
(where `example.com` is a domain you own) or `mail.example.com`.
|
|
|
|
|
|
|
|
After you settled on a FQDN (we will assume `mx.example.com` henceforth) you
|
|
|
|
need to
|
|
|
|
* Set a DNS entry on your domain to point to the IP of the server. For this
|
|
|
|
add a DNS record such as
|
|
|
|
|
|
|
|
| Name (Subdomain) | TTL | Type | Priority | Value |
|
|
|
|
| ---------------- | ----- | ---- | -------- | ----------------- |
|
|
|
|
| mx.example.com | 10800 | A | | `xxx.xxx.xxx.xxx` |
|
|
|
|
|
|
|
|
to your domain, where `xxx.xxx.xxx.xxx` is the IP of your server.
|
|
|
|
|
|
|
|
* Set a `rDNS` (reverse DNS) entry for your FQDN. You need to do so wherever
|
|
|
|
you have rented your server. Make sure that `xxx.xxx.xxx.xxx` resolves to
|
|
|
|
`mx.example.com`.
|
|
|
|
|
|
|
|
|
2017-11-10 20:58:52 +05:00
|
|
|
### MX Record
|
|
|
|
|
2017-11-10 21:17:53 +05:00
|
|
|
| Name (Subdomain) | TTL | Type | Priority | Value |
|
|
|
|
| ---------------- | ----- | ---- | -------- | ----------------- |
|
|
|
|
| domain1.com | | MX | 10 | mx.exmaple.com |
|
2017-11-10 20:58:52 +05:00
|
|
|
|
2017-11-10 20:57:11 +05:00
|
|
|
### Spf record
|
|
|
|
|
2017-11-10 21:17:53 +05:00
|
|
|
| Name (Subdomain) | TTL | Type | Priority | Value |
|
|
|
|
| ---------------- | ----- | ---- | -------- | ----------------- |
|
|
|
|
| domain1.com | 10800 | TXT | | `v=spf1 ip4:xxx.xxx.xxx.xxx -all` |
|
2017-11-10 20:57:11 +05:00
|
|
|
|
|
|
|
### DKIM signature
|
|
|
|
|
2017-11-10 21:17:53 +05:00
|
|
|
| Name (Subdomain) | TTL | Type | Priority | Value |
|
|
|
|
| ---------------- | ----- | ---- | -------- | ----------------- |
|
|
|
|
| dkim._domainkey.domain1.com | 10800 | TXT | | `v=DKIM1; p=yyyyyyyyyyyy` |
|
2017-11-10 21:16:21 +05:00
|
|
|
|
|
|
|
where `yyyyyyyyyyyy` is the `DKIM` signature
|
2017-11-10 20:57:11 +05:00
|
|
|
|
2016-07-21 21:11:43 +05:00
|
|
|
## A Complete Mail Server Without Moving Parts
|
|
|
|
|
|
|
|
### Used Technologies
|
2017-08-12 14:37:54 +05:00
|
|
|
* Nixos
|
|
|
|
* Nixpkgs
|
|
|
|
* Dovecot
|
|
|
|
* Postfix
|
|
|
|
* Rmilter
|
|
|
|
* Rspamd
|
|
|
|
* Clamav
|
|
|
|
* Opendkim
|
|
|
|
* Pam
|
2016-07-21 21:20:56 +05:00
|
|
|
|
|
|
|
### Features
|
2017-11-11 20:15:30 +05:00
|
|
|
* unlimited domain
|
2016-07-25 21:07:49 +05:00
|
|
|
* unlimited mail accounts
|
2016-07-21 21:20:56 +05:00
|
|
|
* unlimited aliases for every mail account
|
|
|
|
* spam and virus checking
|
|
|
|
* dkim signing of outgoing emails
|
2016-07-21 21:42:14 +05:00
|
|
|
* imap (optionally pop3)
|
|
|
|
* startTLS
|
2016-07-21 21:20:56 +05:00
|
|
|
|
|
|
|
### Nonfeatures
|
|
|
|
* moving parts
|
|
|
|
* SQL databases
|
|
|
|
* configurations that need to be made after `nixos-rebuild switch`
|
|
|
|
* complicated storage schemes
|
|
|
|
* webclients / http-servers
|
2017-08-13 17:05:40 +05:00
|
|
|
|
2017-09-03 18:43:37 +05:00
|
|
|
## Contributors
|
|
|
|
* Special thanks to @Infinisil for the module rewrite
|
2017-11-11 20:15:30 +05:00
|
|
|
* Special thanks to @jbboehr for multidomain implementation
|
2017-09-03 18:43:37 +05:00
|
|
|
* @danbst
|
2017-09-13 13:17:04 +05:00
|
|
|
* @phdoerfler
|
2017-11-05 14:57:26 +05:00
|
|
|
* @eqyiel
|
2017-09-13 17:03:04 +05:00
|
|
|
|
|
|
|
|
|
|
|
### Credits
|
|
|
|
* send mail graphic by [tnp_dreamingmao](https://thenounproject.com/dreamingmao)
|
|
|
|
from [TheNounProject](https://thenounproject.com/) is licensed under
|
|
|
|
[CC BY 3.0](http://creativecommons.org/~/3.0/)
|
|
|
|
* Logo made with [Logomakr.com](https://logomakr.com)
|
|
|
|
|
|
|
|
[logo]: logo/logo.png
|