maddy/docs/tutorials/manual-installation.md
fox.cpp 1b2b101f8e
dist: Remove DynamicUser from systemd units
It is only a good thing to use for simple stateless daemons.  It is
possible to use StateDirectory to store state, but it is extremely
limited. Notably, only service processes and root can correctly access
the state directory. This makes up for a bad practice to run maddyctl as
root what in turn screws up permissions on files in messages directory
when imap-* subcommands are used.

Migration note: Users of systemd unit with DynamicUser enabled should
move /var/lib/private/maddy to /var/lib/maddy before starting maddy
after update.
2020-01-03 02:08:50 +03:00

2.1 KiB

Manual installation & configuration

Dependencies

  • Go toolchain (1.13 or newer)

    If your distribution ships an outdated Go version, you can use following commands to get a newer version:

    go get golang.org/dl/go1.13
    go1.13 download
    

    Then use go1.13 instead of go in commands below.

  • C compiler (optional, set CGO_ENABLED env. variable to 0 to disable)

    Required for SQLite3-based storage (default configuration) and PAM authentication.

Building

First, make sure Go Modules support is enabled:

export GO111MODULE=on

There are two binaries to install, server itself and DB management utility. Use the following command to install them:

go get github.com/foxcpp/maddy/cmd/{maddy,maddyctl}@master

Executables will be placed in the $GOPATH/bin directory (defaults to $HOME/go/bin).

Configuration

Note: explaination below is short and assumes that you already have basic ideas about how email works.

  1. Install maddy and maddyctl (see above)
  2. Copy maddy.conf from this repo to /etc/maddy/maddy.conf
  3. Create /run/maddy and /var/lib/maddy, make sure they are writable for the maddy user. Though, you don't have to use system directories, see maddy -help.
  4. Open maddy.conf with vimyour favorite editor and change the following:
  • tls ... Change to paths to TLS certificate and key.
  • $(hostname) Server identifier. Put your domain here if you have only one server.
  • $(primary_domain) Put the "main" domain you are handling messages for here.
  1. Run the executable.
  2. On first start-up server will generate a RSA-2048 keypair for DKIM and tell you where file with DNS record text is placed. You need to add it to your zone to make signing work.
  3. Create user accounts you need using maddyctl:
    maddyctl users create foxcpp@example.org
    

Congratulations, now you have your working mail server. IMAP endpoint is on port 993 with TLS enforced ("implicit TLS"). SMTP endpoint is on port 465 with TLS enforced ("implicit TLS").

systemd unit

You can use the systemd unit file from the dist/ directory in this repo.