Go to file
andryyy 1be1b059f7 Fix redis client command 2016-12-10 21:50:20 +01:00
data Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00
.gitignore Some changes 2016-12-09 21:10:11 +01:00
README.md Fix redis client command 2016-12-10 21:50:20 +01:00
build-all.sh mailcow dockerized 2016-12-09 20:39:02 +01:00
build-dovecot.sh Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00
build-memcached.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
build-mysql.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
build-network.sh mailcow dockerized 2016-12-09 20:39:02 +01:00
build-nginx.sh Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00
build-php-fpm.sh First commit for rspamd settings 2016-12-10 00:39:27 +01:00
build-postfix.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
build-redis.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
build-rmilter.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
build-rspamd.sh Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00
build-sogo.sh Fix messages and rebuild without cache 2016-12-09 20:52:19 +01:00
fix-permissions.sh Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00
mailcow.conf Fixes, working rspamd settings, generate DKIM keys in PHP 2016-12-10 21:49:41 +01:00

README.md

mailcow-dockerized

Installation

  1. Open mailcow.conf and change stuff, do not use special chars in passwords. This will be fixed soon.

  2. Run ./build-all.sh

  3. Set a rspamd controller password (see section "rspamd")

Done.

The default username for mailcow is admin with password moohoo.

Usage

build-*.files

(Re)build a container:

./build-$name.sh 

Any previous container with the same name will be stopped and removed. No persistent data is deleted at any time. If an image exists, you will be asked wether or not to repull/rebuild it.

Logs

You can use docker logs $name for almost all containers. Only rmilter does not log to stdout. You can check rspamd logs for rmilter reponses.

When a process dies, the container dies, too. Except for Postfix' container.

MySQL

Connect to MySQL database:

./build-mysql.sh --client

Init schema (will also be installed when running ./build-mysql.sh without parameters):

./build-mysql.sh --init-schema

Reset mailcow admin to admin:moohoo:

./build-mysql.sh --reset-admin

Redis

Connect to redis database:

./build-mysql.sh --client

rspamd

Use rspamadm:

docker exec -it rspamd-mailcow rspamadm --help

Use rspamc:

docker exec -it rspamd-mailcow rspamc --help

Set rspamd controller password:

# Generate hash
docker exec -it rspamd-mailcow rspamadm pw

Replace given hash in data/conf/rspamd/override.d/worker-controller.inc:

enable_password = "myhash";

Restart rspamd:

docker restart rspamd-mailcow

Remove persistent data

MySQL:

docker stop mysql-mailcow
docker rm mysql-mailcow
rm -rf data/db/mysql/*
./build-mysql.sh

Redis:

# If you feel hardcore:
docker stop redis-mailcow
docker rm redus-mailcow
rm -rf data/db/redis/*
./build-redis.sh

## It is almost always enough to just flush all keys:
./build-redis client
# FLUSHALL [ENTER]