]> git.mxchange.org Git - friendica.git/blob - static/defaults.config.php
Configuration for the priority of the notification for expired messages
[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                 // daemon_watchdog (Boolean)
195                 // Enable regular checking if the daemon is running.
196                 // If it is not running and hadn't been terminated normally, it will be started automatically.
197                 'daemon_watchdog' => false,
198
199                 // diaspora_test (Boolean)
200                 // For development only. Disables the message transfer.
201                 'diaspora_test' => false,
202
203                 // disable_email_validation (Boolean)
204                 // Disables the check if a mail address is in a valid format and can be resolved via DNS.
205                 'disable_email_validation' => false,
206
207                 // disable_implicit_mentions (Boolean) since 2019.03
208                 // Implicit mentions are mentions in the body of replies that are redundant in a thread-enabled system like Friendica.
209                 // This config key disables the gathering of implicit mentions in incoming and outgoing posts.
210                 // Also disables the default automatic removal of implicit mentions from the body of incoming posts.
211                 // Also disables the default automatic addition of implicit mentions in the body of outgoing posts.
212                 // Disabling implicit mentions also affects the "explicit_mentions" additional feature by limiting it
213                 // to the replied-to post author mention in the comment boxes.
214                 'disable_implicit_mentions' => false,
215
216                 // disable_url_validation (Boolean)
217                 // Disables the DNS lookup of an URL.
218                 'disable_url_validation' => false,
219
220                 // disable_password_exposed (Boolean)
221                 // Disable the exposition check against the remote haveibeenpwned API on password change.
222                 'disable_password_exposed' => false,
223
224                 // disable_polling (Boolean)
225                 // Disable the polling of DFRN and OStatus contacts through onepoll.php.
226                 'disable_polling' => false,
227
228                 // display_resharer (Boolean)
229                 // Display the first resharer as icon and text on a reshared item.
230                 'display_resharer' => false,
231
232                 // dlogfile (Path)
233                 // location of the developer log file.
234                 'dlogfile' => '',
235
236                 // dlogip (String)
237                 // restricts develop log writes to requests originating from this IP address.
238                 'dlogip' => '',
239
240                 // expire-notify-priority (integer)
241                 // Priority for the expirary notification 
242                 'expire-notify-priority' => PRIORITY_LOW,
243
244                 // free_crawls (Integer)
245                 // Number of "free" searches when system => permit_crawling is enabled.
246                 'free_crawls' => 10,
247
248                 // frontend_worker_timeout (Integer)
249                 // Value in minutes after we think that a frontend task was killed by the webserver.
250                 'frontend_worker_timeout' => 10,
251
252                 // groupedit_image_limit (Integer)
253                 // Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
254                 // This can alternatively be set on a per account basis in the pconfig table.
255                 'groupedit_image_limit' => 400,
256
257                 // hsts (Boolean)
258                 // Enables the sending of HTTP Strict Transport Security headers.
259                 'hsts' => false,
260
261                 // ignore_cache (Boolean)
262                 // For development only. Disables the item cache.
263                 'ignore_cache' => false,
264
265                 // insecure_imap (Boolean)
266                 // If enabled, users are allowed to connect to their IMAP servers unencrypted.
267                 // For security reasons this is disabled by default.
268                 'insecure_imap' => false,
269
270                 // instances_social_key (String)
271                 // Key to the API of https://instances.social which retrieves data about mastodon servers.
272                 // See https://instances.social/api/token to get an API key.
273                 'instances_social_key' => '',
274
275                 // ipv4_resolve (Boolean)
276                 // Resolve IPV4 addresses only. Don't resolve to IPV6.
277                 'ipv4_resolve' => false,
278
279                 // invitation_only (Boolean)
280                 // If set true registration is only possible after a current member of the node has send an invitation.
281                 'invitation_only' => false,
282
283                 // itemspage_network (Integer)
284                 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
285                 'itemspage_network' => 40,
286
287                 // itemspage_network_mobile (Integer)
288                 // default number of items per page in stream pages (network, community, profile/contact statuses, search)
289                 // on detected mobile devices
290                 'itemspage_network_mobile' => 20,
291
292                 // like_no_comment (Boolean)
293                 // Don't update the "commented" value of an item when it is liked.
294                 'like_no_comment' => false,
295
296                 // local_block (Boolean)
297                 // Used in conjunction with "block_public".
298                 'local_block' => false,
299
300                 // local_search (Boolean)
301                 // Blocks search for users who are not logged in to prevent crawlers from blocking your system.
302                 'local_search' => false,
303
304                 // local_tags (Boolean)
305                 // If activated, all hashtags will point to the local server.
306                 'local_tags' => false,
307
308                 // logger_config (String)
309                 // Sets the logging adapter of Friendica globally (monolog, syslog, stream)
310                 'logger_config' => 'stream',
311
312                 // maintenance_start (String)
313                 // Start of the window for the daily maintenance cron call.
314                 // The system timezone is used when no timezone is defined here.
315                 'maintenance_start' => '01:00 +00:00',
316
317                 // maintenance_end (String)
318                 // End of the window for the daily maintenance cron call
319                 // The system timezone is used when no timezone is defined here.
320                 'maintenance_end' => '03:00 +00:00',
321
322                 // max_batch_queue (Integer)
323                 // Maximum number of batched queue items for a single contact before subsequent messages are discarded.
324                 'max_batch_queue' => 1000,
325
326                 // max_connections (Integer)
327                 // The maximum number of database connections which can be in use before the worker process is deferred to its next interval.
328                 // When the system can't detect the maximum numbers of connection then this value can be used. Use 0 for auto-detection.
329                 'max_connections' => 0,
330
331                 // max_connections_level (Integer 0-100)
332                 // The maximum percentage of connections that are allowed to let the worker start.
333                 'max_connections_level' => 75,
334
335                 // max_contact_queue (Integer)
336                 // Maximum number of queue items for a single contact before subsequent messages are discarded.
337                 'max_contact_queue' => 500,
338
339                 // max_csv_file_size (Integer)
340                 // When uploading a CSV with account addresses to follow
341                 // in the user settings, this controls the maximum file
342                 // size of the upload file.
343                 'max_csv_file_size' => 30720,
344
345                 // max_feed_items (Integer)
346                 // Maximum number of feed items that are fetched and processed. For unlimited items set to 0.
347                 'max_feed_items' => 20,
348
349                 // max_image_length (Integer)
350                 // An alternate way of limiting picture upload sizes.
351                 // Specify the maximum pixel  length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
352                 // Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately).
353                 // If you don't want to set a maximum length, set to -1.
354                 'max_image_length' => -1,
355
356                 // max_processes_backend (Integer)
357                 // Maximum number of concurrent database processes for background tasks.
358                 'max_processes_backend' => 5,
359
360                 // max_processes_frontend (Integer)
361                 // Maximum number of concurrent database processes for foreground tasks.
362                 'max_processes_frontend' => 20,
363
364                 // maximagesize (Integer)
365                 // Maximum size in bytes of an uploaded photo.
366                 'maximagesize' => 800000,
367
368                 // memcache_host (String)
369                 // Host name of the memcache daemon.
370                 'memcache_host' => '127.0.0.1',
371
372                 // memcache_port (Integer)
373                 // Port number of the memcache daemon.
374                 'memcache_port' => 11211,
375
376                 // memcached_hosts (Array)
377                 // Array of Memcached servers info [host, port(, weight)], see Memcached::addServers.
378                 'memcached_hosts' => [
379                         ['127.0.0.1', '11211'],
380                 ],
381
382                 // min_poll_interval (Integer)
383                 // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
384                 'min_poll_interval' => 15,
385
386                 // no_count (Boolean)
387                 // Don't do count calculations (currently only when showing photo albums).
388                 'no_count' => false,
389
390                 // no_oembed (Boolean)
391                 // Don't use OEmbed to fetch more information about a link.
392                 'no_oembed' => false,
393
394                 // no_redirect_list (Array)
395                 // List of domains where HTTP redirects should be ignored. 
396                 'no_redirect_list' => [],
397
398                 // no_smilies (Boolean)
399                 // Don't show smilies.
400                 'no_smilies' => false,
401
402                 // optimize_items (Boolean)
403                 // Triggers an SQL command to optimize the item table before expiring items.
404                 'optimize_items' => false,
405
406                 // paranoia (Boolean)
407                 // Log out users if their IP address changed.
408                 'paranoia' => false,
409
410                 // permit_crawling (Boolean)
411                 // Restricts the search for not logged in users to one search per minute.
412                 'permit_crawling' => false,
413
414                 // pidfile (Path)
415                 // Daemon pid file path. For example: pidfile = /path/to/daemon.pid
416                 'pidfile' => '',
417
418                 // png_quality (Integer)
419                 // Sets the ImageMagick compression level for PNG images. Values ranges from 0 (uncompressed) to 9 (most compressed).
420                 'png_quality' => 8,
421
422                 // profiler (Boolean)
423                 // Enable internal timings to help optimize code. Needed for "rendertime" addon.
424                 'profiler' => false,
425
426                 // proxy_cache_time (Integer)
427                 // Period in seconds after which the cache is cleared.
428                 'proxy_cache_time' => 86400,
429
430                 // pushpoll_frequency (Integer)
431                 // Frequency of contact poll for subhub contact using the DFRM or OStatus network.
432                 // Available values:
433                 // - 5 = every month
434                 // - 4 = every week
435                 // - 3 = every day
436                 // - 2 = twice a day
437                 // - 1 = every hour
438                 // - 0 = every minute
439                 'pushpoll_frequency' => 3,
440
441                 // redis_host (String)
442                 // Host name of the redis daemon.
443                 'redis_host' => '127.0.0.1',
444
445                 // redis_port (String)
446                 // Port number of the redis daemon.
447                 'redis_port' => 6379,
448
449                 // redis_db (Integer)
450                 // The sub-database of redis (0 - 15 possible sub-databases)
451                 'redis_db' => 0,
452
453                 // redis_password (String)
454                 // The authentication password for the redis database
455                 'redis_password' => null,
456
457                 // session_handler (database|cache|native)
458                 // Whether to use Cache to store session data or to use PHP native session storage.
459                 'session_handler' => 'database',
460
461                 // remove_multiplicated_lines (Boolean)
462                 // If enabled, multiple linefeeds in items are stripped to a single one.
463                 'remove_multiplicated_lines' => false,
464
465                 // sendmail_params (Boolean)
466                 // Normal sendmail command parameters will be added when the PHP mail() function is called for sending e-mails.
467                 // This ensures the Sender Email address setting is applied to the message envelope rather than the host's default address.
468                 // Set to false if your non-sendmail agent is incompatible, or to restore old behavior of using the host address.
469                 'sendmail_params' => true,
470
471                 // show_global_community_hint (Boolean)
472                 // 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.
473                 'show_global_community_hint' => false,
474
475                 // show_received (Boolean)
476                 // Show the receive data along with the post creation date
477                 'show_received' => true,
478
479                 // show_received_seconds (Integer)
480                 // Display the received date when the difference between received and created is higher than this.
481                 'show_received_seconds' => 500,
482
483                 // show_unsupported_addons (Boolean)
484                 // Show all addons including the unsupported ones.
485                 'show_unsupported_addons' => false,
486
487                 // show_unsupported_themes (Boolean)
488                 // Show all themes including the unsupported ones.
489                 'show_unsupported_themes' => false,
490
491                 // throttle_limit_day (Integer)
492                 // Maximum number of posts that a user can send per day with the API. 0 to disable daily throttling.
493                 'throttle_limit_day' => 0,
494
495                 // throttle_limit_week (Integer)
496                 // Maximum number of posts that a user can send per week with the API. 0 to disable weekly throttling.
497                 'throttle_limit_week' => 0,
498
499                 // throttle_limit_month (Integer)
500                 // Maximum number of posts that a user can send per month with the API. 0 to disable monthly throttling.
501                 'throttle_limit_month' => 0,
502
503                 // update_active_contacts (Boolean)
504                 // When activated, only public contacts will be activated regularly that are used for example in items or tags.
505                 'update_active_contacts' => false,
506
507                 // username_min_length (Integer)
508                 // The minimum character length a username can be.
509                 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
510                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
511                 'username_min_length' => 3,
512
513                 // username_max_length (Integer)
514                 // The maximum character length a username can be.
515                 // This length is check once the username has been trimmed and multiple spaces have been collapsed into one.
516                 // Minimum for this config value is 1. Maximum is 64 as the resulting profile URL mustn't be longer than 255 chars.
517                 'username_max_length' => 48,
518
519                 // worker_cooldown (Integer)
520                 // Cooldown period in seconds after each worker function call.
521                 'worker_cooldown' => 0,
522
523                 // worker_debug (Boolean)
524                 // If enabled, it prints out the number of running processes split by priority.
525                 'worker_debug' => false,
526
527                 // worker_fetch_limit (Integer)
528                 // Number of worker tasks that are fetched in a single query.
529                 'worker_fetch_limit' => 1,
530
531                 // worker_jpm (Boolean)
532                 // If enabled, it prints out the jobs per minute.
533                 'worker_jpm' => false,
534
535                 // worker_jpm_range (String)
536                 // List of minutes for the jobs per minute (JPM) calculation
537                 'worker_jpm_range' => '1, 10, 60',
538
539                 // worker_load_exponent (Integer)
540                 // Default 3, which allows only 25% of the maximum worker queues when server load reaches around 37% of maximum load.
541                 // For a linear response where 25% of worker queues are allowed at 75% of maximum load, set this to 1.
542                 // Setting 0 would allow maximum worker queues at all times, which is not recommended.
543                 'worker_load_exponent' => 3,
544
545                 // worker_multiple_fetch (Boolean)
546                 // When activated, the worker fetches jobs for multiple workers (not only for itself).
547                 // This is an experimental setting without knowing the performance impact.
548                 'worker_multiple_fetch' => false,
549                 
550                 // worker_defer_limit (Integer)
551                 // Per default the systems tries delivering for 15 times before dropping it.
552                 'worker_defer_limit' => 15,
553
554                 // xrd_timeout (Integer)
555                 // Timeout in seconds for fetching the XRD links.
556                 'xrd_timeout' => 20,
557         ],
558         'experimental' => [
559                 // exp_themes (Boolean)
560                 // Show experimental themes in user settings.
561                 'exp_themes' => false,
562         ],
563         'theme' => [
564                 // hide_eventlist (Boolean)
565                 // Don't show the birthdays and events on the profile and network page.
566                 'hide_eventlist' => false,
567         ],
568         'jabber' => [
569                 // debug (Boolean)
570                 // Enable debug level for the jabber account synchronisation.
571                 'debug' => false,
572                 // lockpath (Path)
573                 // Must be writable by the ejabberd process. if set then it will prevent the running of multiple processes.
574                 'lockpath' => '',
575         ],
576         'debug' => [
577                 // ap_inbox_log (Boolean)
578                 // Logs every call to /inbox as a JSON file in Friendica's temporary directory
579                 'ap_inbox_log' => false,
580
581                 // show_direction (Boolean)
582                 // Display if a post had been fetched or had been pushed towards our server
583                 'show_direction' => false,
584
585                 // total_ap_delivery (Boolean)
586                 // Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
587                 'total_ap_delivery' => false,
588         ]
589 ];