Merge branch 'bug/phpinfo-accessible-hotfix' into develop
[friendica.git/.git] / src / Module / Admin / Site.php
index 88c6248..a39c0c9 100644 (file)
@@ -1,29 +1,49 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Admin;
 
 use Friendica\App;
-use Friendica\Core\Config;
 use Friendica\Core\Renderer;
 use Friendica\Core\Search;
 use Friendica\Core\Theme;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
 use Friendica\DI;
-use Friendica\Module\BaseAdminModule;
+use Friendica\Model\Contact;
+use Friendica\Model\User;
+use Friendica\Module\BaseAdmin;
 use Friendica\Module\Register;
-use Friendica\Protocol\PortableContact;
 use Friendica\Util\BasePath;
+use Friendica\Util\EMailer\MailBuilder;
 use Friendica\Util\Strings;
 use Friendica\Worker\Delivery;
 
 require_once __DIR__ . '/../../../boot.php';
 
-class Site extends BaseAdminModule
+class Site extends BaseAdmin
 {
        public static function post(array $parameters = [])
        {
-               parent::post($parameters);
+               self::checkAdminAccess();
 
                self::checkFormSecurityTokenRedirectOnError('/admin/site', 'admin_site');
 
@@ -83,17 +103,14 @@ class Site extends BaseAdminModule
                        // update tables
                        // update profile links in the format "http://server.tld"
                        update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
-                       update_table($a, "term", ['url'], $old_url, $new_url);
                        update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
-                       update_table($a, "gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
                        update_table($a, "item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
 
                        // update profile addresses in the format "user@server.tld"
                        update_table($a, "contact", ['addr'], $old_host, $new_host);
-                       update_table($a, "gcontact", ['connect', 'addr'], $old_host, $new_host);
 
                        // update config
-                       Config::set('system', 'url', $new_url);
+                       DI::config()->set('system', 'url', $new_url);
                        DI::baseUrl()->saveByURL($new_url);
 
                        // send relocate
@@ -101,8 +118,9 @@ class Site extends BaseAdminModule
                        while ($user = DBA::fetch($usersStmt)) {
                                Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, $user['uid']);
                        }
+                       DBA::close($usersStmt);
 
-                       info("Relocation started. Could take a while to complete.");
+                       info(DI::l10n()->t("Relocation started. Could take a while to complete."));
 
                        DI::baseUrl()->redirect('admin/site');
                }
@@ -111,6 +129,7 @@ class Site extends BaseAdminModule
                $sitename         = (!empty($_POST['sitename'])         ? Strings::escapeTags(trim($_POST['sitename']))      : '');
                $sender_email     = (!empty($_POST['sender_email'])     ? Strings::escapeTags(trim($_POST['sender_email']))  : '');
                $banner           = (!empty($_POST['banner'])           ? trim($_POST['banner'])                             : false);
+               $email_banner     = (!empty($_POST['email_banner'])     ? trim($_POST['email_banner'])                       : false);
                $shortcut_icon    = (!empty($_POST['shortcut_icon'])    ? Strings::escapeTags(trim($_POST['shortcut_icon'])) : '');
                $touch_icon       = (!empty($_POST['touch_icon'])       ? Strings::escapeTags(trim($_POST['touch_icon']))    : '');
                $additional_info  = (!empty($_POST['additional_info'])  ? trim($_POST['additional_info'])                    : '');
@@ -130,6 +149,7 @@ class Site extends BaseAdminModule
                $allowed_sites          = (!empty($_POST['allowed_sites'])           ? Strings::escapeTags(trim($_POST['allowed_sites']))  : '');
                $allowed_email          = (!empty($_POST['allowed_email'])           ? Strings::escapeTags(trim($_POST['allowed_email']))  : '');
                $forbidden_nicknames    = (!empty($_POST['forbidden_nicknames'])     ? strtolower(Strings::escapeTags(trim($_POST['forbidden_nicknames']))) : '');
+               $system_actor_name      = (!empty($_POST['system_actor_name'])       ? Strings::escapeTags(trim($_POST['system_actor_name'])) : '');
                $no_oembed_rich_content = !empty($_POST['no_oembed_rich_content']);
                $allowed_oembed         = (!empty($_POST['allowed_oembed'])          ? Strings::escapeTags(trim($_POST['allowed_oembed'])) : '');
                $block_public           = !empty($_POST['block_public']);
@@ -155,12 +175,11 @@ class Site extends BaseAdminModule
                $maxloadavg             = (!empty($_POST['maxloadavg'])             ? intval(trim($_POST['maxloadavg']))             : 20);
                $maxloadavg_frontend    = (!empty($_POST['maxloadavg_frontend'])    ? intval(trim($_POST['maxloadavg_frontend']))    : 50);
                $min_memory             = (!empty($_POST['min_memory'])             ? intval(trim($_POST['min_memory']))             : 0);
-               $optimize_max_tablesize = (!empty($_POST['optimize_max_tablesize']) ? intval(trim($_POST['optimize_max_tablesize'])) : 100);
-               $optimize_fragmentation = (!empty($_POST['optimize_fragmentation']) ? intval(trim($_POST['optimize_fragmentation'])) : 30);
-               $poco_completion        = (!empty($_POST['poco_completion'])        ? intval(trim($_POST['poco_completion']))        : false);
+               $optimize_tables        = (!empty($_POST['optimize_tables'])        ? intval(trim($_POST['optimize_tables']))        : false);
+               $contact_discovery      = (!empty($_POST['contact_discovery'])      ? intval(trim($_POST['contact_discovery']))      : Contact\Relation::DISCOVERY_NONE);
+               $synchronize_directory  = (!empty($_POST['synchronize_directory'])  ? intval(trim($_POST['synchronize_directory']))  : false);
                $poco_requery_days      = (!empty($_POST['poco_requery_days'])      ? intval(trim($_POST['poco_requery_days']))      : 7);
-               $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : PortableContact::DISABLED);
-               $poco_discovery_since   = (!empty($_POST['poco_discovery_since'])   ? intval(trim($_POST['poco_discovery_since']))   : 30);
+               $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : false);
                $poco_local_search      = !empty($_POST['poco_local_search']);
                $nodeinfo               = !empty($_POST['nodeinfo']);
                $dfrn_only              = !empty($_POST['dfrn_only']);
