diff options
author | Carsten Wiedmann <carsten_sttgt@gmx.de> | 2018-11-12 23:26:35 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2018-11-29 16:02:35 +0100 |
commit | 446d96f3eb405302b75a3f0de094019dc25e5b44 (patch) | |
tree | d9316d6efc759b9cb4e0da4d83307c732cff3e19 /config | |
parent | 3da7364c364445997727133d04b4a053b90321f8 (diff) | |
download | nextcloud-server-446d96f3eb405302b75a3f0de094019dc25e5b44.tar.gz nextcloud-server-446d96f3eb405302b75a3f0de094019dc25e5b44.zip |
Apply patch from @cwiedmann but drop -oi option for pipe
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 13 |
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 */ |