Microsoft Exchange Autodiscover サービスのリクエストは「ノイズ」になり、大量の HTTP 404(Not found)エラーを引き起こすことがあります。
この例の カスタムルール は、autodiscover.xml と autodiscover.src へのリクエストをブロックします。
-
受信リクエストが次に一致する場合:
式エディターを使う場合:
(ends_with(http.request.uri.path, "/autodiscover.xml") or ends_with(http.request.uri.path, "/autodiscover.src")) -
次のアクションを実行: Block
代わりに、Business または Enterprise プランのお客様は、同じ目的で matches 比較演算子 を使えます。この例では、式は次のとおりです。
(http.request.uri.path matches "/autodiscover.(xml|src)$")