mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix bad "SMTP" and "cluster.mailers" default value
Summary: See note in D19964. Test Plan: O_o Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D19966
This commit is contained in:
parent
360ebce00f
commit
0b8f24dfd3
2 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@ EODOC
|
|||
pht('Configuring Outbound Email')));
|
||||
|
||||
return array(
|
||||
$this->newOption('cluster.mailers', 'cluster.mailers', null)
|
||||
$this->newOption('cluster.mailers', 'cluster.mailers', array())
|
||||
->setHidden(true)
|
||||
->setDescription($mailers_description),
|
||||
$this->newOption(
|
||||
|
|
|
@ -235,7 +235,7 @@ To use this mailer, set `type` to `sendmail`. There are no `options` to
|
|||
configure.
|
||||
|
||||
|
||||
Mailer: STMP
|
||||
Mailer: SMTP
|
||||
============
|
||||
|
||||
You can use this adapter to send mail via an external SMTP server, like Gmail.
|
||||
|
|
Loading…
Reference in a new issue