Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Wiedmann <carsten_sttgt@gmx.de>2018-11-13 01:26:35 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2018-11-29 18:02:35 +0300
commit446d96f3eb405302b75a3f0de094019dc25e5b44 (patch)
treed9316d6efc759b9cb4e0da4d83307c732cff3e19 /config/config.sample.php
parent3da7364c364445997727133d04b4a053b90321f8 (diff)
Apply patch from @cwiedmann but drop -oi option for pipe
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'config/config.sample.php')
-rw-r--r--config/config.sample.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 5190e46ad7f..7a86070c18f 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -422,6 +422,19 @@ $CONFIG = array(
'mail_send_plaintext_only' => false,
/**
+ * Which mode is used for sendmail/qmail: ``smtp`` or ``pipe``.
+ *
+ * For ``smtp`` the sendmail binary is started with the parameter ``-bs``:
+ * - Use the SMTP protocol on standard input and output.
+ *
+ * For ``pipe`` the binary is started with the parameters ``-t``:
+ * - Read message from STDIN and extract recipients.
+ *
+ * Defaults to ``smtp``
+ */
+'mail_sendmailmode' => 'smtp',
+
+/**
* Proxy Configurations
*/