@@ -177,6 +196,7 @@ class Site extends BaseAdminModule
                $itemcache              = (!empty($_POST['itemcache'])              ? Strings::escapeTags(trim($_POST['itemcache']))  : '');
                $itemcache_duration     = (!empty($_POST['itemcache_duration'])     ? intval($_POST['itemcache_duration'])            : 0);
                $max_comments           = (!empty($_POST['max_comments'])           ? intval($_POST['max_comments'])                  : 0);
+               $max_display_comments   = (!empty($_POST['max_display_comments'])   ? intval($_POST['max_display_comments'])          : 0);
                $temppath               = (!empty($_POST['temppath'])               ? Strings::escapeTags(trim($_POST['temppath']))   : '');
                $singleuser             = (!empty($_POST['singleuser'])             ? Strings::escapeTags(trim($_POST['singleuser'])) : '');
                $proxy_disabled         = !empty($_POST['proxy_disabled']);
@@ -227,12 +247,12 @@ class Site extends BaseAdminModule
                                DI::baseUrl()->redirect('admin/site' . $active_panel);
                        }
                } else {
-                       info(DI::l10n()->t('Invalid storage backend setting value.'));
+                       notice(DI::l10n()->t('Invalid storage backend setting value.'));
                }
 
                // Has the directory url changed? If yes, then resubmit the existing profiles there
                if ($global_directory != DI::config()->get('system', 'directory') && ($global_directory != '')) {
-                       Config::set('system', 'directory', $global_directory);
+                       DI::config()->set('system', 'directory', $global_directory);
                        Worker::add(PRIORITY_LOW, 'Directory');
                }
 
@@ -278,131 +298,136 @@ class Site extends BaseAdminModule
                                );
                        }
                }
