X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=ab47eef19ce40e0ca90f85e5c0cba30bb9892968;hb=d09b3f5bdeae444f785f6283e55dbf2f61caadac;hp=d97e8694d242119fb4a25003fc2e5b33f6cc47b5;hpb=0191f5242bfd3bc2d8d3139bf2f144a7d738cbe7;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index d97e8694d2..ab47eef19c 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -1,12 +1,28 @@ . + * + * This file declares the default values for the base config of Friendica. * * These configuration values aren't accessible from the admin settings page and custom values must be set in config/local.config.php * * Please don't edit this file directly as its content may change in the upcoming versions. + * */ return [ @@ -59,6 +75,10 @@ return [ // Only show small preview pictures. 'always_show_preview' => false, + // ap_always_bcc (Boolean) + // Adresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance. + 'ap_always_bcc' => false, + // archival_days (Integer) // Number of days that we try to deliver content before we archive a contact. 'archival_days' => 32, @@ -207,6 +227,15 @@ return [ // If set true registration is only possible after a current member of the node has send an invitation. 'invitation_only' => false, + // itemspage_network (Integer) + // default number of items per page in stream pages (network, community, profile/contact statuses, search) + 'itemspage_network' => 40, + + // itemspage_network_mobile (Integer) + // default number of items per page in stream pages (network, community, profile/contact statuses, search) + // on detected mobile devices + 'itemspage_network_mobile' => 20, + // like_no_comment (Boolean) // Don't update the "commented" value of an item when it is liked. 'like_no_comment' => false, @@ -293,10 +322,6 @@ return [ // Don't show smilies. 'no_smilies' => false, - // no_view_full_size (Boolean) - // Don't add the link "View full size" under a resized image. - 'no_view_full_size' => false, - // optimize_items (Boolean) // Triggers an SQL command to optimize the item table before expiring items. 'optimize_items' => false, @@ -382,6 +407,10 @@ return [ // 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, + // show_unsupported_themes (Boolean) // Show all themes including the unsupported ones. 'show_unsupported_themes' => false,