Page MenuHomePhorge

PhabricatorMailSetupCheck.php
No OneTemporary

Size
666 B
Referenced Files
None
Subscribers
None

PhabricatorMailSetupCheck.php

<?php
final class PhabricatorMailSetupCheck extends PhabricatorSetupCheck {
public function getDefaultGroup() {
return self::GROUP_OTHER;
}
protected function executeChecks() {
if (PhabricatorEnv::getEnvConfig('cluster.mailers')) {
return;
}
$message = pht(
'You haven\'t configured mailers yet, so this server won\'t be able '.
'to send outbound mail or receive inbound mail. See the '.
'configuration setting "cluster.mailers" for details.');
$this->newIssue('cluster.mailers')
->setName(pht('Mailers Not Configured'))
->setMessage($message)
->addPhabricatorConfig('cluster.mailers');
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 5, 11:59 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
78542
Default Alt Text
PhabricatorMailSetupCheck.php (666 B)

Event Timeline