-               Config::set('system', 'ssl_policy'            , $ssl_policy);
-               Config::set('system', 'maxloadavg'            , $maxloadavg);
-               Config::set('system', 'maxloadavg_frontend'   , $maxloadavg_frontend);
-               Config::set('system', 'min_memory'            , $min_memory);
-               Config::set('system', 'optimize_max_tablesize', $optimize_max_tablesize);
-               Config::set('system', 'optimize_fragmentation', $optimize_fragmentation);
-               Config::set('system', 'poco_completion'       , $poco_completion);
-               Config::set('system', 'poco_requery_days'     , $poco_requery_days);
-               Config::set('system', 'poco_discovery'        , $poco_discovery);
-               Config::set('system', 'poco_discovery_since'  , $poco_discovery_since);
-               Config::set('system', 'poco_local_search'     , $poco_local_search);
-               Config::set('system', 'nodeinfo'              , $nodeinfo);
-               Config::set('config', 'sitename'              , $sitename);
-               Config::set('config', 'sender_email'          , $sender_email);
-               Config::set('system', 'suppress_tags'         , $suppress_tags);
-               Config::set('system', 'shortcut_icon'         , $shortcut_icon);
-               Config::set('system', 'touch_icon'            , $touch_icon);
+               DI::config()->set('system', 'ssl_policy'            , $ssl_policy);
+               DI::config()->set('system', 'maxloadavg'            , $maxloadavg);
+               DI::config()->set('system', 'maxloadavg_frontend'   , $maxloadavg_frontend);
+               DI::config()->set('system', 'min_memory'            , $min_memory);
+               DI::config()->set('system', 'optimize_tables'       , $optimize_tables);
+               DI::config()->set('system', 'contact_discovery'     , $contact_discovery);
+               DI::config()->set('system', 'synchronize_directory' , $synchronize_directory);
+               DI::config()->set('system', 'poco_requery_days'     , $poco_requery_days);
+               DI::config()->set('system', 'poco_discovery'        , $poco_discovery);
+               DI::config()->set('system', 'poco_local_search'     , $poco_local_search);
+               DI::config()->set('system', 'nodeinfo'              , $nodeinfo);
+               DI::config()->set('config', 'sitename'              , $sitename);
+               DI::config()->set('config', 'sender_email'          , $sender_email);
+               DI::config()->set('system', 'suppress_tags'         , $suppress_tags);
+               DI::config()->set('system', 'shortcut_icon'         , $shortcut_icon);
+               DI::config()->set('system', 'touch_icon'            , $touch_icon);
 
                if ($banner == "") {
-                       Config::delete('system', 'banner');
+                       DI::config()->delete('system', 'banner');
                } else {
-                       Config::set('system', 'banner', $banner);
+                       DI::config()->set('system', 'banner', $banner);
+               }
+
+               if (empty($email_banner)) {
+                       DI::config()->delete('system', 'email_banner');
+               } else {
+                       DI::config()->set('system', 'email_banner', $email_banner);
                }
 
                if (empty($additional_info)) {
-                       Config::delete('config', 'info');
+                       DI::config()->delete('config', 'info');
                } else {
-                       Config::set('config', 'info', $additional_info);
+                       DI::config()->set('config', 'info', $additional_info);
                }
-               Config::set('system', 'language', $language);
-               Config::set('system', 'theme', $theme);
+               DI::config()->set('system', 'language', $language);
+               DI::config()->set('system', 'theme', $theme);
                Theme::install($theme);
 
                if ($theme_mobile == '---') {
-                       Config::delete('system', 'mobile-theme');
+                       DI::config()->delete('system', 'mobile-theme');
                } else {
-                       Config::set('system', 'mobile-theme', $theme_mobile);
+                       DI::config()->set('system', 'mobile-theme', $theme_mobile);
                }
                if ($singleuser == '---') {
-                       Config::delete('system', 'singleuser');
+                       DI::config()->delete('system', 'singleuser');
                } else {
-                       Config::set('system', 'singleuser', $singleuser);
+                       DI::config()->set('system', 'singleuser', $singleuser);
                }
