Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 08-13-2002 13:45:10

Guest
Guest

If you're using Win 2000 Please read!!!!!!!!!

Hello,
Myself and at least one other gentleman is having an email problem with CCP5 on Windows 2000. If you're running CCP5 on Windows 2000, is the Email working?
Thanks

 

#2 08-13-2002 14:02:08

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: If you're using Win 2000 Please read!!!!!!!!!

Please send your FTP info to ec@kryptronic.com and we'll check it out.  There are several users on Win2K that don't have issues - so the problem is most likely related to an SMTP server.  We'll check it out, though.


Nick Hendler

Offline

 

#3 08-14-2002 17:22:49

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: If you're using Win 2000 Please read!!!!!!!!!

We just identified an issue when sending mail on Windows servers to non-local users.  The issue was not caught in testing because everything was done to local addresses.  Go figure.  Anyway, the fix will be making it into the update that will be sent out later tonight or tomorrow, and for those of you that can't wait, here it is:

In the file:

./cgi-bin/library/common/vars.pl

Look for the lines:

###

} else {

$mail{To} = "$to";
$mail{From} = "$from";
$mail{Subject} = "$subject";
$mail{Message} = "$message";

sendmail(%mail);

} ######### End of if statement.

###

And change to:

###

} else {

$mail{Smtp} = "$mail_smtp_server";

$mail{To} = "$to";
$mail{From} = "$from";
$mail{Subject} = "$subject";
$mail{Message} = "$message";

sendmail(%mail);

} ######### End of if statement.

###

That will fix your worries.


Nick Hendler

Offline

 

Board footer