From 62d5cfb31dbe24c24de9cb17fdd42768707437f9 Mon Sep 17 00:00:00 2001 From: andryyy Date: Mon, 9 Mar 2020 13:50:22 +0100 Subject: [PATCH] Add extra.cf and extra.conf information --- docs/u_e-dovecot-extra_conf.md | 7 +++++++ docs/u_e-postfix-extra_cf.md | 7 +++++++ mkdocs.yml | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/u_e-dovecot-extra_conf.md diff --git a/docs/u_e-dovecot-extra_conf.md b/docs/u_e-dovecot-extra_conf.md new file mode 100644 index 000000000..f284269bb --- /dev/null +++ b/docs/u_e-dovecot-extra_conf.md @@ -0,0 +1,7 @@ +Create a file `data/conf/dovecot/extra.conf` - if missing - and add your additional content here. + +Restart `dovecot-mailcow` to apply your changes: + +``` +docker-compose restart dovecot-mailcow +``` diff --git a/docs/u_e-postfix-extra_cf.md b/docs/u_e-postfix-extra_cf.md index e2f5338ff..e2f327dae 100644 --- a/docs/u_e-postfix-extra_cf.md +++ b/docs/u_e-postfix-extra_cf.md @@ -3,3 +3,10 @@ Please create a new file `data/conf/postfix/extra.cf` for overrides or additiona Postfix will complain about duplicate values once after starting postfix-mailcow, this is intended. Syslog-ng was configured to hide those warnings while Postfix is running, to not spam the log files with unnecessary information every time a service is used. + +Restart `postfix-mailcow` to apply your changes: + +``` +docker-compose restart postfix-mailcow +``` + diff --git a/mkdocs.yml b/mkdocs.yml index f498b1966..8c48c117f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -68,7 +68,7 @@ nav: - 'Postfix': - 'Custom transport maps': 'u_e-postfix-custom_transport.md' - 'Whitelist IP in Postscreen': 'u_e-postfix-postscreen_whitelist.md' - - 'Customize or expand main.cf': 'u_e-postfix-extra_cf.md' + - 'Customize/Expand main.cf': 'u_e-postfix-extra_cf.md' - 'Disable Sender Addresses Verification': 'u_e-postfix-disable_sender_verification.md' - 'Max. message size (attachment size)': 'u_e-postfix-attachment_size.md' - 'Statistics with pflogsumm': 'u_e-postfix-pflogsumm.md' @@ -77,6 +77,7 @@ nav: - 'Dovecot': - "(Re-)Enable any and all authenticated ACL settings": 'u_e-dovecot-any_acl.md' - "Expunge a User's Mails": 'u_e-dovecot-expunge.md' + - "Customize/Expand dovecot.conf": 'u_e-dovecot-extra_conf.md' - 'Mail crypt': 'u_e-dovecot-mail-crypt.md' - 'More Examples with DOVEADM': 'u_e-dovecot-more.md' - 'Move vmail volume': 'u_e-dovecot-vmail-volume.md'