-               Config::set('system', 'maximagesize'           , $maximagesize);
-               Config::set('system', 'max_image_length'       , $maximagelength);
-               Config::set('system', 'jpeg_quality'           , $jpegimagequality);
-
-               Config::set('config', 'register_policy'        , $register_policy);
-               Config::set('system', 'max_daily_registrations', $daily_registrations);
-               Config::set('system', 'account_abandon_days'   , $abandon_days);
-               Config::set('config', 'register_text'          , $register_text);
-               Config::set('system', 'allowed_sites'          , $allowed_sites);
-               Config::set('system', 'allowed_email'          , $allowed_email);
-               Config::set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
-               Config::set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
-               Config::set('system', 'allowed_oembed'         , $allowed_oembed);
-               Config::set('system', 'block_public'           , $block_public);
-               Config::set('system', 'publish_all'            , $force_publish);
-               Config::set('system', 'newuser_private'        , $newuser_private);
-               Config::set('system', 'enotify_no_content'     , $enotify_no_content);
-               Config::set('system', 'disable_embedded'       , $disable_embedded);
-               Config::set('system', 'allow_users_remote_self', $allow_users_remote_self);
-               Config::set('system', 'explicit_content'       , $explicit_content);
-               Config::set('system', 'check_new_version_url'  , $check_new_version_url);
-
-               Config::set('system', 'block_extended_register', $no_multi_reg);
-               Config::set('system', 'no_openid'              , $no_openid);
-               Config::set('system', 'no_regfullname'         , $no_regfullname);
-               Config::set('system', 'community_page_style'   , $community_page_style);
-               Config::set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
-               Config::set('system', 'verifyssl'              , $verifyssl);
-               Config::set('system', 'proxyuser'              , $proxyuser);
-               Config::set('system', 'proxy'                  , $proxy);
-               Config::set('system', 'curl_timeout'           , $timeout);
-               Config::set('system', 'dfrn_only'              , $dfrn_only);
-               Config::set('system', 'ostatus_disabled'       , $ostatus_disabled);
-               Config::set('system', 'diaspora_enabled'       , $diaspora_enabled);
-
-               Config::set('config', 'private_addons'         , $private_addons);
-
-               Config::set('system', 'force_ssl'              , $force_ssl);
-               Config::set('system', 'hide_help'              , $hide_help);
-
-               Config::set('system', 'dbclean'                , $dbclean);
-               Config::set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
-               Config::set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
+               DI::config()->set('system', 'maximagesize'           , $maximagesize);
+               DI::config()->set('system', 'max_image_length'       , $maximagelength);
+               DI::config()->set('system', 'jpeg_quality'           , $jpegimagequality);
+
+               DI::config()->set('config', 'register_policy'        , $register_policy);
+               DI::config()->set('system', 'max_daily_registrations', $daily_registrations);
+               DI::config()->set('system', 'account_abandon_days'   , $abandon_days);
+               DI::config()->set('config', 'register_text'          , $register_text);
+               DI::config()->set('system', 'allowed_sites'          , $allowed_sites);
+               DI::config()->set('system', 'allowed_email'          , $allowed_email);
+               DI::config()->set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
+               DI::config()->set('system', 'system_actor_name'      , $system_actor_name);
+               DI::config()->set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
+               DI::config()->set('system', 'allowed_oembed'         , $allowed_oembed);
+               DI::config()->set('system', 'block_public'           , $block_public);
+               DI::config()->set('system', 'publish_all'            , $force_publish);
+               DI::config()->set('system', 'newuser_private'        , $newuser_private);
+               DI::config()->set('system', 'enotify_no_content'     , $enotify_no_content);
+               DI::config()->set('system', 'disable_embedded'       , $disable_embedded);
+               DI::config()->set('system', 'allow_users_remote_self', $allow_users_remote_self);
+               DI::config()->set('system', 'explicit_content'       , $explicit_content);
+               DI::config()->set('system', 'check_new_version_url'  , $check_new_version_url);
+
+               DI::config()->set('system', 'block_extended_register', $no_multi_reg);
+               DI::config()->set('system', 'no_openid'              , $no_openid);
+               DI::config()->set('system', 'no_regfullname'         , $no_regfullname);
+               DI::config()->set('system', 'community_page_style'   , $community_page_style);
+               DI::config()->set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
+               DI::config()->set('system', 'verifyssl'              , $verifyssl);
+               DI::config()->set('system', 'proxyuser'              , $proxyuser);
+               DI::config()->set('system', 'proxy'                  , $proxy);
+               DI::config()->set('system', 'curl_timeout'           , $timeout);
+               DI::config()->set('system', 'dfrn_only'              , $dfrn_only);
+               DI::config()->set('system', 'ostatus_disabled'       , $ostatus_disabled);
+               DI::config()->set('system', 'diaspora_enabled'       , $diaspora_enabled);
+
+               DI::config()->set('config', 'private_addons'         , $private_addons);
+
+               DI::config()->set('system', 'force_ssl'              , $force_ssl);
+               DI::config()->set('system', 'hide_help'              , $hide_help);
+
+               DI::config()->set('system', 'dbclean'                , $dbclean);
+               DI::config()->set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
+               DI::config()->set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
 
                if ($dbclean_unclaimed == 0) {
                        $dbclean_unclaimed = $dbclean_expire_days;
                }
 
