mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
e990488889
Summary: There were a few defaults that got changed when porting to PHP. Most of them seem to be accidental, so this diff sets them back to correctness. Test Plan: php> require '../libphutil/src/__phutil_library_init__.php'; php> require 'src/__phutil_library_init__.php' php> $a = PhabricatorApplicationConfigOptions::loadAllOptions() php> $b = require 'conf/default.conf.php'; php> $x = array(); php> foreach($a as $key => $obj) { $x[$key] = $obj->getDefault(); } php> foreach($x as $key => $default) { if ($b[$key] != $default) { echo "$key has different default.\n"; } } log.access.format has different default. (seems to be intentional) PHP Notice: Undefined index: phabricator.env in /usr/lib/python2.7/site-packages/phpsh/phpsh.php(577) : eval()'d code on line 1 (no longer in config file) PHP Notice: Undefined index: test.value in /usr/lib/python2.7/site-packages/phpsh/phpsh.php(577) : eval()'d code on line 1 (not in config file) metamta.default-address has different default. (intentional) metamta.domain has different default. (intentional) PHP Notice: Undefined index: phid.external-loaders in /usr/lib/python2.7/site-packages/phpsh/phpsh.php(577) : eval()'d code on line 1 (no longer in config file) phame.skins has different default. (fixed in D4618) Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4621
59 lines
2.1 KiB
PHP
59 lines
2.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorNotificationConfigOptions
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
public function getName() {
|
|
return pht("Notifications");
|
|
}
|
|
|
|
public function getDescription() {
|
|
return pht("Configure real-time notifications.");
|
|
}
|
|
|
|
public function getOptions() {
|
|
return array(
|
|
$this->newOption('notification.enabled', 'bool', false)
|
|
->setBoolOptions(
|
|
array(
|
|
pht("Enable Real-Time Notifications"),
|
|
pht("Disable Real-Time Notifications"),
|
|
))
|
|
->setSummary(pht('Enable real-time notifications.'))
|
|
->setDescription(
|
|
pht(
|
|
"Enable real-time notifications. You must also run a Node.js ".
|
|
"based notification server for this to work. Consult the ".
|
|
"documentation in 'Notifications User Guide: Setup and ".
|
|
"Configuration' for instructions.")),
|
|
$this->newOption(
|
|
'notification.client-uri',
|
|
'string',
|
|
'http://localhost:22280/')
|
|
->setDescription(pht('Location of the client server.')),
|
|
$this->newOption(
|
|
'notification.server-uri',
|
|
'string',
|
|
'http://localhost:22281/')
|
|
->setDescription(pht('Location of the notification receiver server.')),
|
|
$this->newOption('notification.user', 'string', null)
|
|
->setSummary(pht('Drop permissions to a less-privileged user.'))
|
|
->setDescription(
|
|
pht(
|
|
"The notifcation server must be started as root so it can bind ".
|
|
"to privileged ports, but if you specify a system user here it ".
|
|
"will drop permissions to that user after binding to the ports ".
|
|
"it needs.")),
|
|
$this->newOption('notification.log', 'string', '/var/log/aphlict.log')
|
|
->setDescription(pht('Location of the server log file.')),
|
|
$this->newOption(
|
|
'notification.pidfile',
|
|
'string',
|
|
'/var/run/aphlict.pid')
|
|
->setDescription(pht('Location of the server PID file.')),
|
|
$this->newOption('notification.debug', 'bool', false)
|
|
->setDescription(pht('Enable debug output in the browser.')),
|
|
);
|
|
}
|
|
|
|
}
|