1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +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:
epriestley 2019-01-14 09:05:40 -08:00
parent 360ebce00f
commit 0b8f24dfd3
2 changed files with 2 additions and 2 deletions

View file

@ -188,7 +188,7 @@ EODOC
pht('Configuring Outbound Email'))); pht('Configuring Outbound Email')));
return array( return array(
$this->newOption('cluster.mailers', 'cluster.mailers', null) $this->newOption('cluster.mailers', 'cluster.mailers', array())
->setHidden(true) ->setHidden(true)
->setDescription($mailers_description), ->setDescription($mailers_description),
$this->newOption( $this->newOption(

View file

@ -235,7 +235,7 @@ To use this mailer, set `type` to `sendmail`. There are no `options` to
configure. configure.
Mailer: STMP Mailer: SMTP
============ ============
You can use this adapter to send mail via an external SMTP server, like Gmail. You can use this adapter to send mail via an external SMTP server, like Gmail.