2021-03-01 10:41:19 +00:00
---
2021-03-11 19:41:24 +00:00
title: 'Tutorials | Basic Installation'
2021-03-01 10:41:19 +00:00
---
2018-07-05 17:14:47 +00:00
2023-02-19 12:25:14 +00:00
## A Basic Example With Relevant Environmental Variables
2021-03-01 10:41:19 +00:00
2023-05-10 09:02:44 +00:00
This example provides you only with a basic example of what a minimal setup could look like. We **strongly recommend** that you go through the configuration file yourself and adjust everything to your needs. The default [compose.yaml ](https://github.com/docker-mailserver/docker-mailserver/blob/master/compose.yaml ) can be used for the purpose out-of-the-box, see the [_Usage_ chapter ](../../usage.md ).
2023-02-19 12:25:14 +00:00
``` YAML
services:
mailserver:
2023-04-08 09:54:16 +00:00
image: ghcr.io/docker-mailserver/docker-mailserver:latest
2023-02-19 12:25:14 +00:00
container_name: mailserver
# Provide the FQDN of your mail server here (Your DNS MX record should point to this value)
hostname: mail.example.com
ports:
- "25:25"
2023-04-08 09:54:16 +00:00
- "465:465"
2023-02-19 12:25:14 +00:00
- "587:587"
- "993:993"
volumes:
- ./docker-data/dms/mail-data/:/var/mail/
- ./docker-data/dms/mail-state/:/var/mail-state/
- ./docker-data/dms/mail-logs/:/var/log/mail/
- ./docker-data/dms/config/:/tmp/docker-mailserver/
- /etc/localtime:/etc/localtime:ro
environment:
2023-04-08 09:54:16 +00:00
- ENABLE_RSPAMD=1
2023-02-19 12:25:14 +00:00
- ENABLE_CLAMAV=1
- ENABLE_FAIL2BAN=1
cap_add:
- NET_ADMIN # For Fail2Ban to work
restart: always
```
## A Basic LDAP Setup
**Note** There are currently no LDAP maintainers. If you encounter issues, please raise them in the issue tracker, but be aware that the core maintainers team will most likely not be able to help you. **We would appreciate and we encourage everyone to actively participate in maintaining LDAP-related code by becoming a maintainer!**
``` YAML
services:
mailserver:
2023-04-08 09:54:16 +00:00
image: ghcr.io/docker-mailserver/docker-mailserver:latest
2023-02-19 12:25:14 +00:00
container_name: mailserver
# Provide the FQDN of your mail server here (Your DNS MX record should point to this value)
hostname: mail.example.com
ports:
- "25:25"
2023-04-08 09:54:16 +00:00
- "465:465"
2023-02-19 12:25:14 +00:00
- "587:587"
- "993:993"
volumes:
- ./docker-data/dms/mail-data/:/var/mail/
- ./docker-data/dms/mail-state/:/var/mail-state/
- ./docker-data/dms/mail-logs/:/var/log/mail/
- ./docker-data/dms/config/:/tmp/docker-mailserver/
- /etc/localtime:/etc/localtime:ro
environment:
- ACCOUNT_PROVISIONER=LDAP
- LDAP_SERVER_HOST=ldap # your ldap container/IP/ServerName
- LDAP_SEARCH_BASE=ou=people,dc=localhost,dc=localdomain
- LDAP_BIND_DN=cn=admin,dc=localhost,dc=localdomain
- LDAP_BIND_PW=admin
- LDAP_QUERY_FILTER_USER=(& (mail=%s)(mailEnabled=TRUE))
- LDAP_QUERY_FILTER_GROUP=(& (mailGroupMember=%s)(mailEnabled=TRUE))
- LDAP_QUERY_FILTER_ALIAS=(|(& (mailAlias=%s)(objectClass=PostfixBookMailForward))(& (mailAlias=%s)(objectClass=PostfixBookMailAccount)(mailEnabled=TRUE)))
- LDAP_QUERY_FILTER_DOMAIN=(|(& (mail=*@%s)(objectClass=PostfixBookMailAccount)(mailEnabled=TRUE))(& (mailGroupMember=*@%s)(objectClass=PostfixBookMailAccount)(mailEnabled=TRUE))(& (mailalias=*@%s)(objectClass=PostfixBookMailForward)))
- DOVECOT_PASS_FILTER=(& (objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))
- DOVECOT_USER_FILTER=(& (objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))
- ENABLE_SASLAUTHD=1
- SASLAUTHD_MECHANISMS=ldap
- SASLAUTHD_LDAP_SERVER=ldap
- SASLAUTHD_LDAP_BIND_DN=cn=admin,dc=localhost,dc=localdomain
- SASLAUTHD_LDAP_PASSWORD=admin
- SASLAUTHD_LDAP_SEARCH_BASE=ou=people,dc=localhost,dc=localdomain
- SASLAUTHD_LDAP_FILTER=(& (objectClass=PostfixBookMailAccount)(uniqueIdentifier=%U))
- POSTMASTER_ADDRESS=postmaster@localhost.localdomain
restart: always
```
2023-04-08 09:54:16 +00:00
## Using DMS as a local mail relay for containers
2023-02-19 12:25:14 +00:00
2023-04-08 09:54:16 +00:00
!!! info
2023-02-19 12:25:14 +00:00
2023-04-08 09:54:16 +00:00
This was originally a community contributed guide. Please let us know via a Github Issue if you're having any difficulty following the guide so that we can update it.
2020-09-27 20:15:21 +00:00
2023-04-08 09:54:16 +00:00
This guide is focused on only using [SMTP ports (not POP3 and IMAP)][docs-ports] with the intent to relay mail received from another service to an external email address (eg: `user@gmail.com` ). It is not intended for mailbox storage of real users.
2018-07-10 16:51:55 +00:00
2023-04-10 13:36:34 +00:00
In this setup DMS is not intended to receive email from the outside world, so no anti-spam or anti-virus software is needed, making the service lighter to run.
2018-07-10 16:51:55 +00:00
2023-04-08 09:54:16 +00:00
!!! tip "`setup`"
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
The `setup` command used below is to be [run inside the container][docs-usage].
2021-09-26 23:46:46 +00:00
2023-04-08 09:54:16 +00:00
!!! warning "Open Relays"
2018-07-10 16:51:55 +00:00
2023-04-08 09:54:16 +00:00
Adding the docker network's gateway to the list of trusted hosts (_eg: using the `network` or `connected-networks` option_), can create an [**open relay** ](https://en.wikipedia.org/wiki/Open_mail_relay ). For instance [if IPv6 is enabled on the host machine, but not in Docker][github-issue-1405-comment].
2021-09-26 23:46:46 +00:00
2023-05-10 09:02:44 +00:00
1. Create the file `compose.yaml` with a content like this:
2021-03-01 10:41:19 +00:00
2021-03-02 16:39:06 +00:00
!!! example
```yaml
services:
2021-09-20 07:27:55 +00:00
mailserver:
2023-04-10 09:37:25 +00:00
image: ghcr.io/docker-mailserver/docker-mailserver:latest
docs(chore): Normalize for consistency (#2206)
"Brief" summary/overview of changes. See the PR discussion or individual commits from the PR for more details.
---
Only applies to the `docs/content/**` content (_and `setup` command_). `target/` and `test/` can be normalized at a later date.
* Normalize to `example.com`
- Domains normalized to `example.com`: `mywebserver.com`, `myserver.tld`, `domain.com`, `domain.tld`, `mydomain.net`, `my-domain.tld`, `my-domain.com`, `example.org`, `whoami.com`.
- Alternative domains normalized to `not-example.com`: `otherdomain.com`, `otherdomain.tld`, `domain2.tld`, `mybackupmx.com`, `whoareyou.org`.
- Email addresses normalized to `admin@example.com` (in `ssl.md`): `foo@bar.com`, `yourcurrentemail@gmail.com`, `email@email.com`, `admin@domain.tld`.
- Email addresses normalized to `external-account@gmail.com`: `bill@gates321boom.com`, `external@gmail.com`, `myemail@gmail.com`, `real-email-address@external-domain.com`.
- **`faq.md`:** A FAQ entry title with `sample.domain.com` changed to `subdomain.example.com`.
- **`mail-fetchmail.md`:** Config examples with FQDNs for `imap`/`pop3` used `example.com` domain for a third-party, changed to `gmail.com` as more familiar third-party/external MTA.
* Normalize config volume path
- Normalizing local config path references to `./docker-data/dms/config/`: `./config/`, `config/`, \``config`\`, `/etc/` (_volume mount src path prefix_).
- Normalize DMS volume paths to `docker-data/dms/mail-{data,state,log}`: `./mail`, `./mail-state` `./data/mail`, `./data/state`, `./data/logs`, `./data/maildata`, `./data/mailstate`, `./data/maillogs`, (_dropped/converted data volumes: `maildata`, `mailstate`_).
- Other docker images also adopt the `docker-data/{service name}/` prefix.
* `ssl.md` - Use `dms/custom-certs` where appropriate.
* Apply normalizations to README and example `docker-compose.yml`
---
Common terms, sometimes interchangeably used or now invalid depending on context: `mail`, `mail container`, `mail server`, `mail-server`, `mailserver`,`docker-mailserver`, `Docker Mailserver`.
Rough transformations applied to most matches (_conditionally, depending on context_):
- 'Docker Mailserver' => '`docker-mailserver`'
- 'mail container' => '`docker-mailserver`' (_optionally retaining ' container'_)
- 'mail server' => 'mail-server' / '`docker-mailserver`'
- 'mail-server' => '`docker-mailserver`'
- 'mailserver' => 'mail-server' / '`docker-mailserver`'
Additionally I checked `docker run` (_plus `exec`, `logs`, etc, sub-commands_) and `docker-compose` commands. Often finding usage of `mail` instead of the expected `mailserver`
Additionally changes `mailserver` hostname in k8s to `mail` to align with other non-k8s examples.
---
* drive-by revisions
Mostly minor revisions or improvements to docs that aren't related to normalization effort.
2021-09-22 23:29:37 +00:00
container_name: mailserver
2023-02-19 12:25:14 +00:00
# Provide the FQDN of your mail server here (Your DNS MX record should point to this value)
hostname: mail.example.com
2021-03-02 16:39:06 +00:00
ports:
2021-09-26 23:46:46 +00:00
- "25:25"
- "587:587"
- "465:465"
2021-03-02 16:39:06 +00:00
volumes:
2021-09-26 23:46:46 +00:00
- ./docker-data/dms/mail-data/:/var/mail/
- ./docker-data/dms/mail-state/:/var/mail-state/
- ./docker-data/dms/mail-logs/:/var/log/mail/
- ./docker-data/dms/config/:/tmp/docker-mailserver/
- /etc/localtime:/etc/localtime:ro
2021-03-02 16:39:06 +00:00
environment:
2021-09-26 23:46:46 +00:00
- ENABLE_FAIL2BAN=1
2023-04-08 09:54:16 +00:00
# Using letsencrypt for SSL/TLS certificates:
2021-09-26 23:46:46 +00:00
- SSL_TYPE=letsencrypt
2023-04-08 09:54:16 +00:00
# Allow sending emails from other docker containers:
2023-03-22 10:43:10 +00:00
# Beware creating an Open Relay: https://docker-mailserver.github.io/docker-mailserver/latest/config/environment/#permit_docker
2021-09-26 23:46:46 +00:00
- PERMIT_DOCKER=network
2023-03-22 10:43:10 +00:00
# You may want to enable this: https://docker-mailserver.github.io/docker-mailserver/latest/config/environment/#spoof_protection
2023-04-08 09:54:16 +00:00
# See step 6 below, which demonstrates setup with enabled/disabled SPOOF_PROTECTION:
2021-09-26 23:46:46 +00:00
- SPOOF_PROTECTION=0
2021-03-02 16:39:06 +00:00
cap_add:
2021-09-26 23:46:46 +00:00
- NET_ADMIN # For Fail2Ban to work
2023-02-19 12:25:14 +00:00
restart: always
2021-03-02 16:39:06 +00:00
```
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
The docs have a detailed page on [Environment Variables][docs-environment] for reference.
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
??? tip "Firewalled ports"
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
If you have a firewall running, you may need to open ports `25` , `587` and `465` .
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
For example, with the firewall `ufw` , run:
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
```sh
ufw allow 25
ufw allow 587
ufw allow 465
```
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
**Caution:** This may [not be sound advice][github-issue-ufw].
2. Configure your DNS service to use an MX record for the _hostname_ (eg: `mail` ) you configured in the previous step and add the [SPF][docs-spf] TXT record.
!!! tip "If you manually manage the DNS zone file for the domain"
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
It would look something like this:
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
```txt
$ORIGIN example.com
@ IN A 10.11.12.13
mail IN A 10.11.12.13
2023-04-10 09:37:25 +00:00
2023-04-10 13:36:34 +00:00
; mail server for example.com
2023-04-08 09:54:16 +00:00
@ IN MX 10 mail.example.com.
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
; Add SPF record
@ IN TXT "v=spf1 mx -all"
```
2023-04-10 09:37:25 +00:00
2023-04-08 09:54:16 +00:00
Then don't forget to change the `SOA` serial number, and to restart the service.
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
3. [Generate DKIM keys][docs-dkim] for your domain via `setup config dkim` .
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
Copy the content of the file `docker-data/dms/config/opendkim/keys/example.com/mail.txt` and add it to your DNS records as a TXT like SPF was handled above.
2018-07-10 16:51:55 +00:00
2021-09-26 23:46:46 +00:00
I use [bind9 ](https://github.com/docker-scripts/bind9 ) for managing my domains, so I just paste it on `example.com.db` :
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
```txt
mail._domainkey IN TXT ( "v=DKIM1; h=sha256; k=rsa; "
"p=MIIBIjANBgkqhkiG9w0BAQEFACAQ8AMIIBCgKCAQEAaH5KuPYPSF3Ppkt466BDMAFGOA4mgqn4oPjZ5BbFlYA9l5jU3bgzRj3l6/Q1n5a9lQs5fNZ7A/HtY0aMvs3nGE4oi+LTejt1jblMhV/OfJyRCunQBIGp0s8G9kIUBzyKJpDayk2+KJSJt/lxL9Iiy0DE5hIv62ZPP6AaTdHBAsJosLFeAzuLFHQ6USyQRojefqFQtgYqWQ2JiZQ3"
"iqq3bD/BVlwKRp5gH6TEYEmx8EBJUuDxrJhkWRUk2VDl1fqhVBy8A9O7Ah+85nMrlOHIFsTaYo9o6+cDJ6t1i6G1gu+bZD0d3/3bqGLPBQV9LyEL1Rona5V7TJBGg099NQkTz1IwIDAQAB" ) ; ----- DKIM key mail for example.com
2021-03-01 10:41:19 +00:00
```
2018-07-10 16:51:55 +00:00
2023-04-08 09:54:16 +00:00
4. Get an SSL certificate, [we have a guide for you here][docs-ssl] (_Let's Encrypt_ is a popular service to get free SSL certificates).
2021-03-01 10:41:19 +00:00
2023-05-10 09:02:44 +00:00
5. Start DMS and check the terminal output for any errors: `docker compose up` .
2021-03-01 10:41:19 +00:00
2023-04-08 09:54:16 +00:00
6. Create email accounts and aliases:
2018-07-10 16:51:55 +00:00
2021-09-26 23:46:46 +00:00
!!! example "With `SPOOF_PROTECTION=0` "
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
```sh
2023-04-08 09:54:16 +00:00
setup email add admin@example.com passwd123
setup email add info@example.com passwd123
setup alias add admin@example.com external-account@gmail.com
setup alias add info@example.com external-account@gmail.com
setup email list
setup alias list
2021-09-26 23:46:46 +00:00
```
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
Aliases make sure that any email that comes to these accounts is forwarded to your third-party email address (`external-account@gmail.com`), where they are retrieved (_eg: via third-party web or mobile app_), instead of connecting directly to `docker-mailserer` with POP3 / IMAP.
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
!!! example "With `SPOOF_PROTECTION=1` "
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
```sh
2023-04-08 09:54:16 +00:00
setup email add admin.gmail@example.com passwd123
setup email add info.gmail@example.com passwd123
setup alias add admin@example.com admin.gmail@example.com
setup alias add info@example.com info.gmail@example.com
setup alias add admin.gmail@example.com external-account@gmail.com
setup alias add info.gmail@example.com external-account@gmail.com
setup email list
setup alias list
2021-09-26 23:46:46 +00:00
```
This extra step is required to avoid the `553 5.7.1 Sender address rejected: not owned by user` error (_the accounts used for submitting mail to Gmail are `admin.gmail@example.com` and `info.gmail@example.com` _)
2021-03-01 10:41:19 +00:00
2023-05-10 09:02:44 +00:00
7. Send some test emails to these addresses and make other tests. Once everything is working well, stop the container with `ctrl+c` and start it again as a daemon: `docker compose up -d` .
2021-03-01 10:41:19 +00:00
2021-09-26 23:46:46 +00:00
[docs-ports]: ../../config/security/understanding-the-ports.md
2021-05-11 10:15:34 +00:00
[docs-environment]: ../../config/environment.md
2023-04-10 10:08:58 +00:00
[docs-spf]: ../../config/best-practices/dkim_dmarc_spf.md#spf
[docs-dkim]: ../../config/best-practices/dkim_dmarc_spf.md#dkim
2021-09-26 23:46:46 +00:00
[docs-ssl]: ../../config/security/ssl.md#lets-encrypt-recommended
2023-04-08 09:54:16 +00:00
[docs-usage]: ../../usage.md#get-up-and-running
[github-issue-ufw]: https://github.com/docker-mailserver/docker-mailserver/issues/3151
2021-03-01 10:41:19 +00:00
[github-issue-1405-comment]: https://github.com/docker-mailserver/docker-mailserver/issues/1405#issuecomment-590106498