Here is the one from the orginal:
when RULE_INIT {
set static::OWA_FORM_BASE_SSO_CFG_NAME "/vpn/wud_owa.app/exchange_forms_sso"
}
when ACCESS_ACL_ALLOWED {
set req_uri [HTTP::uri]
if { $req_uri contains "/owa/&reason=0" } {
WEBSSO::select $static::OWA_FORM_BASE_SSO_CFG_NAME
}
unset req_uri
}
This is the Duplicate one (remember I can't delete this without the original one failing)
when RULE_INIT {
set static::OWA_FORM_BASE_SSO_CFG_NAME "/vpn/wud_owa_test.app/exchange_forms_sso"
}
when ACCESS_ACL_ALLOWED {
set req_uri [HTTP::uri]
if { $req_uri contains "/owa/&reason=0" } {
WEBSSO::select $static::OWA_FORM_BASE_SSO_CFG_NAME
}
unset req_uri
}
Thanks in advance,
Misty