X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fdefault.php;h=554d3ae63ceff4f518dcfc25b3abaf2e723ac084;hb=88f7bb1ed5faded5563eeb1d75d5fb44126b0712;hp=e04f10b080274c8ec42de6cf5b57700d94156e69;hpb=34114e87bed31e9546ad0a85d6b83cf1e0cb2b72;p=quix0rs-gnu-social.git diff --git a/lib/default.php b/lib/default.php index e04f10b080..554d3ae63c 100644 --- a/lib/default.php +++ b/lib/default.php @@ -33,7 +33,7 @@ $default = 'nickname' => 'gnusocial', 'wildcard' => null, 'server' => $_server, - 'theme' => 'neo', + 'theme' => 'neo-gnu', 'path' => $_path, 'logfile' => null, 'logo' => null, @@ -48,16 +48,17 @@ $default = 'languages' => get_all_languages(), 'email' => array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null, + 'fakeaddressrecovery' => true, 'broughtby' => null, 'timezone' => 'UTC', 'broughtbyurl' => null, 'closed' => false, 'inviteonly' => true, - 'private' => true, + 'private' => false, 'ssl' => 'never', 'sslserver' => null, 'dupelimit' => 60, // default for same person saying the same thing - 'textlimit' => 0, // in chars; 0 == no limit + 'textlimit' => 1000, // in chars; 0 == no limit 'indent' => true, 'use_x_sendfile' => false, 'notice' => null, // site wide notice text @@ -113,9 +114,9 @@ $default = 'license' => array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private' 'owner' => null, # can be name of content owner e.g. for enterprise - 'url' => 'http://creativecommons.org/licenses/by/3.0/', + 'url' => 'https://creativecommons.org/licenses/by/3.0/', 'title' => 'Creative Commons Attribution 3.0', - 'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'), + 'image' => $_path . '/theme/licenses/cc_by_3.0_80x15.png'), 'mail' => array('backend' => 'mail', 'params' => null, @@ -126,8 +127,9 @@ $default = 'profile' => array('banned' => array(), 'biolimit' => null, + 'changenick' => false, 'backup' => true, - 'restore' => true, + 'restore' => false, 'delete' => false, 'move' => true), 'image' => @@ -144,7 +146,7 @@ $default = 'path' => $_path . '/background/', 'ssl' => null), 'public' => - array('localonly' => true, + array('localonly' => false, 'blacklist' => array(), 'autosource' => array()), 'theme' => @@ -180,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' => @@ -206,6 +208,9 @@ $default = 'newuser' => array('default' => null, 'welcome' => null), + 'linkify' => array( + 'bare_domains' => false, // convert domain.com to domain.com ? + ), 'attachments' => array('server' => null, 'dir' => INSTALLDIR . '/file/', @@ -249,14 +254,17 @@ $default = 'user_quota' => 50000000, 'monthly_quota' => 15000000, 'uploads' => true, + 'filename_base' => 'hash', // for new files, choose one: 'upload', 'hash' + 'show_html' => false, // show (filtered) text/html attachments (and oEmbed HTML etc.). Doesn't affect AJAX calls. 'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info 'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages. ), 'thumbnail' => array('crop' => false, // overridden to true if thumb height === null - 'maxsize' => 500, // thumbs bigger than this will not be generated - 'width' => 500, - 'height' => 250), + 'maxsize' => 1000, // thumbs with an edge larger than this will not be generated + 'width' => 450, + 'height' => 600, + 'animated' => false), // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin 'application' => array('desclimit' => null), 'group' => @@ -269,7 +277,7 @@ $default = 'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true) 'desclimit' => null), 'oembed' => - array('endpoint' => 'https://noembed.com/embed/', + array('endpoint' => null, // 'https://noembed.com/embed/' for proxied oEmbed data 'order' => array('built-in', 'well-known', 'service', 'discovery'), ), 'search' => @@ -278,6 +286,11 @@ $default = 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 @@ -291,24 +304,34 @@ $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(), + 'AntiBrute' => array(), 'Bookmark' => array(), 'ClientSideShorten' => array(), + 'DefaultLayout' => array(), + 'Directory' => array(), + 'DirectMessage' => array(), 'EmailAuthentication' => array(), 'Event' => array(), 'Oembed' => array(), 'OpenID' => array(), 'OpportunisticQM' => array(), + 'OStatus' => array(), 'Poll' => array(), - 'QnA' => array(), 'SearchSub' => array(), 'TagSub' => array(), + 'WebFinger' => array(), ), 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories 'server' => null, @@ -316,7 +339,6 @@ $default = 'path' => null, 'sslpath' => null, ), - 'pluginlist' => array(), 'admin' => array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')), 'singleuser' => @@ -338,7 +360,8 @@ $default = 'maxurllength' => 100, 'maxnoticelength' => -1), 'http' => // HTTP client settings when contacting other sites - array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') + array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer") + 'ssl_verify_host' => true, // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl 'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.) 'proxy_host' => null, 'proxy_port' => null,