Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kristijorgji/docker-mailserver
A docker image providing a working mailserver
https://github.com/kristijorgji/docker-mailserver
dovecot imap mailserver pop3 postfix smt
Last synced: about 1 month ago
JSON representation
A docker image providing a working mailserver
- Host: GitHub
- URL: https://github.com/kristijorgji/docker-mailserver
- Owner: kristijorgji
- License: mit
- Created: 2022-07-13T15:53:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T10:40:06.000Z (over 2 years ago)
- Last Synced: 2023-03-03T21:22:07.279Z (almost 2 years ago)
- Topics: dovecot, imap, mailserver, pop3, postfix, smt
- Language: Jinja
- Homepage:
- Size: 440 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-mailserver
[![ci::status]][ci::github] [![docker::pulls]][docker::hub]
[ci::status]: https://img.shields.io/github/workflow/status/kristijorgji/docker-mailserver/Publish?color=blue&label=CI&logo=github&logoColor=white&style=for-the-badge
[ci::github]: https://github.com/kristijorgji/docker-mailserver/actions
[docker::pulls]: https://img.shields.io/docker/pulls/kristijorgji/docker-mailserver.svg?style=for-the-badge&logo=docker&logoColor=white
[docker::hub]: https://hub.docker.com/r/kristijorgji/docker-mailserver/1. [About](#about)
2. [Requirements](#requirements)
3. [How to use](#how-to-use)
1. [How to update domains and users on fly](#how-to-update-domains-and-users-on-the-fly)
2. [How to setup email aliases](#setting-up-aliases)
4. [How to connect via a mail client (Thunderbird)](docs/thunderbird/how-to-connect-with-thunderbird.md)
5. [How to develop locally](#how-to-develop-locally)
6. [How to test and troubleshoot the setup](docs/how-to-test-and-troubleshot-the-setup.md)# About
A docker image that will provide an out of the box mailserver using
* postfix
* dovecot
* IMAP and POP with mysql driver so you can use mail clients like Thunderbird with ease
* Multiple domains supported, you can have send or receive emails coming for both [email protected] and [email protected]
* roundcube UI to send and check the received emails [WIP]# Requirements
**Tools**
- [Docker](https://www.docker.com/) installed
- [Docker compose](https://docs.docker.com/compose/) installed**Prerequisites**
- Your **mx record** points to the machine where you will use this docker mailserver will run
- ![MX Record Namescheap Example](./docs/mx-record-example.png)
- Your _mailserver domain_ **A record (or cname)** points to the machine where this docker mailserver will run.
- ![CNAME Mailserver Domain Record Namescheap Example](./docs/maildomain-cname-example.png)
- Your webserver is configured to listen for your _mailserver domain_ port 80, so letsencrypt can generate and renew the ssl certificate
- You need to expose the ports that you will use through your security group or firewall. Port 465 and 143 must be available, the rest are optional only if you use them
- 25 # smtp
- 465 # smtps
- 110 # pop3
- 143 # imap
- 993 # imaps
- 995 # pop3s**System requirements**
**Recommended**:
- 1 Core
- 2GB RAM
- Swap enabled for the container**Minimum**:
- 1 vCore
- 512MB RAM
- You'll need to deactivate some services like ClamAV to be able to run on a host with 512MB of RAM. Even with 1G RAM you may run into problems without swap# How to use
First execute the following command to download and install the tool.
You can change `docker-mailserver` in the third line with whatever path you want for the install```shell
curl -LJO https://raw.githubusercontent.com/kristijorgji/docker-mailserver/main/install.sh \
&& chmod a+x install.sh \
&& ./install.sh docker-mailserver
```After the installation you will see a message of what configurations you can make before starting the docker container of the mailserver
You can modify those variables to your wishes, those involve things like
* your mailserver domain name
* your mailserver supported domains (can have more than one)
* your mailserver users
* etcIf you want to make more changes to the configurations of postfix/dovecot or any tool, just modify the `jinja2` templates at configs folder after the tool installs the mailserver.
Everything else is auto-generated during the start of the container including the self signed ssl certificates with the domain name provided
The provisioning is done via ansible and jinja2 templates, that is why the configuration templates end in `.j2` extension## How to update domains and users on the fly
First change the configuration at `configs/vars/vault.yml` which contains your email accounts and domains.
Afterward from the root of this project run
```shell
. update.sh
```That is all.
## Setting up aliases
Example: All emails targeting [email protected] should be received only by [email protected]NOTE: [email protected] will not receive anything in this setup.
This is very easy to setup.
Change configs/vars/vault.yml `mail_virtual_aliases` variable and list the alias there like below:
```yaml
mail_virtual_aliases:
- { id: 1, domainId: 1, source: "[email protected]", destination: "[email protected]" }
```PS: The domainId will be the id of the domain you use, but technically it does not matter much redirect will even work across domains for same mailserver
Finally run the update script
```shell
. update.sh
```# How to develop locally
Run `make ress` to create a docker image and log into one container created from the created image
Afterward you can execute the boot provisioning by going to
`cd /dev-docker-data`then `bash entrypoint.sh`
Or if you want only to execute the ansible provisioning, can do:
```shell
cd /dev-docker-data/ansible
ansible-playbook playbook.yml
```# [How to test and troubleshoot the setup](docs/how-to-test-and-troubleshot-the-setup.md)