Fix config files

master
andryyy 2017-03-02 11:18:34 +01:00
parent a95800e476
commit dfc88ccfa2
1 changed files with 64 additions and 57 deletions

View File

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