]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/default.php
Changed thumbnail-only chmod to attachment-general chmod as recommended by mmn.
[quix0rs-gnu-social.git] / lib / default.php
index 6efeb406c47d58f7fc5df412e13576f0a440c563..72b82e820fa3026a39feae26da52529d513f6e66 100644 (file)
@@ -33,7 +33,7 @@ $default =
               'nickname' => 'gnusocial',
               'wildcard' => null,
               'server' => $_server,
-              'theme' => 'neo',
+              'theme' => 'neo-gnu',
               'path' => $_path,
               'logfile' => null,
               'logo' => null,
@@ -57,7 +57,7 @@ $default =
               '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 +113,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,12 +126,13 @@ $default =
         'profile' =>
         array('banned' => array(),
               'biolimit' => null,
+              'changenick' => false,
               'backup' => true,
               'restore' => true,
               'delete' => false,
               'move' => true),
         'image' =>
-        array('jpegquality' => 85),
+        array('jpegquality' => 95),
         'avatar' =>
         array('server' => null,
               'dir' => INSTALLDIR . '/avatar/',
@@ -144,7 +145,7 @@ $default =
               'path' => $_path . '/background/',
               'ssl' => null),
         'public' =>
-        array('localonly' => true,
+        array('localonly' => false,
               'blacklist' => array(),
               'autosource' => array()),
         'theme' =>
@@ -210,6 +211,7 @@ $default =
         array('server' => null,
               'dir' => INSTALLDIR . '/file/',
               'path' => $_path . '/file/',
+              'chmod' => 0644,        // Access rights (chmod) for any attachments
               'sslserver' => null,
               'sslpath' => null,
               'ssl' => null,
@@ -249,12 +251,16 @@ $default =
               'user_quota' => 50000000,
               'monthly_quota' => 15000000,
               'uploads' => true,
+              '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
-              'thumb_width' => 150,
-              'thumb_height' => 150,
-              'thumb_square' => true,
               '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' => 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' =>
@@ -267,7 +273,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' =>
@@ -291,20 +297,28 @@ $default =
         array('core' => array(
                             'AuthCrypt' => array(),
                             'Cronish' => array(),
+                            'Favorite' => array(),
                             'LRDD' => array(),
-                            'OpportunisticQM' => array(),
                             'StrictTransportSecurity' => array(),
                         ),
               'default' => array(
                             'Activity' => array(),
+                            'AntiBrute' => array(),
                             'Bookmark' => array(),
                             'ClientSideShorten' => 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,
@@ -334,7 +348,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,