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