> How can I prohibit users from accessing the page: > http://www.mymail.com:8383 > directly? I want the users to loggin to the home page 1st and then the > email loggon page..
One way is to use a frameset, and then put some JavaScript in your web message login pages (login.html and plogin.html) that did something like this: var myOfficialMailPage='http://www.mydomain.com/mymailpage' if(top.location.href!=myOfficialMailPage){ top.location.href=myOfficialMailPage } So that any direct access was redirected to the "official" frameset page. Ron Hornbaker Humankind Systems, Inc. - Ipswitch Premier Partner - http://humankindsystems.com/testimonials - 2,958 customers - http://AnswerTrack.com - eCRM email tracking & routing - http://KillerWebMail.com - the name says it all - 1-888-952-4888 or [EMAIL PROTECTED] Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Please visit the Knowledge Base for answers to frequently asked questions: http://www.ipswitch.com/support/IMail/
