]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Moved updating personal contacts to updatecontact
[friendica.git] / static / defaults.config.php
index fbd3787b7607830815fe3d06a9d29e7e63243425..455272926e8cd4ab01c3d2f6088d74d98441f16e 100644 (file)
@@ -32,6 +32,11 @@ return [
                // Can contain the port number with the syntax "hostname:port".
                'hostname' => '',
 
+               // port (Integer)
+               // Port of the database server.
+               // Can be used instead of adding a port number to the hostname
+               'port' => null,
+
                // user (String)
                // Database user name. Please don't use "root".
                'username' => '',
@@ -126,6 +131,10 @@ return [
                // Don't display sharing accounts on the global community
                'community_no_sharer' => false,
 
+               // contact_update_limit (Integer)
+               // How much contacts should be checked at a time?
+               'contact_update_limit' => 100,
+
                // cron_interval (Integer)
                // Minimal period in minutes between two calls of the "Cron" worker job.
                'cron_interval' => 5,
@@ -182,9 +191,15 @@ return [
 
                // dbclean-expire-limit (Integer)
                // This defines the number of items that are to be deleted in a single call.
-               // Reduce this value when you are getting memory issues.
+               // Reduce this value when you are getting lock issues.
+               // A value of 0 disables the deletion process.
                'dbclean-expire-limit' => 1000,
 
+               // daemon_watchdog (Boolean)
+               // Enable regular checking if the daemon is running.
+               // If it is not running and hadn't been terminated normally, it will be started automatically.
+               'daemon_watchdog' => false,
+
                // diaspora_test (Boolean)
                // For development only. Disables the message transfer.
                'diaspora_test' => false,
@@ -226,6 +241,10 @@ return [
                // restricts develop log writes to requests originating from this IP address.
                'dlogip' => '',
 
+               // expire-notify-priority (integer)
+               // Priority for the expirary notification 
+               'expire-notify-priority' => PRIORITY_LOW,
+
                // free_crawls (Integer)
                // Number of "free" searches when system => permit_crawling is enabled.
                'free_crawls' => 10,
@@ -239,6 +258,10 @@ return [
                // This can alternatively be set on a per account basis in the pconfig table.
                'groupedit_image_limit' => 400,
 
+               // gserver_update_limit (Integer)
+               // How much servers should be checked at a time?
+               'gserver_update_limit' => 100,
+
                // hsts (Boolean)
                // Enables the sending of HTTP Strict Transport Security headers.
                'hsts' => false,
@@ -294,6 +317,16 @@ return [
                // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
                'logger_config' => 'stream',
 
+               // maintenance_start (String)
+               // Start of the window for the daily maintenance cron call.
+               // The system timezone is used when no timezone is defined here.
+               'maintenance_start' => '01:00 +00:00',
+
+               // maintenance_end (String)
+               // End of the window for the daily maintenance cron call
+               // The system timezone is used when no timezone is defined here.
+               'maintenance_end' => '03:00 +00:00',
+
                // max_batch_queue (Integer)
                // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
                'max_batch_queue' => 1000,
@@ -358,6 +391,10 @@ return [
                // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
                'min_poll_interval' => 15,
 
+               // minimum_posting_interval (Integer)
+               // Minimum interval between two feed posts per user
+               'minimum_posting_interval' => 0,
+
                // no_count (Boolean)
                // Don't do count calculations (currently only when showing photo albums).
                'no_count' => false,
@@ -475,6 +512,10 @@ return [
                // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
                'throttle_limit_month' => 0,
 
+               // update_active_contacts (Boolean)
+               // When activated, only public contacts will be activated regularly that are used for example in items or tags.
+               'update_active_contacts' => false,
+
                // username_min_length (Integer)
                // The minimum character length a username can be.
                // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.