Use exherbo as base image

This commit is contained in:
2016-10-15 13:45:24 +02:00
parent deab70fe64
commit ac397c4f85
39 changed files with 80 additions and 288 deletions

View File

@@ -1,34 +1,62 @@
Dockermail
Dockermail - Email Core
==========
This image provides a secure mail server based on:
* postfix
* dovecot (with sieve/managesieve support)
* spamassasin (with pyzor and razor)
A secure, minimal-configuration mail service in docker containers.
This repository is tailored to small private servers, where you own a domain and want to host your own mail.
All incoming mail to your domains is accepted.
For outgoing mail, only authenticated (logged in with username and password) clients can send messages via STARTTLS.
The setup is modular and so far has (more to come, feel free to contribute :)
### Setup
You will need 2 folder on your host, one to store your configuration and another one to store your email.
In the instructions below we will use the following:
* `/var/lib/dockermail/settings` to store configuration
* `/var/lib/dockermail/vmail` to store the mail
* `core` - base SMTP and IMAP server
* `opendkim` - adds DKIM signing service to the core
Use the the example config files in `config/example` to get you started.
Please see the README in each folder for more information on each image.
1. Add all domains you want to receive mail for to the file `/var/lib/dockermail/settings/domains`, like this:
### SPAM
Although OpenDKIM is optional, I highly recommended you use it unless you want your mail to end up in someone's spam folder. See the README in `opendkim` folder for more info on setting it up.
example.org
example.net
You should also add PTR record to your IP (aka Reverse DNS) which is done by your server provider.
And finally, generate and add an SPF record to your domain, search for instructions on this - there are a few generator site around and the setup steps depend on your domain name provider.
2. Add user aliases to the file `/var/lib/dockermail/settings/aliases`:
### Compose
Assuming you follow the instructions in the accompanying READMEs to set up both containers, you should just be able to run
johndoe@example.org john.doe@example.org
john.doe@example.org john.doe@example.org
admin@forum.example.org forum-admin@example.org
@example.net catch-all@example.net
docker-compose up
An IMAP mail account is created for each entry on the right hand side.
Every mail sent to one of the addresses in the left column will be delivered to the corresponding account in the right column.
and it will spin up both container and link them together, easy!
3. Add user passwords to the file `/var/lib/dockermail/settings/passwords` like this
john.doe@example.org:{PLAIN}password123
admin@example.org:{SHA256-CRYPT}$5$ojXGqoxOAygN91er$VQD/8dDyCYOaLl2yLJlRFXgl.NSrB3seZGXBRMdZAr6
### Coming soon
* JSON based config instead of current collection of flat files.
* Images on DockerHub
* Testing
To get the hash values, you can either install dovecot locally or use `docker exec -it [email_core_container_name] bash` to attach to the running container (step 6) and run `doveadm pw -s <scheme-name>` inside, remember to restart your container if you update the settings!
### TODO
* gentoo support for opendkim
4. Change the hostname in file `/var/lib/dockermail/settings/myhostname` to the correct fully qualified domain of your server.
5. Set the "mynetworks" variable for postfix in file `/var/lib/dockermail/settings/postfix-networks` to e.g. `127.0.0.0/8 [::1]/128` (one single line only).
5. Build container
docker build -t hasufell/gentoo-dockermail .
6. Run container
docker run -ti -d \
--name dockermail \
-p 25:25 \
-p 465:465 \
-p 993:993 \
-p 4190:4190 \
-v /var/lib/dockermail/settings:/mail_settings \
-v /var/lib/dockermail/vmail:/vmail \
-v <path-to-certs>:/etc/ssl/server
dockermail_email_core
Note that the certificates must be named `email.crt` and `email.key`.