I am using Dave Navarro's sendfile example and this is what is
really weird this line:
TCP OPEN "smtp" AT $mailhost AS hTCP
This worked on every server except one that I have.
and when I tried to connect to my exchange server I would get
err# = 57. I then changed the code to:
TCP OPEN PORT 25 AT "192.168.0.109" AS hTCP TIMEOUT 180
Same thing, it worked on every computer except this one
server which is NT4 service pack 5
So then I looked at some more examples and changed my code to
this:
%PORT = 25
$database = "EXCHANGE1"
...
...
TCP OPEN PORT %port AT $database AS hTCP TIMEOUT 180
and bingo it worked on all the computers.
What would cause this?
Thanks
------------------
-Greg
really weird this line:
TCP OPEN "smtp" AT $mailhost AS hTCP
This worked on every server except one that I have.
and when I tried to connect to my exchange server I would get
err# = 57. I then changed the code to:
TCP OPEN PORT 25 AT "192.168.0.109" AS hTCP TIMEOUT 180
Same thing, it worked on every computer except this one
server which is NT4 service pack 5
So then I looked at some more examples and changed my code to
this:
%PORT = 25
$database = "EXCHANGE1"
...
...
TCP OPEN PORT %port AT $database AS hTCP TIMEOUT 180
and bingo it worked on all the computers.
What would cause this?
Thanks
------------------
-Greg
Comment