From 3afbf12a46abcd152e82b64bd6540728293bf80b Mon Sep 17 00:00:00 2001 From: Darren McGrandle Date: Wed, 7 Feb 2018 12:01:12 -0800 Subject: [PATCH] Updated Overwrite Default Postfix Configuration (markdown) --- docs/content/advanced/override-defaults/postfix.md | 14 ++++++++++++++ .../overwrite-default-postfix-configuration.md | 7 ------- 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 docs/content/advanced/override-defaults/postfix.md delete mode 100644 docs/content/overwrite-default-postfix-configuration.md diff --git a/docs/content/advanced/override-defaults/postfix.md b/docs/content/advanced/override-defaults/postfix.md new file mode 100644 index 00000000..02827861 --- /dev/null +++ b/docs/content/advanced/override-defaults/postfix.md @@ -0,0 +1,14 @@ +The Postfix default configuration can easily be extended by providing a `config/postfix-main.cf` in postfix format. +This can also be used to add configuration that is not in our default configuration. + +For example, one common use of this file is for increasing the default maximum message size: +``` +# increase maximum message size + message_size_limit = 52428800 +``` + +[Postfix documentation](http://www.postfix.org/documentation.html) remains the best place to find configuration options. + +Each line in the provided file will be loaded into postfix. + +Have a look at the code for more information. \ No newline at end of file diff --git a/docs/content/overwrite-default-postfix-configuration.md b/docs/content/overwrite-default-postfix-configuration.md deleted file mode 100644 index e5008786..00000000 --- a/docs/content/overwrite-default-postfix-configuration.md +++ /dev/null @@ -1,7 +0,0 @@ -The Postfix default configuration can easily be overwritten by providing a `config/postfix-main.cf` in postfix format. -This can also be used to add configuration that is not in our default configuration. -[Postfix documentation](http://www.postfix.org/documentation.html) remains the best place to find configuration options. - -Each line in the provided file will be loaded into postfix. - -Have a look at the code for more information. \ No newline at end of file