Is it possible to store the user name and password in an external DB when they are set in web messaging?  How?
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Dan Nguyen
Sent: Wednesday, October 04, 2000 3:23 PM
To: [EMAIL PROTECTED]
Subject: Re: [IMail Forum] Automatic login to Web Messaging

Yes, if you are using External DB, such as Access or SQL, then just store the user name and password in session then pass it to Imail like this:
 
<html>   
<head>
<script language="javascript">
 
function logonEmail()
{
document.loginForm.submit();
}
 
</script>
</head>

<%
    username = session_username    'pass these 2 variables
    password =  session_password
%>
<body bgcolor="#FFFFFF" >
<form name="loginForm" action="http://mail1.domain.com:8383/login.cgi" method="POST">
 

  <input type="hidden" name="page" value="login">
  <input type="hidden" name="userid" value="<%=username & "@domain.com"%>">
  <input type="hidden" name="passwd" value="<%=password%>">
</form>  
          
  </BODY>
  </HTML>
----- Original Message -----
Sent: Wednesday, October 04, 2000 6:16 AM
Subject: [IMail Forum] Automatic login to Web Messaging

Is there any way to store the login information for an email address and automatically log that user into Web Messaging through ASP, ColdFusion, etc.?

Donnie Carvajal - Senior Programmer
[EMAIL PROTECTED]

www.dynasite.net

Explore Interactive, Inc.
5745 Essen Lane Suite 210
Baton Rouge, LA 70810
(225) 761-0088 - voice
(225) 767-3445 - fax

Confidential Legal Notice:
This message is intended for the use of the individual or entity to whom it is addressed and contains information that is privileged and confidential. If you, the reader are not the intended recipient, you should not disseminate, distribute or copy this information and communication to any individual(s) not specifically identified in the above To: Heading.  All rights reserved (c) 2000 Explore Interactive, Inc.

 

Reply via email to