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