diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-25 16:11:07 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-25 16:11:07 +0100 |
commit | 047f1988c3d3831e46504e0083372602a3f5446b (patch) | |
tree | 282af0690052a911d2c93e9f47ccf4493d2b0f23 /config | |
parent | ff4d62132af1950c77a6fb56bc16e3cc9d3a83a0 (diff) | |
parent | 688fe0baa89f0150f3c8123c64d7cff5caa0511b (diff) | |
download | nextcloud-server-047f1988c3d3831e46504e0083372602a3f5446b.tar.gz nextcloud-server-047f1988c3d3831e46504e0083372602a3f5446b.zip |
Merge branch 'master' into no-inline-js
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 864c66f7e35..acc5547ecd1 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -66,6 +66,9 @@ $CONFIG = array( /* URL of the appstore to use, server should understand OCS */ "appstoreurl" => "http://api.apps.owncloud.com/v1", +/* Enable SMTP class debugging */ +"mail_smtpdebug" => false, + /* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */ "mail_smtpmode" => "sendmail", @@ -75,6 +78,13 @@ $CONFIG = array( /* Port to use for sending mail, depends on mail_smtpmode if this is used */ "mail_smtpport" => 25, +/* SMTP server timeout in seconds for sending mail, depends on mail_smtpmode if this is used */ +"mail_smtptimeout" => 10, + +/* SMTP connection prefix or sending mail, depends on mail_smtpmode if this is used. + Can be '', ssl or tls */ +"mail_smtpsecure" => "", + /* authentication needed to send mail, depends on mail_smtpmode if this is used * (false = disable authentication) */ |