]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Restore system.show_unsupported_addons default value
[friendica.git] / static / defaults.config.php
index b4471af25caf81b1bf437dbf31637bafd83f1fe8..67fe10391043e71bc4e3a3327f9e9ea39845fe88 100644 (file)
@@ -52,8 +52,8 @@ return [
        ],
        'system' => [
                // allowed_link_protocols (Array)
-               // Allowed protocols in links URLs, add at your own risk. http is always allowed.
-               'allowed_link_protocols' => ['ftp', 'ftps', 'mailto', 'cid', 'gopher'],
+               // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
+               'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
 
                // always_show_preview (Boolean)
                // Only show small preview pictures.
@@ -189,6 +189,11 @@ return [
                // For development only. Disables the item cache.
                'ignore_cache' => false,
 
+               // insecure_imap (Boolean)
+               // If enabled, users are allowed to connect to their IMAP servers unencrypted.
+               // For security reasons this is disabled by default.
+               'insecure_imap' => false,
+
                // instances_social_key (String)
                // Key to the API of https://instances.social which retrieves data about mastodon servers.
                // See https://instances.social/api/token to get an API key.
@@ -369,6 +374,14 @@ return [
                // When the global community page is enabled, use this option to display a hint above the stream, that this is a collection of all public top-level postings that arrive on your node.
                'show_global_community_hint' => false,
 
+               // show_received (Boolean)
+               // Show the receive data along with the post creation date
+               'show_received' => true,
+
+               // show_received_seconds (Integer)
+               // Display the received date when the difference between received and created is higher than this.
+               'show_received_seconds' => 500,
+
                // show_unsupported_addons (Boolean)
                // Show all addons including the unsupported ones.
                'show_unsupported_addons' => false,
@@ -427,6 +440,10 @@ return [
                // Setting 0 would allow maximum worker queues at all times, which is not recommended.
                'worker_load_exponent' => 3,
 
+               // worker_defer_limit (Integer)
+               // Per default the systems tries delivering for 15 times before dropping it.
+               'worker_defer_limit' => 15,
+
                // xrd_timeout (Integer)
                // Timeout in seconds for fetching the XRD links.
                'xrd_timeout' => 20,