Jump to content

error 5x


hjm3857
 Share

Recommended Posts

I am using the following script (portion of):

#include <INet.au3>

$Counter = 56

WHILE 1

If $Counter = 1 Then

ExitLoop

EndIf

If ProcessExists("GSFAXPRO.exe") Then

;LOOKS GOOD

;DO NOTHING

Else

$s_SmtpServer = "exchange1.xyz.com"

$s_FromName = "GSFax-Watcher"

$s_FromAddress = "GSFax@xyz.com"

$s_ToAddress = "notice@xyz.com"

$s_Subject = "GSFax Process Problem"

Dim $as_Body[2]

$as_Body[0] = "GSFax Pro Is Not Running"

$as_Body[1] = "Check Server Named WEB"

$Response = _INetSmtpMail ($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject, $as_Body)

$err = @error

If $Response = 1 Then

MsgBox(0, "Success!", "Mail sent")

Else

MsgBox(0, "Error!", "Mail failed with error code " & $err)

EndIf

EndIf

SLEEP (60000)

$Counter = $Counter - 1

WEnd

I have changed a few things to protect the inocent.

I basically coppied this from the help doc. It is returning error 50. I interpret this to be "cannot open smtp session" I can telnet from the same box to the smtp port on the server. I have tried name, and IP address. I am using exchange server, I have validated the connect, and relay settings are not restricting me. I have used blat from the same box, and it works. I can use blat to do this, but i wanted to keep it in a single executable if possible. the message box stuff is there to see the error. when this works that will be removed. The purpose of this is simple to alert if a process stops running in a 1 hour (roughly) period.

Thanks

Link to comment
Share on other sites

[u]Helpful tips:[/u]If you want better answers to your questions, take the time to reproduce your issue in a small "stand alone" example script whenever possible. Also, make sure you tell us 1) what you tried, 2) what you expected to happen, and 3) what happened instead.[u]Useful links:[/u]BrettF's update to LxP's "How to AutoIt" pdfValuater's Autoit 1-2-3 Download page for the latest versions of Autoit and SciTE[quote]<glyph> For example - if you came in here asking "how do I use a jackhammer" we might ask "why do you need to use a jackhammer"<glyph> If the answer to the latter question is "to knock my grandmother's head off to let out the evil spirits that gave her cancer", then maybe the problem is actually unrelated to jackhammers[/quote]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...