To disable the OWA 2007 Out-Of-Office warning,
you will need to edit one of your server-side OWA .js files.
Locate the file named uglobal.js .
At the time of writing, it is in
function wrnOof(){var oDlg=new BtnDlg("oofDlg",L_OofOn,L_Oof,new Array(L_Yes,L_No)
Change the code just after the opening brace,
so that it looks like this:
function wrnOof(){}//var oDlg=new BtnDlg("oofDlg",L_OofOn,L_Oof,new Array(L_Yes,L_No)
You have effectively changed it to an empty function, and commented out the original code. Now the OOF warning should not appear at logon.
Note - your clients will need to clear their Temporary Internet Files before this will work because the original .js file is usually cached client-side.
Copyright © 2003 - 2012 Lee Derbyshire. All rights reserved.