-               Config::set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
+               DI::config()->set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
 
                if ($itemcache != '') {
                        $itemcache = BasePath::getRealPath($itemcache);
                }
 
-               Config::set('system', 'itemcache', $itemcache);
-               Config::set('system', 'itemcache_duration', $itemcache_duration);
-               Config::set('system', 'max_comments', $max_comments);
+               DI::config()->set('system', 'itemcache', $itemcache);
+               DI::config()->set('system', 'itemcache_duration', $itemcache_duration);
+               DI::config()->set('system', 'max_comments', $max_comments);
+               DI::config()->set('system', 'max_display_comments', $max_display_comments);
 
                if ($temppath != '') {
                        $temppath = BasePath::getRealPath($temppath);
                }
 
-               Config::set('system', 'temppath', $temppath);
-
-               Config::set('system', 'proxy_disabled'   , $proxy_disabled);
-               Config::set('system', 'only_tag_search'  , $only_tag_search);
+               DI::config()->set('system', 'temppath', $temppath);
 
-               Config::set('system', 'worker_queues'    , $worker_queues);
-               Config::set('system', 'worker_dont_fork' , $worker_dont_fork);
-               Config::set('system', 'worker_fastlane'  , $worker_fastlane);
-               Config::set('system', 'frontend_worker'  , $worker_frontend);
+               DI::config()->set('system', 'proxy_disabled'   , $proxy_disabled);
+               DI::config()->set('system', 'only_tag_search'  , $only_tag_search);
 
-               Config::set('system', 'relay_directly'   , $relay_directly);
-               Config::set('system', 'relay_server'     , $relay_server);
-               Config::set('system', 'relay_subscribe'  , $relay_subscribe);
-               Config::set('system', 'relay_scope'      , $relay_scope);
-               Config::set('system', 'relay_server_tags', $relay_server_tags);
-               Config::set('system', 'relay_user_tags'  , $relay_user_tags);
+               DI::config()->set('system', 'worker_queues'    , $worker_queues);
+               DI::config()->set('system', 'worker_dont_fork' , $worker_dont_fork);
+               DI::config()->set('system', 'worker_fastlane'  , $worker_fastlane);
+               DI::config()->set('system', 'frontend_worker'  , $worker_frontend);
 
-               Config::set('system', 'rino_encrypt'     , $rino);
+               DI::config()->set('system', 'relay_directly'   , $relay_directly);
+               DI::config()->set('system', 'relay_server'     , $relay_server);
+               DI::config()->set('system', 'relay_subscribe'  , $relay_subscribe);
+               DI::config()->set('system', 'relay_scope'      , $relay_scope);
+               DI::config()->set('system', 'relay_server_tags', $relay_server_tags);
+               DI::config()->set('system', 'relay_user_tags'  , $relay_user_tags);
 
-               info(DI::l10n()->t('Site settings updated.') . EOL);
+               DI::config()->set('system', 'rino_encrypt'     , $rino);
 
                DI::baseUrl()->redirect('admin/site' . $active_panel);
        }
@@ -416,8 +441,8 @@ class Site extends BaseAdminModule
 
                if (strlen(DI::config()->get('system', 'directory_submit_url')) &&
                        !strlen(DI::config()->get('system', 'directory'))) {
-                       Config::set('system', 'directory', dirname(DI::config()->get('system', 'directory_submit_url')));
-                       Config::delete('system', 'directory_submit_url');
+                       DI::config()->set('system', 'directory', dirname(DI::config()->get('system', 'directory_submit_url')));
+                       DI::config()->delete('system', 'directory_submit_url');
                }
 
                /* Installed themes */
@@ -459,20 +484,6 @@ class Site extends BaseAdminModule
                        CP_USERS_AND_GLOBAL => DI::l10n()->t('Public postings from local users and the federated network')
                ];
 
-               $poco_discovery_choices = [
-                       PortableContact::DISABLED => DI::l10n()->t('Disabled'),
-                       PortableContact::USERS => DI::l10n()->t('Users'),
-                       PortableContact::USERS_GCONTACTS => DI::l10n()->t('Users, Global Contacts'),
-                       PortableContact::USERS_GCONTACTS_FALLBACK => DI::l10n()->t('Users, Global Contacts/fallback'),
-               ];
-
-               $poco_discovery_since_choices = [
-                       '30' => DI::l10n()->t('One month'),
-                       '91' => DI::l10n()->t('Three months'),
-                       '182' => DI::l10n()->t('Half a year'),
-                       '365' => DI::l10n()->t('One year'),
-               ];
-
                /* get user names to make the install a personal install of X */
                // @TODO Move to Model\User::getNames()
                $user_names = [];
