diff options
author | j-ed <juergen@eisfair.org> | 2013-01-26 12:04:06 +0100 |
---|---|---|
committer | j-ed <juergen@eisfair.org> | 2013-01-26 12:04:06 +0100 |
commit | 4d74738fe750cacd5c7ff40ce4652a8a4d19253c (patch) | |
tree | 8de384185723f9f93e31dbb32f040a7bf3739506 /config | |
parent | dcda792fbcb3e5743e345553e2fc53fd19a742b9 (diff) | |
download | nextcloud-server-4d74738fe750cacd5c7ff40ce4652a8a4d19253c.tar.gz nextcloud-server-4d74738fe750cacd5c7ff40ce4652a8a4d19253c.zip |
Update config/config.sample.php
added parameter mail_smtpauthtype to set SMTP authentication type.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index f26a53c1553..6ac161d2188 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -90,6 +90,10 @@ $CONFIG = array( */ "mail_smtpauth" => false, +/* authentication type needed to send mail, depends on mail_smtpmode if this is used + * Can be LOGIN (default), PLAIN or NTLM */ +"mail_smtpauthtype" => "LOGIN", + /* Username to use for sendmail mail, depends on mail_smtpauth if this is used */ "mail_smtpname" => "", |