Mike_59458
Dec 15, 2011Nimbostratus
Exchange 2010 & F5
I have a iRule to block access of OWA from outside of our enviroment using the below code.
when HTTP_REQUEST {
HTTP::enable
if {[string tolower [HTTP::uri]] eq "/owa" } {
HTTP::respond 401
}
}
What we are seeing is repeated login screens. What we would like to see is a unauthorized or unavailable error message come up. What do I need to change to get a error message to pop up. F5s are running 10.2.3 OS.