>From the -V archive...

Login from your own form:

<!------------------------------Start snip here - watch out for word
wrap!----------------------------->


<form name="frmLogin" method="POST"
action="http://mail.yourdomain.com:8383/login.cgi">
   <input type="hidden" name="page" value="login">
   <input type="text" name="userid" value="username">
   <input type="text" name="passwd" value="password">
   <input type="submit" value="Login">
</form>

Use ASP to login via a web app:

<form name="frmLogin" method="POST"
action="http://mail.yourdomain.com:8383/login.cgi">
   <input type="hidden" name="page" value="login">
   <input type="hidden" name="userid" value="<% =Session("UserName") %>">
   <input type="hidden" name="passwd" value="<% =Session("Password") %>">
   <input type="submit" value="Check Mail">
</form>

<!------------------------------End snip here - watch out for word
wrap!----------------------------->

-V
----- Original Message -----
From: Chris ten Den <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, September 20, 1999 1:42 PM
Subject: [IMail Forum] Logging in w/o using the standard login.


> I would really really like to be able to log into the Imail server w/o
> going through the standard login screen.  We have an application which
> already logs people in and creates their account with the imail app.
> Unfortunately we can't log people into the imail app automatically.  It
> always brings up their login screen.  We tried to duplicate their
> 'Login' form but it only brings us to their login screen again.
>
> Essentially we want to have a button that automatically logs the user
> in.
>
> Any help will be greatly appreciated.
>
> Please visit http://www.ipswitch.com/support/mailing-lists.html
> to be removed from this list.
>

Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

Reply via email to