1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-07-17 01:42:24 +02:00

Fix config files

This commit is contained in:
andryyy
2017-03-02 11:18:34 +01:00
parent a95800e476
commit dfc88ccfa2

View File

@ -285,63 +285,70 @@ See [Rspamd documentation](https://rspamd.com/doc/index.html)
# Adjust service configurations
The most important configuration files are mounted from the host into the related containers:
```
data/conf/
├── dovecot
   ── dovecot.conf
   ├── dovecot-master.passwd
   ├── sieve_after
   ── sql
   ├── dovecot-dict-sql.conf
   └── dovecot-mysql.conf
├── mysql
   └── my.cnf
├── nginx
   ── dynmaps.conf
   ├── listen.template
   ── site.conf
├── bind9
   └── named.conf
├── postfix
   ├── main.cf
   ├── master.cf
   ├── postscreen_access.cidr
   ├── smtp_dsn_filter
   └── sql
   ├── mysql_relay_recipient_maps.cf
   ├── mysql_tls_enforce_in_policy.cf
   ├── mysql_tls_enforce_out_policy.cf
   ├── mysql_virtual_alias_domain_catchall_maps.cf
   ├── mysql_virtual_alias_domain_maps.cf
   ── mysql_virtual_alias_maps.cf
   ├── mysql_virtual_domains_maps.cf
   ├── mysql_virtual_mailbox_maps.cf
   ├── mysql_virtual_relay_domain_maps.cf
   ├── mysql_virtual_sender_acl.cf
   ── mysql_virtual_spamalias_maps.cf
├── rmilter
   └── rmilter.conf
├── rspamd
   ├── dynmaps
      ├── authoritative.php
      ── settings.php
      ├── tags.php
      └── vars.inc.php -> ../../../web/inc/vars.inc.php
│   ├── local.d
│   │   ├── dkim.conf
│   │   ├── metrics.conf
│   │   ├── options.inc
│   │   ├── redis.conf
│   │   ├── rspamd.conf.local
│   │   └── statistic.conf
│   ├── lua
│   │   ── rspamd.local.lua
│   └── override.d
│   ├── logging.inc
│   ├── worker-controller.inc
│   └── worker-normal.inc
└── sogo
├── sieve.creds
└── sogo.conf
data/conf
├── bind9
   ── named.conf
├── dovecot
   ├── dovecot.conf
   ── dovecot-master.passwd
   ├── sieve_after
   └── sql
   ├── dovecot-dict-sql.conf
   └── dovecot-mysql.conf
├── mysql
   ── my.cnf
├── nginx
   ── dynmaps.conf
   ├── site.conf
   └── templates
   ├── listen_plain.template
   ├── listen_ssl.template
   └── server_name.template
├── pdns
   ├── pdns_custom.lua
   └── recursor.conf
├── postfix
   ├── main.cf
   ├── master.cf
   ├── postscreen_access.cidr
   ├── smtp_dsn_filter
   ── sql
   ├── mysql_relay_recipient_maps.cf
   ├── mysql_tls_enforce_in_policy.cf
   ├── mysql_tls_enforce_out_policy.cf
   ├── mysql_virtual_alias_domain_catchall_maps.cf
   ── mysql_virtual_alias_domain_maps.cf
   ├── mysql_virtual_alias_maps.cf
   ├── mysql_virtual_domains_maps.cf
   ├── mysql_virtual_mailbox_maps.cf
   ├── mysql_virtual_relay_domain_maps.cf
   ├── mysql_virtual_sender_acl.cf
   ── mysql_virtual_spamalias_maps.cf
├── rmilter
   └── rmilter.conf
├── rspamd
   ├── dynmaps
      ├── authoritative.php
      ├── settings.php
      ├── tags.php
      └── vars.inc.php -> ../../../web/inc/vars.inc.php
│   ├── local.d
│   │   ├── dkim.conf
│   │   ── metrics.conf
│   │   ├── options.inc
│   │   ├── redis.conf
│   │   ├── rspamd.conf.local
│   │   └── statistic.conf
│   ├── lua
│   │   └── rspamd.local.lua
│   └── override.d
│   ├── logging.inc
│   ├── worker-controller.inc
│   └── worker-normal.inc
└── sogo
├── sieve.creds
└── sogo.conf
```
Just change the according configuration file on the host and restart the related service: `docker-compose restart service-mailcow`
# Tagging