From 2172d7d3cfe26fe7bd90b163a5498bfc836b2d1e Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Thu, 23 Apr 2020 10:08:41 +0000 Subject: [PATCH] fhem.pl: add disableFeatures:securityCheck + doc (Forum #110097) git-svn-id: https://svn.fhem.de/fhem/trunk@21762 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/docs/commandref_frame.html | 14 ++++++++++++++ fhem/docs/commandref_frame_DE.html | 12 ++++++++++++ fhem/fhem.pl | 3 ++- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/fhem/docs/commandref_frame.html b/fhem/docs/commandref_frame.html index 970bf4cd9..e05d66412 100644 --- a/fhem/docs/commandref_frame.html +++ b/fhem/docs/commandref_frame.html @@ -1528,6 +1528,20 @@ The following local attributes are used by a wider range of devices: dynamically.
+ +
  • disableFeatures
    + comma separated list of values. Currently following values are + recognized: + +
  • +
  • dnsHostsFile
    If dnsServer is set, check the contents of the file specified as diff --git a/fhem/docs/commandref_frame_DE.html b/fhem/docs/commandref_frame_DE.html index f35ca86f4..0286f12b7 100644 --- a/fhem/docs/commandref_frame_DE.html +++ b/fhem/docs/commandref_frame_DE.html @@ -1636,6 +1636,18 @@ Die folgenden lokalen Attribute werden von mehreren Geräten verwendet: IPv4 unterstützt.

  • + +
  • disableFeatures
    + Komma separierte Liste von Werten. Z.Zt. werden Folgende erkannt: + +
  • +
  • dnsServer
    Enthält die IP Adresse des DNS Servers. Die von bestimmten Modulen diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 45da1837a..aa501bdc8 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -331,7 +331,7 @@ my @globalAttrList = qw( blockingCallMax commandref:modular,full configfile - disableFeatures:multiple,attrTemplate + disableFeatures:multiple-strict,attrTemplate,securityCheck dnsHostsFile dnsServer dupTimeout @@ -5983,6 +5983,7 @@ sub SecurityCheck() { my @fnd; + return if(AttrVal("global", "disableFeatures", "") =~ m/\bsecurityCheck\b/i); foreach my $sdev (keys %defs) { next if($defs{$sdev}{TEMPORARY}); my $type = $defs{$sdev}{TYPE};