mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Support mailto in Phabricator config defaults
Summary: Fixes T3949. Test Plan: grumble grumble Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T3949 Differential Revision: https://secure.phabricator.com/D8963
This commit is contained in:
parent
7fb89686d4
commit
58fbb0ae53
2 changed files with 1 additions and 8 deletions
|
@ -630,14 +630,6 @@ return array(
|
||||||
// be enabled in production.
|
// be enabled in production.
|
||||||
'phabricator.developer-mode' => false,
|
'phabricator.developer-mode' => false,
|
||||||
|
|
||||||
// When users write comments which have URIs, they'll be automatically linked
|
|
||||||
// if the protocol appears in this set. This whitelist is primarily to prevent
|
|
||||||
// security issues like javascript:// URIs.
|
|
||||||
'uri.allowed-protocols' => array(
|
|
||||||
'http' => true,
|
|
||||||
'https' => true,
|
|
||||||
),
|
|
||||||
|
|
||||||
// Should Phabricator show beta applications on the homepage
|
// Should Phabricator show beta applications on the homepage
|
||||||
'phabricator.show-beta-applications' => false,
|
'phabricator.show-beta-applications' => false,
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,7 @@ final class PhabricatorSecurityConfigOptions
|
||||||
array(
|
array(
|
||||||
'http' => true,
|
'http' => true,
|
||||||
'https' => true,
|
'https' => true,
|
||||||
|
'mailto' => true,
|
||||||
))
|
))
|
||||||
->setSummary(
|
->setSummary(
|
||||||
pht("Determines which URI protocols are auto-linked."))
|
pht("Determines which URI protocols are auto-linked."))
|
||||||
|
|
Loading…
Reference in a new issue