ECA::enable

Description

The ECA::enable command enables the plugin the flow.

Syntax

ECA::enable

Examples

when HTTP_REQUEST {
    if { [HTTP::path] starts_with "/protected_uri" } {
        ECA::enable
        ECA::select select_ntlm:/Common/exch_ntlm_auth_config
    } else {
        ECA::disable
    }
}