Add Outlook Web Access Login Options to the APM Logon Page
Outlook Web Access is the web interface to the Microsoft Exchange environment, and many customers have secured the portal behind their BIG-IP APM architecture. In looking at the OWA logon page, howev...
Published Apr 23, 2013
Version 1.0Seth_Cooper
Employee
Joined November 30, 2010
Seth_Cooper
Employee
Joined November 30, 2010
Stanislas_Piro2
May 16, 2017Cumulonimbus
Hi,
This code was written when APM did not support radio button in logon page.
This can be now done without editing logon.inc file starting with version 11.6.
another improvement can be to use variable assign instead of irule event (use this variable assign order because flags expression uses trusted value):
session.custom.owa.trusted =
expr {[mcget {session.logon.last.pubpriv}] == "private" ? 4 : 0}
session.custom.owa.flags =
expr {[mcget {session.logon.last.lightversion}] == "yes" ? [mcget {session.custom.owa.trusted}]+1 : [mcget {session.custom.owa.trusted}] }
Note : Updated with variable assign optimized code (15/05/2018)