@@ -490,6 +501,12 @@ class Site extends BaseAdminModule
                        $banner = '<a href="https://friendi.ca"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span>';
                }
 
+               $email_banner = DI::config()->get('system', 'email_banner');
+
+               if ($email_banner == false) {
+                       $email_banner = MailBuilder::DEFAULT_EMAIL_BANNER;
+               }
+
                $additional_info = DI::config()->get('config', 'info');
 
                // Automatically create temporary paths
@@ -511,10 +528,18 @@ class Site extends BaseAdminModule
 
                $check_git_version_choices = [
                        'none' => DI::l10n()->t('Don\'t check'),
-                       'master' => DI::l10n()->t('check the stable version'),
+                       'stable' => DI::l10n()->t('check the stable version'),
                        'develop' => DI::l10n()->t('check the development version')
                ];
 
+               $discovery_choices = [
+                       Contact\Relation::DISCOVERY_NONE => DI::l10n()->t('none'),
+                       Contact\Relation::DISCOVERY_LOCAL => DI::l10n()->t('Local contacts'),
+                       Contact\Relation::DISCOVERY_INTERACTOR => DI::l10n()->t('Interactors'),
+                       // "All" is deactivated until we are sure not to put too much stress on the fediverse with this
+                       // ContactRelation::DISCOVERY_ALL => DI::l10n()->t('All'),
+               ];
+
                $diaspora_able = (DI::baseUrl()->getUrlPath() == '');
 
                $optimize_max_tablesize = DI::config()->get('system', 'optimize_max_tablesize', -1);
