Exchange Server Forums
Forums |
Register |
Login |
My Profile |
Inbox |
RSS
|
My Subscription |
My Forums |
Address Book |
Member List |
Search |
FAQ |
Ticket List |
Log Out
Web Page Login
|
Users viewing this topic:
none
|
Logged in as: Guest
|
Login | |
|
Limited time MSExchange.org offer! -- 1.Sep.2008 1:00:00 PM
|
|
TechGenix and SolarWinds have partnered to provide free copies of SolarWinds Exchange Monitor to all visitors who join the MSExchange.org Forums. SolarWinds Exchange Monitor is a handy desktop dashboard that continuously monitors Microsoft Exchange to deliver real-time insight into Exchange services, mail queue sizes, and host server health. Learn more about Exchange Monitor and the free offer!
|
Web Page Login - 1.Oct.2003 4:51:00 PM
|
|
|
sskula
Posts: 8
Joined: 9.Dec.2002
From: Kentwood MI
Status: offline
|
I heard there is a way to it so you could customize your login with a different box than comes up right now in OWA. You can have right on a web page where the user can put in there user name and password then a button to login, not like now with a pop up that prompts for a user name, password and domain. I hope I explained it ok. Does anyone have incstructions or a html document I could download? Thanks
|
|
|
|
RE: Web Page Login - 2.Oct.2003 10:44:00 AM
|
|
|
sskula
Posts: 8
Joined: 9.Dec.2002
From: Kentwood MI
Status: offline
|
it says page not found
|
|
|
|
RE: Web Page Login - 2.Oct.2003 12:54:00 PM
|
|
|
Henrik Walther
Posts: 6849
Joined: 21.Nov.2002
From: Copenhagen, Denmark
Status: online
|
Not here, but try to browse your way to it by choosing Articles & Tutorials in left site of this page, then Topic -> Exchange 2000.
|
|
|
|
RE: Web Page Login - 2.Oct.2003 1:03:00 PM
|
|
|
marc2003
Posts: 82
Joined: 25.May2003
From: england
Status: offline
|
the login page in that tutorial serves no purpose whatsoever!
you can setup form based authentication for owa 2000 as shown below. only works on ie6 on windows though. if another browser/os is detected the user will get the standard browser dialog.
code:
<html> <head> <title>Microsoft Outlook Web Access</title> <script language=javascript1.2>
var installation="/exchange"; //change to path/url of your owa installtion if necessary
var win=0; var ie6=0; if(navigator.userAgent.toLowerCase().indexOf('win')!=-1){win=1;} if(navigator.userAgent.toLowerCase().indexOf('msie 6')!=-1){ie6=1;} if(navigator.userAgent.toLowerCase().indexOf('opera')!=-1){ie6=0;} if(!(win&ie6)){window.location.href=installation;}
function owalogin() { switch(document.login.name.value){ case "": alert("Please enter your username."); document.login.name.focus(); break; default: switch(document.login.pass.value){ case "": alert("Please enter your password."); document.login.pass.focus(); break; default: var owa=new ActiveXObject("msxml2.xmlhttp") owa.open("get",installation,false,login.name.value ,login.pass.value ) owa.send() switch(owa.status){ case 200: window.location.href=installation; break; case 401: alert("Login attempt failed. Please check your username / password and try again."); document.login.reset(); document.login.name.focus(); break; default: alert("Sorry, the server did not respond as expected. Please try again later or contact your system administrator."); document.login.reset(); document.login.name.focus(); break; } } } }
</script> </head> <body onload="document.login.name.focus();"> <form name=login action="javascript:owalogin();" method=post> <table> <tr> <td><b>Username</b></td> <td><input name="name" size="22" maxlength="127" /></td> </tr> <tr> <td><b>Password</b></td> <td><input type="password" name="pass" size="22" maxlength="127" /></td> </tr> <tr> <td /><td><input type="submit" name="okbutton" value="OK" /></td> </tr> </table> </form> </body> </html>
very minimal but ripe for customisation
few notes-
1) save using any filename/extension you like 2) requires basic authentication on exchange virtual directory 3) if you set the default domain under basic authentication on the exchweb\bin folder, users can login specifying just their username instead of domain\username 4) works with ssl. best to require encryption for this form also. [ October 03, 2003, 12:18 PM: Message edited by: marc2003 ]
|
|
|
|
RE: Web Page Login - 4.Oct.2003 3:49:00 AM
|
|
|
sskula
Posts: 8
Joined: 9.Dec.2002
From: Kentwood MI
Status: offline
|
just what I was looking for. Thank you
|
|
|
|
RE: Web Page Login - 8.Oct.2003 9:08:00 AM
|
|
|
jbarsodi
Posts: 104
Joined: 22.Oct.2001
From: Sparks, NV
Status: offline
|
Alessan, you may want to reference this older thread where some of us posted problems/issues and solutions re: this login page.
-John
|
|
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts |
|