diff options
author | Branko Kokanovic <branko@kokanovic.org> | 2018-11-30 21:06:44 +0100 |
---|---|---|
committer | Branko Kokanovic <branko@kokanovic.org> | 2018-11-30 22:36:03 +0100 |
commit | 72d97b44a752dc850f35c5ba830ae49bf3471815 (patch) | |
tree | b5ec24fa2c5c517b99024f1b98bc3eedf3ca66f7 /config | |
parent | cae600d205572d38f6215e5e250f9bf5d89e64ff (diff) | |
download | nextcloud-server-72d97b44a752dc850f35c5ba830ae49bf3471815.tar.gz nextcloud-server-72d97b44a752dc850f35c5ba830ae49bf3471815.zip |
Expose Swift Mailer streaming options in config, fixes #12702
Signed-off-by: Branko Kokanovic <branko@kokanovic.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 7a86070c18f..299e67c98fe 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -422,6 +422,13 @@ $CONFIG = array( 'mail_send_plaintext_only' => false, /** + * This depends on ``mail_smtpmode``. Array of additional streams options that + * will be passed to underlying Swift mailer implementation. + * Defaults to an empty array. + */ +'mail_smtpstreamoptions' => array(), + +/** * Which mode is used for sendmail/qmail: ``smtp`` or ``pipe``. * * For ``smtp`` the sendmail binary is started with the parameter ``-bs``: |