@@ -543,6 +568,13 @@ class Site extends BaseAdminModule
                if (!is_null($current_storage_backend) && $current_storage_backend != '') {
                        foreach ($current_storage_backend->getOptions() as $name => $info) {
                                $type = $info[0];
+                               // Backward compatibilty with yesno field description
+                               if ($type == 'yesno') {
+                                       $type = 'checkbox';
+                                       // Remove translated labels Yes No from field info
+                                       unset($info[4]);
+                               }
+
                                $info[0] = $storage_form_prefix . '_' . $name;
                                $info['type'] = $type;
                                $info['field'] = 'field_' . $type . '.tpl';
@@ -565,20 +597,22 @@ class Site extends BaseAdminModule
                        '$worker_title'      => DI::l10n()->t('Worker'),
                        '$relay_title'       => DI::l10n()->t('Message Relay'),
                        '$relocate'          => DI::l10n()->t('Relocate Instance'),
-                       '$relocate_warning'  => DI::l10n()->t('Warning! Advanced function. Could make this server unreachable.'),
+                       '$relocate_warning'  => DI::l10n()->t('<strong>Warning!</strong> Advanced function. Could make this server unreachable.'),
                        '$baseurl'           => DI::baseUrl()->get(true),
 
                        // name, label, value, help string, extra data...
                        '$sitename'         => ['sitename', DI::l10n()->t('Site name'), DI::config()->get('config', 'sitename'), ''],
                        '$sender_email'     => ['sender_email', DI::l10n()->t('Sender Email'), DI::config()->get('config', 'sender_email'), DI::l10n()->t('The email address your server shall use to send notification emails from.'), '', '', 'email'],
+                       '$system_actor_name' => ['system_actor_name', DI::l10n()->t('Name of the system actor'), User::getActorName(), DI::l10n()->t("Name of the internal system account that is used to perform ActivityPub requests. This must be an unused username. If set, this can't be changed again.")],
                        '$banner'           => ['banner', DI::l10n()->t('Banner/Logo'), $banner, ''],
+                       '$email_banner'     => ['email_banner', DI::l10n()->t('Email Banner/Logo'), $email_banner, ''],
                        '$shortcut_icon'    => ['shortcut_icon', DI::l10n()->t('Shortcut icon'), DI::config()->get('system', 'shortcut_icon'), DI::l10n()->t('Link to an icon that will be used for browsers.')],
                        '$touch_icon'       => ['touch_icon', DI::l10n()->t('Touch icon'), DI::config()->get('system', 'touch_icon'), DI::l10n()->t('Link to an icon that will be used for tablets and mobiles.')],
                        '$additional_info'  => ['additional_info', DI::l10n()->t('Additional Info'), $additional_info, DI::l10n()->t('For public servers: you can add additional information here that will be listed at %s/servers.', Search::getGlobalDirectory())],
                        '$language'         => ['language', DI::l10n()->t('System language'), DI::config()->get('system', 'language'), '', $lang_choices],
                        '$theme'            => ['theme', DI::l10n()->t('System theme'), DI::config()->get('system', 'theme'), DI::l10n()->t('Default system theme - may be over-ridden by user profiles - <a href="/admin/themes" id="cnftheme">Change default theme settings</a>'), $theme_choices],
                        '$theme_mobile'     => ['theme_mobile', DI::l10n()->t('Mobile system theme'), DI::config()->get('system', 'mobile-theme', '---'), DI::l10n()->t('Theme for mobile devices'), $theme_choices_mobile],
-                       '$ssl_policy'       => ['ssl_policy', DI::l10n()->t('SSL link policy'), (string)intval(DI::config()->get('system', 'ssl_policy')), DI::l10n()->t('Determines whether generated links should be forced to use SSL'), $ssl_choices],
+                       '$ssl_policy'       => ['ssl_policy', DI::l10n()->t('SSL link policy'), DI::config()->get('system', 'ssl_policy'), DI::l10n()->t('Determines whether generated links should be forced to use SSL'), $ssl_choices],
                        '$force_ssl'        => ['force_ssl', DI::l10n()->t('Force SSL'), DI::config()->get('system', 'force_ssl'), DI::l10n()->t('Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.')],
                        '$hide_help'        => ['hide_help', DI::l10n()->t('Hide help entry from navigation menu'), DI::config()->get('system', 'hide_help'), DI::l10n()->t('Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.')],
                        '$singleuser'       => ['singleuser', DI::l10n()->t('Single user instance'), DI::config()->get('system', 'singleuser', '---'), DI::l10n()->t('Make this instance multi-user or single-user for the named user'), $user_names],
@@ -625,13 +659,17 @@ class Site extends BaseAdminModule
                        '$maxloadavg'             => ['maxloadavg', DI::l10n()->t('Maximum Load Average'), DI::config()->get('system', 'maxloadavg', 20), DI::l10n()->t('Maximum system load before delivery and poll processes are deferred - default %d.', 20)],
                        '$maxloadavg_frontend'    => ['maxloadavg_frontend', DI::l10n()->t('Maximum Load Average (Frontend)'), DI::config()->get('system', 'maxloadavg_frontend', 50), DI::l10n()->t('Maximum system load before the frontend quits service - default 50.')],
                        '$min_memory'             => ['min_memory', DI::l10n()->t('Minimal Memory'), DI::config()->get('system', 'min_memory', 0), DI::l10n()->t('Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).')],
-                       '$optimize_max_tablesize' => ['optimize_max_tablesize', DI::l10n()->t('Maximum table size for optimization'), $optimize_max_tablesize, DI::l10n()->t('Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it.')],
-                       '$optimize_fragmentation' => ['optimize_fragmentation', DI::l10n()->t('Minimum level of fragmentation'), DI::config()->get('system', 'optimize_fragmentation', 30), DI::l10n()->t('Minimum fragmenation level to start the automatic optimization - default value is 30%.')],
+                       '$optimize_tables'        => ['optimize_tables', DI::l10n()->t('Periodically optimize tables'), DI::config()->get('system', 'optimize_tables', false), DI::l10n()->t('Periodically optimize tables like the cache and the workerqueue')],
+
+                       '$contact_discovery'      => ['contact_discovery', DI::l10n()->t('Discover followers/followings from contacts'), DI::config()->get('system', 'contact_discovery'), DI::l10n()->t('If enabled, contacts are checked for their followers and following contacts.') . '<ul>' .
+                               '<li>' . DI::l10n()->t('None - deactivated') . '</li>' .
+                               '<li>' . DI::l10n()->t('Local contacts - contacts of our local contacts are discovered for their followers/followings.') . '</li>' .
+                               '<li>' . DI::l10n()->t('Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.') . '</li></ul>',
+                               $discovery_choices],
+                       '$synchronize_directory'  => ['synchronize_directory', DI::l10n()->t('Synchronize the contacts with the directory server'), DI::config()->get('system', 'synchronize_directory'), DI::l10n()->t('if enabled, the system will check periodically for new contacts on the defined directory server.')],
 
-                       '$poco_completion'        => ['poco_completion', DI::l10n()->t('Periodical check of global contacts'), DI::config()->get('system', 'poco_completion'), DI::l10n()->t('If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.')],
                        '$poco_requery_days'      => ['poco_requery_days', DI::l10n()->t('Days between requery'), DI::config()->get('system', 'poco_requery_days'), DI::l10n()->t('Number of days after which a server is requeried for his contacts.')],
-                       '$poco_discovery'         => ['poco_discovery', DI::l10n()->t('Discover contacts from other servers'), (string)intval(DI::config()->get('system', 'poco_discovery')), DI::l10n()->t('Periodically query other servers for contacts. You can choose between "Users": the users on the remote system, "Global Contacts": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren\'t available. The fallback increases the server load, so the recommended setting is "Users, Global Contacts".'), $poco_discovery_choices],
-                       '$poco_discovery_since'   => ['poco_discovery_since', DI::l10n()->t('Timeframe for fetching global contacts'), (string)intval(DI::config()->get('system', 'poco_discovery_since')), DI::l10n()->t('When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers.'), $poco_discovery_since_choices],
+                       '$poco_discovery'         => ['poco_discovery', DI::l10n()->t('Discover contacts from other servers'), DI::config()->get('system', 'poco_discovery'), DI::l10n()->t('Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.')],
                        '$poco_local_search'      => ['poco_local_search', DI::l10n()->t('Search the local directory'), DI::config()->get('system', 'poco_local_search'), DI::l10n()->t('Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.')],
 
                        '$nodeinfo'               => ['nodeinfo', DI::l10n()->t('Publish server information'), DI::config()->get('system', 'nodeinfo'), DI::l10n()->t('If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href="http://the-federation.info/">the-federation.info</a> for details.')],
@@ -645,6 +683,7 @@ class Site extends BaseAdminModule
                        '$itemcache'              => ['itemcache', DI::l10n()->t('Path to item cache'), DI::config()->get('system', 'itemcache'), DI::l10n()->t('The item caches buffers generated bbcode and external images.')],
                        '$itemcache_duration'     => ['itemcache_duration', DI::l10n()->t('Cache duration in seconds'), DI::config()->get('system', 'itemcache_duration'), DI::l10n()->t('How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1.')],
                        '$max_comments'           => ['max_comments', DI::l10n()->t('Maximum numbers of comments per post'), DI::config()->get('system', 'max_comments'), DI::l10n()->t('How much comments should be shown for each post? Default value is 100.')],
+                       '$max_display_comments'   => ['max_display_comments', DI::l10n()->t('Maximum numbers of comments per post on the display page'), DI::config()->get('system', 'max_display_comments'), DI::l10n()->t('How many comments should be shown on the single view for each post? Default value is 1000.')],
                        '$temppath'               => ['temppath', DI::l10n()->t('Temp path'), DI::config()->get('system', 'temppath'), DI::l10n()->t('If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.')],
                        '$proxy_disabled'         => ['proxy_disabled', DI::l10n()->t('Disable picture proxy'), DI::config()->get('system', 'proxy_disabled'), DI::l10n()->t('The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.')],
                        '$only_tag_search'        => ['only_tag_search', DI::l10n()->t('Only search in tags'), DI::config()->get('system', 'only_tag_search'), DI::l10n()->t('On large systems the text search can slow down the system extremely.')],
@@ -665,7 +704,7 @@ class Site extends BaseAdminModule
                        '$relay_server_tags'      => ['relay_server_tags', DI::l10n()->t('Server tags'), DI::config()->get('system', 'relay_server_tags'), DI::l10n()->t('Comma separated list of tags for the "tags" subscription.')],
                        '$relay_user_tags'        => ['relay_user_tags', DI::l10n()->t('Allow user tags'), DI::config()->get('system', 'relay_user_tags', true), DI::l10n()->t('If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".')],
 
-                       '$form_security_token'    => parent::getFormSecurityToken('admin_site'),
+                       '$form_security_token'    => self::getFormSecurityToken('admin_site'),
                        '$relocate_button'        => DI::l10n()->t('Start Relocation'),
                ]);
        }