X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fdefault.php;h=7894dbb6745e4027be32f9351119f171fce0cce2;hb=4ea396f8718648ef6b900ea2aa8a7cad9f14d721;hp=dfa3626927884a23b87da853c3311d6e903cb7ea;hpb=d7d96806a4ac83fc9260e67b94cb94eea6f6d4a4;p=quix0rs-gnu-social.git diff --git a/lib/default.php b/lib/default.php index dfa3626927..7894dbb674 100644 --- a/lib/default.php +++ b/lib/default.php @@ -48,6 +48,7 @@ $default = 'languages' => get_all_languages(), 'email' => array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null, + 'fakeaddressrecovery' => true, 'broughtby' => null, 'timezone' => 'UTC', 'broughtbyurl' => null, @@ -128,7 +129,7 @@ $default = 'biolimit' => null, 'changenick' => false, 'backup' => true, - 'restore' => true, + 'restore' => false, 'delete' => false, 'move' => true), 'image' => @@ -181,7 +182,7 @@ $default = array('dropoff' => 864000.0, # controls weighting based on age 'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days 'daemon' => - array('piddir' => '/var/run', + array('piddir' => sys_get_temp_dir(), 'user' => false, 'group' => false), 'emailpost' => @@ -275,16 +276,17 @@ $default = 'maxpeople' => 500, // maximum no. of people with the same tag by the same user 'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true) 'desclimit' => null), - 'oembed' => - array('endpoint' => null, // 'https://noembed.com/embed/' for proxied oEmbed data - 'order' => array('built-in', 'well-known', 'service', 'discovery'), - ), 'search' => array('type' => 'like'), 'sessions' => array('handle' => false, // whether to handle sessions ourselves 'debug' => false, // debugging output for sessions 'gc_limit' => 1000), // max sessions to expire at a time + 'htmlfilter' => array( // purify HTML through htmLawed + 'img' => true, + 'video' => true, + 'audio' => true, + ), 'notice' => array('contentlimit' => null, 'defaultscope' => null, // null means 1 if site/private, 0 otherwise @@ -298,11 +300,14 @@ $default = array('disabled' => true), 'plugins' => array('core' => array( + 'ActivityVerb' => array(), + 'ActivityVerbPost' => array(), + 'ActivityModeration' => array(), 'AuthCrypt' => array(), 'Cronish' => array(), 'Favorite' => array(), + 'Share' => array(), 'LRDD' => array(), - 'StrictTransportSecurity' => array(), ), 'default' => array( 'Activity' => array(), @@ -319,7 +324,6 @@ $default = 'OpportunisticQM' => array(), 'OStatus' => array(), 'Poll' => array(), - 'QnA' => array(), 'SearchSub' => array(), 'TagSub' => array(), 'WebFinger' => array(),