[RadiusNT] Store Procedure for Rockliffe's MailSite Authentication

DAN W TANG ( (no email) )
Tue, 17 Nov 1998 12:46:02 +0800

This is a multi-part message in MIME format.

------=_NextPart_000_000A_01BE1228.3BFED1E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Dale,

I am prepare to implementing Rockliffe's MailSite, I wonder if I could =
get the store procedures which mentioned in there manual from you.

I foud the VerifyMailUser in your manual as follow:

CREATE PROCEDURE VerifyMailUser
@username varchar(32),
@domain varchar(32),
@esid integer
AS
SELECT Login,Shell,Email,d.MailDomain,Password,HomeDir
FROM MasterAccounts ma, SubAccounts sa, Groups g, Domains d, =
AccountTypes at
WHERE ma.CustomerID=3Dsa.CustomerID
AND ma.GroupID=3Dg.GroupID
AND g.DomainID=3Dd.DomainID
AND at.AccountType=3Dsa.AccountType
AND at.ExternalSystemID=3D@esid
AND (((Login=3D@username OR shell=3D@username)
AND d.Domain=3D@domain)
OR Email=3D@username + "@" + @domain)

There should be another store procedure ListMailUser I could not find.

++++++++++++++++++++++++++++++++++
Dan W Tang Domain Internet Access =20
IS Manager www.dmn.com.au
Tel: 61-8-9443 6000 Fax: 61-8-9443 6011
mailto:dan@dmn.com.au
++++++++++++++++++++++++++++++++++

=20

------=_NextPart_000_000A_01BE1228.3BFED1E0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">

Dale,
 
I am prepare to implementing =Rockliffe's=20MailSite, I wonder if I could get the store procedures which mentioned =in there=20manual from you.
 
I foud the VerifyMailUser in your manual as=20follow:
 
CREATE PROCEDURE VerifyMailUser
@username varchar(32),
@domain varchar(32),
@esid integer
AS
SELECT    =20Login,Shell,Email,d.MailDomain,Password,HomeDir
FROM        =MasterAccounts=20ma, SubAccounts sa, Groups g, Domains d, AccountTypes at
WHERE    =20ma.CustomerID=3Dsa.CustomerID
          &nbs=p;     =20AND ma.GroupID=3Dg.GroupID
          &nbs=p;     =20AND g.DomainID=3Dd.DomainID
          &nbs=p;     =20AND at.AccountType=3Dsa.AccountType
          &nbs=p;     =20AND at.ExternalSystemID=3D@esid
          &nbs=p;     =20AND (((Login=3D@username OR shell=3D@username)
          &nbs=p;            =;=20AND d.Domain=3D@domain)
          &nbs=p;            =;=20OR Email=3D@username + "@" + @domain)
 
There should be another store =procedure=20ListMailUser I could not find.
 
 
 
++++++++++++++++++++++++++++++++++
Dan W=20Tang     Domain Internet=20Access       
IS=20Manager     www.dmn.com.au
Tel: 61-8-9443 =6000 =20Fax: 61-8-9443 6011
mailto:dan@dmn.com.au
+++++++++++++=+++++++++++++++++++++
 
   =
------=_NextPart_000_000A_01BE1228.3BFED1E0--