我无法让我的 Elmah 电子邮件过滤器正常工作

本文关键字:常工作 工作 过滤器 电子邮件 我的 Elmah | 更新日期: 2023-09-27 18:35:33

我有一个关于以下web.config设置和Elmah的查询。问题是,当我不想收到有关公共操作方法问题的电子邮件时,我仍然会收到有关公共操作方法问题的电子邮件。我现有的过滤器似乎不起作用。

我不完全确定 AND 和 OR 应该如何在 Elmah 电子邮件过滤中工作,尤其是当这段代码是从我从其他开发人员那里获得的一些项目工作中截取而来的。

这些标签旨在防止通过电子邮件报告任何包含索引、缓存或登录等任何单词的错误。

谁能帮忙?

<configuration>
    <configSections>
        <!--Elmah sectionGroup-->
        <sectionGroup name="elmah">
            <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
            <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
            <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
            <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
        </sectionGroup>
  </configSections>  
 <elmah>
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
<errorMail from="" to="" subject="Error(Elmah)" async="true " />
    <security allowRemoteAccess="1"/>
<errorFilter>
  <test>
    <or>
        <is-type binding="BaseException" type="System.InvalidOperationException" />
</or>
<or>
    <regex binding="Exception.Message" pattern="(?ix: 'b potentially 'b.+?'b dangerous 'b.+?'b value 'b.+?'b detected 'b.+?'b client 'b )" />
</or>
<or>
    <regex binding="Exception.Message" pattern="(?ix: 'b public action method     'Index' was not found on controller 'b )" />
    <regex binding="Exception.Message" pattern="(?ix: 'b public action method 'cache' was not found on controller 'b )" />
    <regex binding="Exception.Message" pattern="(?ix: 'b public action method 'Login' was not found on controller 'b )" />
</or>
  </test>
</errorFilter>
  </elmah>  
  <location path="elmah.axd">
  </location>  
  <system.web>
  </system.web>
 <system.webServer>    
<modules runAllManagedModulesForAllRequests="true">
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</modules>
<handlers>
  <add name="httpHandler" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
   </handlers>
  </system.webServer>
</configuration>

我无法让我的 Elmah 电子邮件过滤器正常工作

test 元素只能有一个子断言,因此在其下方有多个or元素意味着除了第一个元素之外的所有元素都被忽略。从您的描述来看,您的test元素似乎应该如下所示:

<test>
  <or> 
    <is-type binding="BaseException" type="System.InvalidOperationException" /> 
    <regex binding="Exception.Message" pattern="(?ix: 'b potentially 'b.+?'b dangerous 'b.+?'b value 'b.+?'b detected 'b.+?'b client 'b )" /> 
    <and> 
      <regex binding="FilterSourceType.Name" pattern="mail" />
      <regex binding="Exception.Message" pattern="(?ix: 'b public 's action 's method 's '(Index|cache|Login)' 's was 's not 's found 's on 's controller 'b )" /> 
    </and>
  </or> 
</test>

请注意,我还继续将三个regex元素折叠为一个,并修复了模式以正确分隔单词('b在边缘和中间's)。