Merge pull request #9849 from annando/user-item
[friendica.git/.git] / static / defaults.config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  * This file declares the default values for the base config of Friendica.
21  *
22  * These configuration values aren't accessible from the admin settings page and custom values must be set in config/local.config.php
23  *
24  * Please don't edit this file directly as its content may change in the upcoming versions.
25  *
26  */
27
28 return [
29         'database' => [
30                 // host (String)
31                 // Hostname or IP address of the database server.
32                 // Can contain the port number with the syntax "hostname:port".
33                 'hostname' => '',
34
35                 // port (Integer)
36                 // Port of the database server.
37                 // Can be used instead of adding a port number to the hostname
38                 'port' => null,
39
40                 // user (String)
41                 // Database user name. Please don't use "root".
42                 'username' => '',
43
44                 // pass (String)
45                 // Database user password. Please don't use empty passwords.
46                 'password' => '',
47
48                 // base (String)
49                 // Database name.
50                 'database' => '',
51
52                 // charset (String)
53                 // Database connection charset. Changing this value will likely corrupt special characters.
54                 'charset' => 'utf8mb4',
55
56                 // pdo_emulate_prepares (Boolean)
57                 // If enabled, the builtin emulation for prepared statements is used.
58                 // This can be used as a workaround for the database error "Prepared statement needs to be re-prepared".
59                 'pdo_emulate_prepares' => false,
60
61                 // disable_pdo (Boolean)
62                 // PDO is used by default (if available). Otherwise MySQLi will be used.
63                 'disable_pdo' => false,
64
65                 // persistent (Boolean)
66                 // This controls if the system should use persistent connections or not.
67                 // Persistent connections increase the performance.
68                 // On the other hand the number of open connections are higher,
69                 // this will most likely increase the system load.
70                 'persistent' => false,
71         ],
72         'config' => [
73                 // admin_email (Comma-separated list)
74                 // In order to perform system administration via the admin panel,
75                 // this must precisely match the email address of the person logged in.
76                 'admin_email' => '',
77
78                 // admin_nickname (String)
79                 // Nickname of the main admin user, used if there are more than one admin user defined in config => admin_email.
80                 'admin_nickname' => '',
81
82                 // max_import_size (Integer)
83                 // Maximum body size of DFRN and Mail messages in characters. 0 is unlimited.
84                 'max_import_size' => 200000,
85
86                 // php_path (String)
87                 // Location of PHP command line processor.
88                 'php_path' => 'php',
89         ],
90         'system' => [
91                 // adjust_poll_frequency (Boolean)
92                 // Automatically detect and set the best feed poll frequency.
93                 'adjust_poll_frequency' => false,
94
95                 // allowed_link_protocols (Array)
96                 // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
97                 'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
98
99                 // always_show_preview (Boolean)
100                 // Only show small preview pictures.
101                 'always_show_preview' => false,
102
103                 // ap_always_bcc (Boolean)
104                 // Adresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance.
105                 'ap_always_bcc' => false,
106
107                 // archival_days (Integer)
108                 // Number of days that we try to deliver content before we archive a contact.
109                 'archival_days' => 32,
110
111                 // auth_cookie_lifetime (Integer)
112                 // Number of days that should pass without any activity before a user who
113                 // chose "Remember me" when logging in is considered logged out.
114                 'auth_cookie_lifetime' => 7,
115
116                 // big_emojis (Boolean)
117                 // Display "Emoji Only" posts in big.
118                 'big_emojis' => false,
119
120                 // block_local_dir (Boolean)
121                 // Deny public access to the local user directory.
122                 'block_local_dir' => false,
123
124                 // community_no_sharer (Boolean)
125                 // Don't display sharing accounts on the global community
126                 'community_no_sharer' => false,
127
128                 // contact_update_limit (Integer)
129                 // How much contacts should be checked at a time?
130                 'contact_update_limit' => 100,
131
132                 // cron_interval (Integer)
133                 // Minimal period in minutes between two calls of the "Cron" worker job.
134                 'cron_interval' => 5,
135
136                 // cache_driver (database|memcache|memcached|redis|apcu)
137                 // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
138                 'cache_driver' => 'database',
139
140                 // config_adapter (jit|preload)
141                 // Allow to switch the configuration adapter to improve performances at the cost of memory consumption.
142                 'config_adapter' => 'jit',
143
144                 // curl_range_bytes (Integer)
145                 // Maximum number of bytes that should be fetched. Default is 0, which mean "no limit".
146                 'curl_range_bytes' => 0,
147
148                 // crawl_permit_period (Integer)
149                 // Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated.
150                 'crawl_permit_period' => 60,
151
152                 // db_log (Path)
153                 // Name of a logfile to log slow database queries.
154                 'db_log' => '',
155
156                 // db_log_index (Path)
157                 // Name of a logfile to log queries with bad indexes.
158                 'db_log_index' => '',
159
160                 // db_log_index_watch (Comma-separated list)
161                 // Watchlist of indexes to watch.
162                 'db_log_index_watch' => '',
163
164                 // db_log_index_denylist (Comma-separated list)
165                 // Deny list of indexes that shouldn't be watched.
166                 'db_log_index_denylist' => '',
167
168                 // db_loglimit (Integer)
169                 // If a database call lasts longer than this value in seconds it is logged.
170                 // Inactive if system => db_log is empty.
171                 'db_loglimit' => 10,
172
173                 // db_loglimit_index (Integer)
174                 // Number of index rows needed to be logged for indexes on the watchlist. 0 to disable.
175                 'db_loglimit_index' => 0,
176
177                 // db_loglimit_index_high (Integer)
178                 // Number of index rows to be logged anyway (for any index). 0 to disable.
179                 'db_loglimit_index_high' => 0,
180
181                 // dbclean_expire_conversation (Integer)
182                 // When DBClean is enabled, any entry in the conversation table will be deleted after this many days.
183                 // This data is used for ActivityPub, so it shouldn't be lower than the average duration of a discussion.
184                 'dbclean_expire_conversation' => 90,
185
186                 // dbclean-expire-limit (Integer)
187                 // This defines the number of items that are to be deleted in a single call.
188                 // Reduce this value when you are getting lock issues.
189                 // A value of 0 disables the deletion process.
190                 'dbclean-expire-limit' => 1000,
191
192                 // daemon_watchdog (Boolean)
193                 // Enable regular checking if the daemon is running.
194                 // If it is not running and hadn't been terminated normally, it will be started automatically.
195                 'daemon_watchdog' => false,
196
197                 // delete_sleeping_processes (Boolean)
198                 // Periodically delete waiting database processes.
199                 'delete_sleeping_processes' => false,
200
201                 // diaspora_test (Boolean)
202                 // For development only. Disables the message transfer.
203                 'diaspora_test' => false,
204
205                 // disable_email_validation (Boolean)
206                 // Disables the check if a mail address is in a valid format and can be resolved via DNS.
207                 'disable_email_validation' => false,
208
209                 // disable_implicit_mentions (Boolean) since 2019.03
210                 // Implicit mentions are mentions in the body of replies that are redundant in a thread-enabled system like Friendica.
211                 // This config key disables the gathering of implicit mentions in incoming and outgoing posts.
212                 // Also disables the default automatic removal of implicit mentions from the body of incoming posts.
213                 // Also disables the default automatic addition of implicit mentions in the body of outgoing posts.
214                 // Disabling implicit mentions also affects the "explicit_mentions" additional feature by limiting it
215                 // to the replied-to post author mention in the comment boxes.
216                 'disable_implicit_mentions' => false,
217
218                 // disable_url_validation (Boolean)
219                 // Disables the DNS lookup of an URL.
220                 'disable_url_validation' => false,
221
222                 // disable_password_exposed (Boolean)
223                 // Disable the exposition check against the remote haveibeenpwned API on password change.
224                 'disable_password_exposed' => false,
225
226                 // disable_polling (Boolean)
227                 // Disable the polling of DFRN and OStatus contacts through onepoll.php.
228                 'disable_polling' => false,
229
230                 // display_resharer (Boolean)
231                 // Display the first resharer as icon and text on a reshared item.
232                 'display_resharer' => false,
233
234                 // dlogfile (Path)
235                 // location of the developer log file.
236                 'dlogfile' => '',
237
238                 // dlogip (String)
239                 // restricts develop log writes to requests originating from this IP address.
240                 'dlogip' => '',
241
242                 // expire-notify-priority (integer)
243                 // Priority for the expirary notification 
244                 'expire-notify-priority' => PRIORITY_LOW,
245
246                 // free_crawls (Integer)
247                 // Number of "free" searches when system => permit_crawling is enabled.
248                 'free_crawls' => 10,
249
250                 // groupedit_image_limit (Integer)
251                 // Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
252                 // This can alternatively be set on a per account basis in the pconfig table.
253                 'groupedit_image_limit' => 400,
254
255                 // gserver_update_limit (Integer)
256                 // How much servers should be checked at a time?
257                 'gserver_update_limit' => 100,
258
259                 // hsts (Boolean)
260                 // Enables the sending of HTTP Strict Transport Security headers.
261                 'hsts' => false,
262
263                 // ignore_cache (Boolean)
264                 // For development only. Disables the item cache.
265                 'ignore_cache' => false,
266
267                 // insecure_imap (Boolean)
268                 // If enabled, users are allowed to connect to their IMAP servers unencrypted.
269                 // For security reasons this is disabled by default.
270                 'insecure_imap' => false,
271
272                 // instances_social_key (String)
273                 // Key to the API of https://instances.social which retrieves data about mastodon servers.
274                 // See https://instances.social/api/token to get an API key.
275                 'instances_social_key' => '',
276
277                 // ipv4_resolve (Boolean)
278                 // Resolve IPV4 addresses only. Don't resolve to IPV6.
279                 'ipv4_resolve' => false,
280
281                 // invitation_only (Boolean)
282                 // If set true registration is only possible after a current member of the node has send an invitation.
283                 'invitation_only' => false,
284
285                 // itemspage_network (Integer)
286                 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
287                 'itemspage_network' => 40,
288
289                 // itemspage_network_mobile (Integer)
290                 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
291                 // on detected mobile devices
292                 'itemspage_network_mobile' => 20,
293
294                 // like_no_comment (Boolean)
295                 // Don't update the "commented" value of an item when it is liked.
296                 'like_no_comment' => false,
297
298                 // local_block (Boolean)
299                 // Used in conjunction with "block_public".
300                 'local_block' => false,
301
302                 // local_search (Boolean)
303                 // Blocks search for users who are not logged in to prevent crawlers from blocking your system.
304                 'local_search' => false,
305
306                 // local_tags (Boolean)
307                 // If activated, all hashtags will point to the local server.
308                 'local_tags' => false,
309
310                 // logger_config (String)
311                 // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
312                 'logger_config' => 'stream',
313
314                 // maintenance_start (String)
315                 // Start of the window for the daily maintenance cron call.
316                 // The system timezone is used when no timezone is defined here.
317                 'maintenance_start' => '01:00 +00:00',
318
319                 // maintenance_end (String)
320                 // End of the window for the daily maintenance cron call
321                 // The system timezone is used when no timezone is defined here.
322                 'maintenance_end' => '03:00 +00:00',
323
324                 // max_batch_queue (Integer)
325                 // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
326                 'max_batch_queue' => 1000,
327
328                 // max_connections (Integer)
329                 // The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
330                 // When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
331                 'max_connections' => 0,
332
333                 // max_connections_level (Integer 0-100)
334                 // The maximum percentage of connections that are allowed to let the worker start.
335                 'max_connections_level' => 75,
336
337                 // max_contact_queue (Integer)
338                 // Maximum number of queue items for a single contact before subsequent messages are discarded.
339                 'max_contact_queue' => 500,
340
341                 // max_csv_file_size (Integer)
342                 // When uploading a CSV with account addresses to follow
343                 // in the user settings, this controls the maximum file
344                 // size of the upload file.
345                 'max_csv_file_size' => 30720,
346
347                 // max_feed_items (Integer)
348                 // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
349                 'max_feed_items' => 20,
350
351                 // max_image_length (Integer)
352                 // An alternate way of limiting picture upload sizes.
353                 // Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
354                 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
355                 // If you don't want to set a maximum length, set to -1.
356                 'max_image_length' => -1,
357
358                 // max_processes_backend (Integer)
359                 // Maximum number of concurrent database processes for background tasks.
360                 'max_processes_backend' => 5,
361
362                 // max_processes_frontend (Integer)
363                 // Maximum number of concurrent database processes for foreground tasks.
364                 'max_processes_frontend' => 20,
365
366                 // maximagesize (Integer)
367                 // Maximum size in bytes of an uploaded photo.
368                 'maximagesize' => 800000,
369
370                 // memcache_host (String)
371                 // Host name of the memcache daemon.
372                 'memcache_host' => '127.0.0.1',
373
374                 // memcache_port (Integer)
375                 // Port number of the memcache daemon.
376                 'memcache_port' => 11211,
377
378                 // memcached_hosts (Array)
379                 // Array of Memcached servers info [host, port(, weight)], see Memcached::addServers.
380                 'memcached_hosts' => [
381                         ['127.0.0.1', '11211'],
382                 ],
383
384                 // min_poll_interval (Integer)
385                 // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
386                 'min_poll_interval' => 15,
387
388                 // minimum_posting_interval (Integer)
389                 // Minimum interval between two feed posts per user
390                 'minimum_posting_interval' => 0,
391
392                 // no_count (Boolean)
393                 // Don't do count calculations (currently only when showing photo albums).
394                 'no_count' => false,
395
396                 // no_oembed (Boolean)
397                 // Don't use OEmbed to fetch more information about a link.
398                 'no_oembed' => false,
399
400                 // no_redirect_list (Array)
401                 // List of domains where HTTP redirects should be ignored. 
402                 'no_redirect_list' => [],
403
404                 // no_smilies (Boolean)
405                 // Don't show smilies.
406                 'no_smilies' => false,
407
408                 // optimize_items (Boolean)
409                 // Triggers an SQL command to optimize the item table before expiring items.
410                 'optimize_items' => false,
411
412                 // paranoia (Boolean)
413                 // Log out users if their IP address changed.
414                 'paranoia' => false,
415
416                 // permit_crawling (Boolean)
417                 // Restricts the search for not logged in users to one search per minute.
418                 'permit_crawling' => false,
419
420                 // pidfile (Path)
421                 // Daemon pid file path. For example: pidfile = /path/to/daemon.pid
422                 'pidfile' => '',
423
424                 // png_quality (Integer)
425                 // Sets the ImageMagick compression level for PNG images. Values ranges from 0 (uncompressed) to 9 (most compressed).
426                 'png_quality' => 8,
427
428                 // profiler (Boolean)
429                 // Enable internal timings to help optimize code. Needed for "rendertime" addon.
430                 'profiler' => false,
431
432                 // proxy_cache_time (Integer)
433                 // Period in seconds after which the cache is cleared.
434                 'proxy_cache_time' => 86400,
435
436                 // pushpoll_frequency (Integer)
437                 // Frequency of contact poll for subhub contact using the DFRM or OStatus network.
438                 // Available values:
439                 // - 5 = every month
440                 // - 4 = every week
441                 // - 3 = every day
442                 // - 2 = twice a day
443                 // - 1 = every hour
444                 // - 0 = every minute
445                 'pushpoll_frequency' => 3,
446
447                 // redis_host (String)
448                 // Host name of the redis daemon.
449                 'redis_host' => '127.0.0.1',
450
451                 // redis_port (String)
452                 // Port number of the redis daemon.
453                 'redis_port' => 6379,
454
455                 // redis_db (Integer)
456                 // The sub-database of redis (0 - 15 possible sub-databases)
457                 'redis_db' => 0,
458
459                 // redis_password (String)
460                 // The authentication password for the redis database
461                 'redis_password' => null,
462
463                 // session_handler (database|cache|native)
464                 // Whether to use Cache to store session data or to use PHP native session storage.
465                 'session_handler' => 'database',
466
467                 // remote_avatar_lookup (Boolean)
468                 // Perform an avatar lookup via the activated services for remote contacts
469                 'remote_avatar_lookup' => false,
470
471                 // remove_multiplicated_lines (Boolean)
472                 // If enabled, multiple linefeeds in items are stripped to a single one.
473                 'remove_multiplicated_lines' => false,
474
475                 // sendmail_params (Boolean)
476                 // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
477                 // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
478                 // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
479                 'sendmail_params' => true,
480
481                 // show_global_community_hint (Boolean)
482                 // 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.
483                 'show_global_community_hint' => false,
484
485                 // show_received (Boolean)
486                 // Show the receive data along with the post creation date
487                 'show_received' => true,
488
489                 // show_received_seconds (Integer)
490                 // Display the received date when the difference between received and created is higher than this.
491                 'show_received_seconds' => 500,
492
493                 // show_unsupported_addons (Boolean)
494                 // Show all addons including the unsupported ones.
495                 'show_unsupported_addons' => false,
496
497                 // show_unsupported_themes (Boolean)
498                 // Show all themes including the unsupported ones.
499                 'show_unsupported_themes' => false,
500
501                 // throttle_limit_day (Integer)
502                 // Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
503                 'throttle_limit_day' => 0,
504
505                 // throttle_limit_week (Integer)
506                 // Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
507                 'throttle_limit_week' => 0,
508
509                 // throttle_limit_month (Integer)
510                 // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
511                 'throttle_limit_month' => 0,
512
513                 // update_active_contacts (Boolean)
514                 // When activated, only public contacts will be activated regularly that are used for example in items or tags.
515                 'update_active_contacts' => false,
516
517                 // username_min_length (Integer)
518                 // The minimum character length a username can be.
519                 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
520                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
521                 'username_min_length' => 3,
522
523                 // username_max_length (Integer)
524                 // The maximum character length a username can be.
525                 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
526                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
527                 'username_max_length' => 48,
528
529                 // worker_cooldown (Integer)
530                 // Cooldown period in seconds after each worker function call.
531                 'worker_cooldown' => 0,
532
533                 // worker_debug (Boolean)
534                 // If enabled, it prints out the number of running processes split by priority.
535                 'worker_debug' => false,
536
537                 // worker_fetch_limit (Integer)
538                 // Number of worker tasks that are fetched in a single query.
539                 'worker_fetch_limit' => 1,
540
541                 // worker_fork (Boolean)
542                 // Experimental setting. Use pcntl_fork to spawn a new worker process.
543                 // Does not work when "worker_multiple_fetch" is enabled (Needs more testing)
544                 'worker_fork' => false,
545
546                 // worker_jpm (Boolean)
547                 // If enabled, it prints out the jobs per minute.
548                 'worker_jpm' => false,
549
550                 // worker_jpm_range (String)
551                 // List of minutes for the jobs per minute (JPM) calculation
552                 'worker_jpm_range' => '1, 10, 60',
553
554                 // worker_load_exponent (Integer)
555                 // Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
556                 // For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
557                 // Setting 0 would allow maximum worker queues at all times, which is not recommended.
558                 'worker_load_exponent' => 3,
559
560                 // worker_multiple_fetch (Boolean)
561                 // When activated, the worker fetches jobs for multiple workers (not only for itself).
562                 // This is an experimental setting without knowing the performance impact.
563                 // Does not work when "worker_fork" is enabled (Needs more testing)
564                 'worker_multiple_fetch' => false,
565                 
566                 // worker_defer_limit (Integer)
567                 // Per default the systems tries delivering for 15 times before dropping it.
568                 'worker_defer_limit' => 15,
569
570                 // xrd_timeout (Integer)
571                 // Timeout in seconds for fetching the XRD links.
572                 'xrd_timeout' => 20,
573         ],
574         'experimental' => [
575                 // exp_themes (Boolean)
576                 // Show experimental themes in user settings.
577                 'exp_themes' => false,
578         ],
579         'theme' => [
580                 // hide_eventlist (Boolean)
581                 // Don't show the birthdays and events on the profile and network page.
582                 'hide_eventlist' => false,
583         ],
584         'jabber' => [
585                 // debug (Boolean)
586                 // Enable debug level for the jabber account synchronisation.
587                 'debug' => false,
588                 // lockpath (Path)
589                 // Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
590                 'lockpath' => '',
591         ],
592         'debug' => [
593                 // ap_inbox_log (Boolean)
594                 // Logs every call to /inbox as a JSON file in Friendica's temporary directory
595                 'ap_inbox_log' => false,
596
597                 // show_direction (Boolean)
598                 // Display if a post had been fetched or had been pushed towards our server
599                 'show_direction' => false,
600
601                 // total_ap_delivery (Boolean)
602                 // Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
603                 'total_ap_delivery' => false,
604         ]
605 ];