mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Changed documentation for #109
This commit is contained in:
parent
003b89c98b
commit
2b8bf1b80d
|
@ -7,8 +7,7 @@ RUN apt-get -y upgrade
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install vim postfix dovecot-core dovecot-imapd dovecot-pop3d \
|
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install vim postfix dovecot-core dovecot-imapd dovecot-pop3d \
|
||||||
supervisor gamin amavisd-new spamassassin clamav clamav-daemon libnet-dns-perl libmail-spf-perl \
|
supervisor gamin amavisd-new spamassassin clamav clamav-daemon libnet-dns-perl libmail-spf-perl \
|
||||||
pyzor razor arj bzip2 cabextract cpio file gzip nomarch p7zip pax unzip zip zoo rsyslog mailutils netcat \
|
pyzor razor arj bzip2 cabextract cpio file gzip nomarch p7zip pax unzip zip zoo rsyslog mailutils netcat \
|
||||||
opendkim opendkim-tools opendmarc curl fail2ban sasl2-bin
|
opendkim opendkim-tools opendmarc curl fail2ban && apt-get autoclean && rm -rf /var/lib/apt/lists/*
|
||||||
RUN apt-get autoclean && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Configures Dovecot
|
# Configures Dovecot
|
||||||
RUN sed -i -e 's/include_try \/usr\/share\/dovecot\/protocols\.d/include_try \/etc\/dovecot\/protocols\.d/g' /etc/dovecot/dovecot.conf
|
RUN sed -i -e 's/include_try \/usr\/share\/dovecot\/protocols\.d/include_try \/etc\/dovecot\/protocols\.d/g' /etc/dovecot/dovecot.conf
|
||||||
|
|
57
README.md
57
README.md
|
@ -1,6 +1,12 @@
|
||||||
# docker-mailserver
|
# docker-mailserver
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/tomav/docker-mailserver.svg?branch=master)](https://travis-ci.org/tomav/docker-mailserver)
|
```
|
||||||
|
#
|
||||||
|
# CURRENTLY IN BETA
|
||||||
|
#
|
||||||
|
```
|
||||||
|
|
||||||
|
[![Build Status](https://travis-ci.org/tomav/docker-mailserver.svg?branch=v2)](https://travis-ci.org/tomav/docker-mailserver)
|
||||||
|
|
||||||
A fullstack but simple mail server (smtp, imap, antispam, antivirus...).
|
A fullstack but simple mail server (smtp, imap, antispam, antivirus...).
|
||||||
Only configuration files, no SQL database. Keep it simple and versioned.
|
Only configuration files, no SQL database. Keep it simple and versioned.
|
||||||
|
@ -22,16 +28,23 @@ Includes:
|
||||||
|
|
||||||
Why I created this image: [Simple mail server with Docker](http://tvi.al/simple-mail-server-with-docker/)
|
Why I created this image: [Simple mail server with Docker](http://tvi.al/simple-mail-server-with-docker/)
|
||||||
|
|
||||||
Before you open an issue, please have a look this `README`, the [FAQ](https://github.com/tomav/docker-mailserver/wiki/FAQ) and Postfix documentation.
|
Before you open an issue, please have a look this `README`, the [FAQ](https://github.com/tomav/docker-mailserver/wiki/FAQ) and Postfix/Dovecot documentation.
|
||||||
|
|
||||||
## Usage
|
## Project architecture
|
||||||
|
|
||||||
# get latest image
|
├── config # User: personal configurations
|
||||||
docker pull tvial/docker-mailserver
|
├── docker-compose.yml.dist # User: 'docker-compose.yml' example
|
||||||
|
├── target # Developers: default server configurations
|
||||||
|
└── test # Developers: integration tests
|
||||||
|
|
||||||
|
## Basic usage
|
||||||
|
|
||||||
|
# get v2 image
|
||||||
|
docker pull tvial/docker-mailserver:2
|
||||||
|
|
||||||
# create a "docker-compose.yml" file containing:
|
# create a "docker-compose.yml" file containing:
|
||||||
mail:
|
mail:
|
||||||
image: tvial/docker-mailserver
|
image: tvial/docker-mailserver:2
|
||||||
hostname: mail
|
hostname: mail
|
||||||
domainname: domain.com
|
domainname: domain.com
|
||||||
# your FQDN will be 'mail.domain.com'
|
# your FQDN will be 'mail.domain.com'
|
||||||
|
@ -41,41 +54,49 @@ Before you open an issue, please have a look this `README`, the [FAQ](https://gi
|
||||||
- "587:587"
|
- "587:587"
|
||||||
- "993:993"
|
- "993:993"
|
||||||
volumes:
|
volumes:
|
||||||
- ./spamassassin:/tmp/spamassassin/
|
- ./config/:/tmp/docker-mailserver/
|
||||||
- ./postfix:/tmp/postfix/
|
|
||||||
|
# Create your first mail account
|
||||||
|
mkdir -p config
|
||||||
|
docker run --rm \
|
||||||
|
-e MAIL_USER=username@domain.tld \
|
||||||
|
-e MAIL_PASS=mypassword \
|
||||||
|
-ti tvial/docker-mailserver:v2 \
|
||||||
|
/bin/sh -c 'echo "$MAIL_USER|$(doveadm pw -s CRAM-MD5 -u $MAIL_USER -p $MAIL_PASS)"' >> config/postfix-accounts.cf
|
||||||
|
|
||||||
# start the container
|
# start the container
|
||||||
docker-compose up -d mail
|
docker-compose up -d mail
|
||||||
|
|
||||||
|
You're done!
|
||||||
|
|
||||||
## Managing users and aliases
|
## Managing users and aliases
|
||||||
|
|
||||||
### Users
|
### Users
|
||||||
|
|
||||||
Users are managed in `postfix/accounts.cf`.
|
As you've seen above, users are managed in `config/postfix-accounts.cf`.
|
||||||
Just add the full email address and its encrypted password separated by a pipe.
|
Just add the full email address and its encrypted password separated by a pipe.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
user1@domain.tld|mypassword-encrypted
|
user1@domain.tld|{SCHEME}mypassword-encrypted
|
||||||
user2@otherdomain.tld|myotherpassword-encrypted
|
user2@otherdomain.tld|{SCHEME}myotherpassword-encrypted
|
||||||
|
|
||||||
To generate the password you could run for example the following:
|
To generate the password you could run for example the following:
|
||||||
|
|
||||||
docker run --rm -ti tvial/docker-mailserver doveadm pw -s MD5-CRYPT -u user1@domain.tld
|
docker run --rm -ti tvial/docker-mailserver:v2 doveadm pw -s CRAM-MD5 -u user1@domain.tld
|
||||||
|
|
||||||
You will be asked for a password (and for a confirmation of the password). Just copy all the output string in the file `postfix/accounts.cf`.
|
You will be asked for a password (and for a confirmation of the password). Just copy all the output string in the file `config/postfix-accounts.cf`.
|
||||||
|
|
||||||
The `doveadm pw` command let you choose between several encryption schemes for the password.
|
The `doveadm pw` command let you choose between several encryption schemes for the password.
|
||||||
Use doveadm pw -l to get a list of the currently supported encryption schemes.
|
Use doveadm pw -l to get a list of the currently supported encryption schemes.
|
||||||
|
|
||||||
|
|
||||||
### Aliases
|
### Aliases
|
||||||
|
|
||||||
Please first read [Postfix documentation on virtual aliases](http://www.postfix.org/VIRTUAL_README.html#virtual_alias).
|
Please first read [Postfix documentation on virtual aliases](http://www.postfix.org/VIRTUAL_README.html#virtual_alias).
|
||||||
|
|
||||||
Aliases are managed in `postfix/virtual`.
|
Aliases are managed in `config/postfix-virtual.cf`.
|
||||||
An alias is a full email address that will be:
|
An alias is a full email address that will be:
|
||||||
* delivered to an existing account in `postfix/accounts.cf`
|
* delivered to an existing account in `config/postfix-accounts.cf`
|
||||||
* redirected to one or more other email adresses
|
* redirected to one or more other email adresses
|
||||||
|
|
||||||
Alias and target are space separated.
|
Alias and target are space separated.
|
||||||
|
@ -106,7 +127,7 @@ Example:
|
||||||
* *6.31* (default) => add 'spam detected' headers at that level
|
* *6.31* (default) => add 'spam detected' headers at that level
|
||||||
* SA_KILL
|
* SA_KILL
|
||||||
* *6.31* (default) => triggers spam evasive actions
|
* *6.31* (default) => triggers spam evasive actions
|
||||||
* SASL_PASSWORD
|
* SASL_PASSWD
|
||||||
* *empty* (default) => No sasl_passwd will be created
|
* *empty* (default) => No sasl_passwd will be created
|
||||||
* *string* => A /etc/postfix/sasl_passwd will be created with that content and postmap will be run on it
|
* *string* => A /etc/postfix/sasl_passwd will be created with that content and postmap will be run on it
|
||||||
* ENABLE_FAIL2BAN
|
* ENABLE_FAIL2BAN
|
||||||
|
@ -121,7 +142,7 @@ Please read [the SSL page in the wiki](https://github.com/tomav/docker-mailserve
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
|
|
||||||
Things to do or to improve are stored on [Github](https://github.com/tomav/docker-mailserver/issues), some open by myself.
|
Things to do or to improve are stored on [Github](https://github.com/tomav/docker-mailserver/issues).
|
||||||
Feel free to improve this docker image.
|
Feel free to improve this docker image.
|
||||||
|
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
user1@localhost.localdomain|mypassword
|
|
||||||
user2@otherdomain.tld|mypassword
|
|
|
@ -1,2 +0,0 @@
|
||||||
alias1@localhost.localdomain user1@localhost.localdomain
|
|
||||||
alias2@localhost.localdomain external1@otherdomain.tld
|
|
|
@ -1,10 +1,10 @@
|
||||||
mail:
|
mail:
|
||||||
# image: tvial/docker-mailserver
|
image: tvial/docker-mailserver:v2
|
||||||
build: .
|
# build: .
|
||||||
hostname: mail
|
hostname: mail
|
||||||
domainname: domain.com
|
domainname: domain.com
|
||||||
cap_add:
|
volumes_from:
|
||||||
- NET_ADMIN
|
- maildata
|
||||||
ports:
|
ports:
|
||||||
- "25:25"
|
- "25:25"
|
||||||
- "143:143"
|
- "143:143"
|
||||||
|
|
Loading…
Reference in a new issue