@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -8
-8
conf/default.conf.php
··· 630 630 // be enabled in production. 631 631 'phabricator.developer-mode' => false, 632 632 633 - // When users write comments which have URIs, they'll be automatically linked 634 - // if the protocol appears in this set. This whitelist is primarily to prevent 635 - // security issues like javascript:// URIs. 636 - 'uri.allowed-protocols' => array( 637 - 'http' => true, 638 - 'https' => true, 639 - ), 640 - 641 633 // Should Phabricator show beta applications on the homepage 642 634 'phabricator.show-beta-applications' => false, 643 635
+1
src/applications/config/option/PhabricatorSecurityConfigOptions.php
··· 119 119 array( 120 120 'http' => true, 121 121 'https' => true, 122 + 'mailto' => true, 122 123 )) 123 124 ->setSummary( 124 125 pht("Determines which URI protocols are auto-linked."))