Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OWA URL

Status
Not open for further replies.
Dec 19, 2001
125
US
I am trying to create a new URL for OWA instead of the default. Want to use something like webmail.mycompany.com I am having a hard time finding any resources on how to do this does anyone know how to set this up.
 
That article says for 5.5. I tried it anyway and couldn't get it to work. Funny thing is I set this up before about two years ago and now I can't remember how I did it.
 
Ok thanks guys I found my mistake and its called lack of patience. I was creating a new virtual server under system manager but it wasn't coming up in IIS and so I would delete it and try to make another change. I got that to work and set the default page with the following for the redirection. Everythign is working fine now.


<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>
<html>
<head>
<title></title>
<meta name=&quot;Author&quot; content=&quot;None of&quot;>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>
<body>
<font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;>Connecting to secure site.<br><br>Please login.</font>
<script language=&quot;JavaScript&quot; type=&quot;text/JavaScript&quot;>
<!--
var newURL = ' + document.domain + '/exchange/'; //create the new url. We want user to use https
window.location.replace( newURL ); //Replace the url with our new one. The replace method
//is used here to allow the user to back out of the site, if he so desires
//-->
</script>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top