On Sat, 6 Jul 2002, Shawn Anderson wrote:
>
> Here is an update on the eyeXMail...
>
> I have a working beta version up and going as of yesterday. If all looks
> well by the end of today, I will put it up for download. For all of
> those curious here is a sample piece of code to illustrate the new
> interface:
>
> var Xmail = Server.CreateObject("eyeXMail.ctrlclnt");
>
> Xmail.ServerName = "127.0.0.1";
> Xmail.ServerPort = 6017;
> Xmail.ServerUser = "root";
> XMail.ServerPassword = "xmail";
>
> XMail.ExecuteCommand("userlist", "eye-catcher.com\r\nroot");
>
> if (XMail.ResultCode == 0)
> {
> for (i=0; i<XMail.ResultCount;i++)
> {
> var sLine = XMail.Results(i);
> for (l=0; l<sLine.Count; l++)
> {
> Response.Write(sLine(i) + ", ");
> }
> Response.Write("<BR>");
> }
> }
>
> Any thoughts?
Do you use CRAM-MD5 to authenticate to the CTRL server ?
- Davide
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]