]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Merge pull request #8365 from nupplaphil/bug/mail_fix_text
[friendica.git] / static / defaults.config.php
index e8211d597d713088cb3998cf51e60143b114c7d4..110c016eb0b2e1bf626879b63d17dac3dd612ed0 100644 (file)
@@ -1,12 +1,28 @@
 <?php
-
-// CONFIG.PHP
-
-/* This file declares the default values for the base config of Friendica.
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * 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 [
@@ -211,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,
@@ -297,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,
@@ -475,6 +496,10 @@ return [
                // Logs every call to /inbox as a JSON file in Friendica's temporary directory
                'ap_inbox_log' => false,
 
+               // show_direction (Boolean)
+               // Display if a post had been fetched or had been pushed towards our server
+               'show_direction' => false,
+
                // total_ap_delivery (Boolean)
                // Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
                'total_ap_delivery' => false,