]> git.mxchange.org Git - friendica.git/commitdiff
Default values for settings / use lowercase
authorMichael <heluecht@pirati.ca>
Thu, 1 Oct 2020 21:14:26 +0000 (21:14 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 1 Oct 2020 21:14:26 +0000 (21:14 +0000)
src/Protocol/Relay.php
static/settings.config.php

index 210509d26fca126d792334001a69ea4f99ae9095..3184528cc56213f4627f4f6d8a992e80e33bdb1e 100644 (file)
@@ -29,7 +29,7 @@ use Friendica\Model\Search;
 /**
  * Base class for relay handling
  */
-final class Relay
+class Relay
 {
        /**
         * Check if a post is wanted
@@ -84,6 +84,7 @@ final class Relay
                        $content = mb_strtolower(BBCode::toPlaintext($body, false));
 
                        foreach ($tags as $tag) {
+                               $tag = mb_strtolower($tag);
                                if (in_array($tag, $denyTags)) {
                                        Logger::info('Unwanted hashtag found - rejected', ['hashtag' => $tag, 'network' => $network, 'url' => $url]);
                                        return false;
index e999b78c4307200f53e89a9aad8a11c74619d265..c05e675edb76012961a2e72034f472d399379307 100644 (file)
@@ -156,10 +156,18 @@ return [
                // Periodically (once an hour) run an "optimize table" command for cache tables
                'optimize_tables' => false,
 
+               // relay_deny_tags (String)
+               // Comma separated list of tags that are rejected.
+               'relay_deny_tags' => '',
+
                // relay_server (String)
                // Address of the relay server where public posts should be send to.
                'relay_server' => 'https://social-relay.isurf.ca',
 
+               // relay_server_tags (String)
+               // Comma separated list of tags for the "tags" subscription.
+               'relay_server_tags' => '',
+
                // relay_user_tags (Boolean)
                // If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".
                'relay_user_tags' => true,