diff options
author | j-ed <juergen@eisfair.org> | 2013-01-22 14:24:00 +0100 |
---|---|---|
committer | j-ed <juergen@eisfair.org> | 2013-01-22 14:24:00 +0100 |
commit | 9c069530cbe60dff043cf5bf0aae28546cb419c7 (patch) | |
tree | e25d2f5cb2d7bfe031a0dd983aa53046f9899236 /config | |
parent | df6ba6955d8fe9692ce9028f71cde962dcc89030 (diff) | |
download | nextcloud-server-9c069530cbe60dff043cf5bf0aae28546cb419c7.tar.gz nextcloud-server-9c069530cbe60dff043cf5bf0aae28546cb419c7.zip |
Update config/config.sample.php
Added three additional mail_smtp.. parameters.
- mail_smtpdebug - enable debug messages to analyse SMTP problems.
- mail_smtptimeout - set SMTP timeout which is set to 10s by
default and this is sometimes to short especially if a malware/
spam scanner is used.
- mail_smtpsecure - force secure SMTP connections.
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 dafb536fa6f..0e3ce8bcaf2 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) */ |