In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.
Blat Mail GPF
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Blat Mail GPF
Howdy Gents
I am trying to use Blatmail with the latest Xailer. (1.9.6)
I have downloaded Blatmail from the website.
blat.dll version is 2.6.2 Modified on 25/02/07
I have included this at the top of my prg
#include "Blatmail.ch"
My code looks like htis
Local oMessage
WITH OBJECT oMessage := TBlatMail():New()
:aReceipts := {"myemail"}
:cAddress := "myemail"
:cBody := "Hello World"
:cServer := "myserver netbios name"
:cSubject := "This is a blat email "
:nPort := 25
:nType := btHTML
:Create()
END
If ! oMessage:Send()
LogDebug("Blat Error: " + Str(oMessage:nError))
EndIf
It fails on the send method
I added the BlatMail.prg into my project to try and debug it, but it fails
in the C code ...
Here's the error
#1: GPF (Code = c0000005):
Access violation
TBLATMAIL:SENDMAIL (0)
TBLATMAIL:SEND (130)
ORDERCOMPLETE (1052)
PICKLISTOPTIONS (838)
PICKLIST (423)
SHOWPICKLIST (330)
SELECTPICKLIST (264)
PICKMENU (74)
MAINMENU (874)
STARTUP (415)
MAIN (199)
I have the dll in the same folder as my exe.
I can see the execution enter the XA_FUNC_STATIC( XBLATMAIL_SENDMAIL )
function buts thats as far as i go..
Nick
I am trying to use Blatmail with the latest Xailer. (1.9.6)
I have downloaded Blatmail from the website.
blat.dll version is 2.6.2 Modified on 25/02/07
I have included this at the top of my prg
#include "Blatmail.ch"
My code looks like htis
Local oMessage
WITH OBJECT oMessage := TBlatMail():New()
:aReceipts := {"myemail"}
:cAddress := "myemail"
:cBody := "Hello World"
:cServer := "myserver netbios name"
:cSubject := "This is a blat email "
:nPort := 25
:nType := btHTML
:Create()
END
If ! oMessage:Send()
LogDebug("Blat Error: " + Str(oMessage:nError))
EndIf
It fails on the send method
I added the BlatMail.prg into my project to try and debug it, but it fails
in the C code ...
Here's the error
#1: GPF (Code = c0000005):
Access violation
TBLATMAIL:SENDMAIL (0)
TBLATMAIL:SEND (130)
ORDERCOMPLETE (1052)
PICKLISTOPTIONS (838)
PICKLIST (423)
SHOWPICKLIST (330)
SELECTPICKLIST (264)
PICKMENU (74)
MAINMENU (874)
STARTUP (415)
MAIN (199)
I have the dll in the same folder as my exe.
I can see the execution enter the XA_FUNC_STATIC( XBLATMAIL_SENDMAIL )
function buts thats as far as i go..
Nick
Blat Mail GPF
Nick,
> WITH OBJECT oMessage := TBlatMail():New()
> :aReceipts := {"myemail"}
> :cAddress := "myemail"
> :cBody := "Hello World"
> :cServer := "myserver netbios name"
> :cSubject := "This is a blat email "
> :nPort := 25
> :nType := btHTML
> :Create()
> END
>
> If ! oMessage:Send()
> LogDebug("Blat Error: " + Str(oMessage:nError))
> EndIf
>
> It fails on the send method
This is my code that works fine in 1.9.6 :
oBlat:=TBlatMail():Create(Self)
oBlat:cAddress:='bugreport@mail.ru'
oBlat:cServer:='smtp.mail.ru' // SMTP server
oBlat:cUser:='bugreport'
oBlat:cPassword:='bugreport34546'
oBlat:lAuth:=.t.
oBlat:AddReceipt('bugreport@mail.ru')
oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Note that I use constructor Create instead New.
Blat.dll must be placed in your .exe directory, or some system directory
(fe: C:WINDOWS).
Maybe you also have some problem with Internet connection. Maybe your SMTP
server requires authentification.
Regards, Oleg
> WITH OBJECT oMessage := TBlatMail():New()
> :aReceipts := {"myemail"}
> :cAddress := "myemail"
> :cBody := "Hello World"
> :cServer := "myserver netbios name"
> :cSubject := "This is a blat email "
> :nPort := 25
> :nType := btHTML
> :Create()
> END
>
> If ! oMessage:Send()
> LogDebug("Blat Error: " + Str(oMessage:nError))
> EndIf
>
> It fails on the send method
This is my code that works fine in 1.9.6 :
oBlat:=TBlatMail():Create(Self)
oBlat:cAddress:='bugreport@mail.ru'
oBlat:cServer:='smtp.mail.ru' // SMTP server
oBlat:cUser:='bugreport'
oBlat:cPassword:='bugreport34546'
oBlat:lAuth:=.t.
oBlat:AddReceipt('bugreport@mail.ru')
oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Note that I use constructor Create instead New.
Blat.dll must be placed in your .exe directory, or some system directory
(fe: C:WINDOWS).
Maybe you also have some problem with Internet connection. Maybe your SMTP
server requires authentification.
Regards, Oleg
Blat Mail GPF
Nick,
> WITH OBJECT oMessage := TBlatMail():New()
> :aReceipts := {"myemail"}
> :cAddress := "myemail"
> :cBody := "Hello World"
> :cServer := "myserver netbios name"
> :cSubject := "This is a blat email "
> :nPort := 25
> :nType := btHTML
> :Create()
> END
>
> If ! oMessage:Send()
> LogDebug("Blat Error: " + Str(oMessage:nError))
> EndIf
>
> It fails on the send method
This is my code that works fine in 1.9.6 :
oBlat:=TBlatMail():Create(Self)
oBlat:cAddress:='bugreport@mail.ru'
oBlat:cServer:='smtp.mail.ru' // SMTP server
oBlat:cUser:='bugreport'
oBlat:cPassword:='bugreport34546'
oBlat:lAuth:=.t.
oBlat:AddReceipt('bugreport@mail.ru')
oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Note that I use constructor Create instead New.
Blat.dll must be placed in your .exe directory, or some system directory
(fe: C:WINDOWS).
Maybe you also have some problem with Internet connection. Maybe your SMTP
server requires authentification.
Regards, Oleg
> WITH OBJECT oMessage := TBlatMail():New()
> :aReceipts := {"myemail"}
> :cAddress := "myemail"
> :cBody := "Hello World"
> :cServer := "myserver netbios name"
> :cSubject := "This is a blat email "
> :nPort := 25
> :nType := btHTML
> :Create()
> END
>
> If ! oMessage:Send()
> LogDebug("Blat Error: " + Str(oMessage:nError))
> EndIf
>
> It fails on the send method
This is my code that works fine in 1.9.6 :
oBlat:=TBlatMail():Create(Self)
oBlat:cAddress:='bugreport@mail.ru'
oBlat:cServer:='smtp.mail.ru' // SMTP server
oBlat:cUser:='bugreport'
oBlat:cPassword:='bugreport34546'
oBlat:lAuth:=.t.
oBlat:AddReceipt('bugreport@mail.ru')
oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Note that I use constructor Create instead New.
Blat.dll must be placed in your .exe directory, or some system directory
(fe: C:WINDOWS).
Maybe you also have some problem with Internet connection. Maybe your SMTP
server requires authentification.
Regards, Oleg
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Blat Mail GPF
Hi Oleg
I shouldn't be a programmer....
I realised after reading your post and having a good sleep that I didn't
have the dll in my exe directory, even though I thought I did. Because I was
running direct from the IDE my exe wasn't where I was thinking it was..so I
got working, thanks for that
I have copied your code line for line now, except I commented out the
username , password and lAuth as we have ms exchange internally and don't
need to validate
I now get this error
2: File (message text) does not exist
Here's my code
oBlat:=TBlatMail():Create()
oBlat:cAddress:='me@email.com'
oBlat:cServer:='my.mailserver.com'// SMTP server
//oBlat:cUser:='bugreport'
//oBlat:cPassword:='bugreport34546'
//oBlat:lAuth:=.t.
oBlat:AddReceipt('email@email.com' oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Here is the install string
-install my.mailserver.com me@mail.com - 25 - -q
here is the send string
-to email@email.com -subject Error -body "Error description"
I also get this in the console window which I need to get rid of
somehow?
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
Cheers
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487c3828$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> WITH OBJECT oMessage := TBlatMail():New()
>> :aReceipts := {"myemail"}
>> :cAddress := "myemail"
>> :cBody := "Hello World"
>> :cServer := "myserver netbios name"
>> :cSubject := "This is a blat email "
>> :nPort := 25
>> :nType := btHTML
>> :Create()
>> END
>>
>> If ! oMessage:Send()
>> LogDebug("Blat Error: " + Str(oMessage:nError))
>> EndIf
>>
>> It fails on the send method
>
> This is my code that works fine in 1.9.6 :
>
> oBlat:=TBlatMail():Create(Self)
> oBlat:cAddress:='bugreport@mail.ru'
> oBlat:cServer:='smtp.mail.ru' // SMTP server
> oBlat:cUser:='bugreport'
> oBlat:cPassword:='bugreport34546'
> oBlat:lAuth:=.t.
> oBlat:AddReceipt('bugreport@mail.ru')
> oBlat:cSubject:='Error'
> oBlat:cBody:='Error description'
> if oBlat:Send()
> MsgInfo('success')
> else
> MsgInfo('error '+str(oBlat:nLastError))
> endif
> oBlat:Free()
>
> Note that I use constructor Create instead New.
> Blat.dll must be placed in your .exe directory, or some system directory
> (fe: C:WINDOWS).
> Maybe you also have some problem with Internet connection. Maybe your SMTP
> server requires authentification.
>
> Regards, Oleg
>
I shouldn't be a programmer....
I realised after reading your post and having a good sleep that I didn't
have the dll in my exe directory, even though I thought I did. Because I was
running direct from the IDE my exe wasn't where I was thinking it was..so I
got working, thanks for that
I have copied your code line for line now, except I commented out the
username , password and lAuth as we have ms exchange internally and don't
need to validate
I now get this error
2: File (message text) does not exist
Here's my code
oBlat:=TBlatMail():Create()
oBlat:cAddress:='me@email.com'
oBlat:cServer:='my.mailserver.com'// SMTP server
//oBlat:cUser:='bugreport'
//oBlat:cPassword:='bugreport34546'
//oBlat:lAuth:=.t.
oBlat:AddReceipt('email@email.com' oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Here is the install string
-install my.mailserver.com me@mail.com - 25 - -q
here is the send string
-to email@email.com -subject Error -body "Error description"
I also get this in the console window which I need to get rid of
somehow?
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
Cheers
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487c3828$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> WITH OBJECT oMessage := TBlatMail():New()
>> :aReceipts := {"myemail"}
>> :cAddress := "myemail"
>> :cBody := "Hello World"
>> :cServer := "myserver netbios name"
>> :cSubject := "This is a blat email "
>> :nPort := 25
>> :nType := btHTML
>> :Create()
>> END
>>
>> If ! oMessage:Send()
>> LogDebug("Blat Error: " + Str(oMessage:nError))
>> EndIf
>>
>> It fails on the send method
>
> This is my code that works fine in 1.9.6 :
>
> oBlat:=TBlatMail():Create(Self)
> oBlat:cAddress:='bugreport@mail.ru'
> oBlat:cServer:='smtp.mail.ru' // SMTP server
> oBlat:cUser:='bugreport'
> oBlat:cPassword:='bugreport34546'
> oBlat:lAuth:=.t.
> oBlat:AddReceipt('bugreport@mail.ru')
> oBlat:cSubject:='Error'
> oBlat:cBody:='Error description'
> if oBlat:Send()
> MsgInfo('success')
> else
> MsgInfo('error '+str(oBlat:nLastError))
> endif
> oBlat:Free()
>
> Note that I use constructor Create instead New.
> Blat.dll must be placed in your .exe directory, or some system directory
> (fe: C:WINDOWS).
> Maybe you also have some problem with Internet connection. Maybe your SMTP
> server requires authentification.
>
> Regards, Oleg
>
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Blat Mail GPF
Hi Oleg
I shouldn't be a programmer....
I realised after reading your post and having a good sleep that I didn't
have the dll in my exe directory, even though I thought I did. Because I was
running direct from the IDE my exe wasn't where I was thinking it was..so I
got working, thanks for that
I have copied your code line for line now, except I commented out the
username , password and lAuth as we have ms exchange internally and don't
need to validate
I now get this error
2: File (message text) does not exist
Here's my code
oBlat:=TBlatMail():Create()
oBlat:cAddress:='me@email.com'
oBlat:cServer:='my.mailserver.com'// SMTP server
//oBlat:cUser:='bugreport'
//oBlat:cPassword:='bugreport34546'
//oBlat:lAuth:=.t.
oBlat:AddReceipt('email@email.com' oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Here is the install string
-install my.mailserver.com me@mail.com - 25 - -q
here is the send string
-to email@email.com -subject Error -body "Error description"
I also get this in the console window which I need to get rid of
somehow?
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
Cheers
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487c3828$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> WITH OBJECT oMessage := TBlatMail():New()
>> :aReceipts := {"myemail"}
>> :cAddress := "myemail"
>> :cBody := "Hello World"
>> :cServer := "myserver netbios name"
>> :cSubject := "This is a blat email "
>> :nPort := 25
>> :nType := btHTML
>> :Create()
>> END
>>
>> If ! oMessage:Send()
>> LogDebug("Blat Error: " + Str(oMessage:nError))
>> EndIf
>>
>> It fails on the send method
>
> This is my code that works fine in 1.9.6 :
>
> oBlat:=TBlatMail():Create(Self)
> oBlat:cAddress:='bugreport@mail.ru'
> oBlat:cServer:='smtp.mail.ru' // SMTP server
> oBlat:cUser:='bugreport'
> oBlat:cPassword:='bugreport34546'
> oBlat:lAuth:=.t.
> oBlat:AddReceipt('bugreport@mail.ru')
> oBlat:cSubject:='Error'
> oBlat:cBody:='Error description'
> if oBlat:Send()
> MsgInfo('success')
> else
> MsgInfo('error '+str(oBlat:nLastError))
> endif
> oBlat:Free()
>
> Note that I use constructor Create instead New.
> Blat.dll must be placed in your .exe directory, or some system directory
> (fe: C:WINDOWS).
> Maybe you also have some problem with Internet connection. Maybe your SMTP
> server requires authentification.
>
> Regards, Oleg
>
I shouldn't be a programmer....
I realised after reading your post and having a good sleep that I didn't
have the dll in my exe directory, even though I thought I did. Because I was
running direct from the IDE my exe wasn't where I was thinking it was..so I
got working, thanks for that
I have copied your code line for line now, except I commented out the
username , password and lAuth as we have ms exchange internally and don't
need to validate
I now get this error
2: File (message text) does not exist
Here's my code
oBlat:=TBlatMail():Create()
oBlat:cAddress:='me@email.com'
oBlat:cServer:='my.mailserver.com'// SMTP server
//oBlat:cUser:='bugreport'
//oBlat:cPassword:='bugreport34546'
//oBlat:lAuth:=.t.
oBlat:AddReceipt('email@email.com' oBlat:cSubject:='Error'
oBlat:cBody:='Error description'
if oBlat:Send()
MsgInfo('success')
else
MsgInfo('error '+str(oBlat:nLastError))
endif
oBlat:Free()
Here is the install string
-install my.mailserver.com me@mail.com - 25 - -q
here is the send string
-to email@email.com -subject Error -body "Error description"
I also get this in the console window which I need to get rid of
somehow?
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
Cheers
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487c3828$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
>> WITH OBJECT oMessage := TBlatMail():New()
>> :aReceipts := {"myemail"}
>> :cAddress := "myemail"
>> :cBody := "Hello World"
>> :cServer := "myserver netbios name"
>> :cSubject := "This is a blat email "
>> :nPort := 25
>> :nType := btHTML
>> :Create()
>> END
>>
>> If ! oMessage:Send()
>> LogDebug("Blat Error: " + Str(oMessage:nError))
>> EndIf
>>
>> It fails on the send method
>
> This is my code that works fine in 1.9.6 :
>
> oBlat:=TBlatMail():Create(Self)
> oBlat:cAddress:='bugreport@mail.ru'
> oBlat:cServer:='smtp.mail.ru' // SMTP server
> oBlat:cUser:='bugreport'
> oBlat:cPassword:='bugreport34546'
> oBlat:lAuth:=.t.
> oBlat:AddReceipt('bugreport@mail.ru')
> oBlat:cSubject:='Error'
> oBlat:cBody:='Error description'
> if oBlat:Send()
> MsgInfo('success')
> else
> MsgInfo('error '+str(oBlat:nLastError))
> endif
> oBlat:Free()
>
> Note that I use constructor Create instead New.
> Blat.dll must be placed in your .exe directory, or some system directory
> (fe: C:WINDOWS).
> Maybe you also have some problem with Internet connection. Maybe your SMTP
> server requires authentification.
>
> Regards, Oleg
>
Blat Mail GPF
Nick,
> I have copied your code line for line now, except I commented out the
> username , password and lAuth as we have ms exchange internally and don't
> need to validate
>
> I now get this error
>
> 2: File (message text) does not exist
>
> I also get this in the console window which I need to get rid of
> somehow?
>
> Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
>
I also get this error (code 2) if I disable SMTP authentification in my
code.
But my SMTP server really need SMTP authentification and I have no server
without authentification.
Maybe Xailer passes invalid parameters strings in this case (when no
authentification required).
But I can not see any console window. It is really strange. I have WinXP
SP2. Maybe you have other OS.
Regards, Oleg.
> I have copied your code line for line now, except I commented out the
> username , password and lAuth as we have ms exchange internally and don't
> need to validate
>
> I now get this error
>
> 2: File (message text) does not exist
>
> I also get this in the console window which I need to get rid of
> somehow?
>
> Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
>
I also get this error (code 2) if I disable SMTP authentification in my
code.
But my SMTP server really need SMTP authentification and I have no server
without authentification.
Maybe Xailer passes invalid parameters strings in this case (when no
authentification required).
But I can not see any console window. It is really strange. I have WinXP
SP2. Maybe you have other OS.
Regards, Oleg.
Blat Mail GPF
Nick,
> I have copied your code line for line now, except I commented out the
> username , password and lAuth as we have ms exchange internally and don't
> need to validate
>
> I now get this error
>
> 2: File (message text) does not exist
>
> I also get this in the console window which I need to get rid of
> somehow?
>
> Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
>
I also get this error (code 2) if I disable SMTP authentification in my
code.
But my SMTP server really need SMTP authentification and I have no server
without authentification.
Maybe Xailer passes invalid parameters strings in this case (when no
authentification required).
But I can not see any console window. It is really strange. I have WinXP
SP2. Maybe you have other OS.
Regards, Oleg.
> I have copied your code line for line now, except I commented out the
> username , password and lAuth as we have ms exchange internally and don't
> need to validate
>
> I now get this error
>
> 2: File (message text) does not exist
>
> I also get this in the console window which I need to get rid of
> somehow?
>
> Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:35)
>
I also get this error (code 2) if I disable SMTP authentification in my
code.
But my SMTP server really need SMTP authentification and I have no server
without authentification.
Maybe Xailer passes invalid parameters strings in this case (when no
authentification required).
But I can not see any console window. It is really strange. I have WinXP
SP2. Maybe you have other OS.
Regards, Oleg.
Blat Mail GPF
Nick,
maybe this will help (info from BLAT faq at www.blat.net)
--------------------------
I work in an MS Exchange environment, what do I use for the SMTP server?
Most MS Exchange systems likely have an SMTP service, you should check with
your eMail administrator to find out what it is.
You do not want the domainmachine syntax here, but rather a DNS syntax
(smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
ping to that name or address.
------------------------------------------------------------ --------------------
How do I verify the SMTP server is working correctly?
You can verify the SMTP service is working with the telnet command.
From a command prompt run:
telnet SMTP.Server.or.IP.Address.com 25The server should respond with
a 220 message if it is working correctly (type QUIT to end, you should get a
221 message).
,----- [ UC = You type, LC= SMTP Service response ]
| C:>TELNET SMTP.MYDOMAIN.COM 25
| 220 mydomain.com ESMTP
| QUIT
| 221 mydomain.com
|
| Connection to host lost.
`---------------------------Regards, Oleg
maybe this will help (info from BLAT faq at www.blat.net)
--------------------------
I work in an MS Exchange environment, what do I use for the SMTP server?
Most MS Exchange systems likely have an SMTP service, you should check with
your eMail administrator to find out what it is.
You do not want the domainmachine syntax here, but rather a DNS syntax
(smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
ping to that name or address.
------------------------------------------------------------ --------------------
How do I verify the SMTP server is working correctly?
You can verify the SMTP service is working with the telnet command.
From a command prompt run:
telnet SMTP.Server.or.IP.Address.com 25The server should respond with
a 220 message if it is working correctly (type QUIT to end, you should get a
221 message).
,----- [ UC = You type, LC= SMTP Service response ]
| C:>TELNET SMTP.MYDOMAIN.COM 25
| 220 mydomain.com ESMTP
| QUIT
| 221 mydomain.com
|
| Connection to host lost.
`---------------------------Regards, Oleg
Blat Mail GPF
Nick,
maybe this will help (info from BLAT faq at www.blat.net)
--------------------------
I work in an MS Exchange environment, what do I use for the SMTP server?
Most MS Exchange systems likely have an SMTP service, you should check with
your eMail administrator to find out what it is.
You do not want the domainmachine syntax here, but rather a DNS syntax
(smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
ping to that name or address.
------------------------------------------------------------ --------------------
How do I verify the SMTP server is working correctly?
You can verify the SMTP service is working with the telnet command.
From a command prompt run:
telnet SMTP.Server.or.IP.Address.com 25The server should respond with
a 220 message if it is working correctly (type QUIT to end, you should get a
221 message).
,----- [ UC = You type, LC= SMTP Service response ]
| C:>TELNET SMTP.MYDOMAIN.COM 25
| 220 mydomain.com ESMTP
| QUIT
| 221 mydomain.com
|
| Connection to host lost.
`---------------------------Regards, Oleg
maybe this will help (info from BLAT faq at www.blat.net)
--------------------------
I work in an MS Exchange environment, what do I use for the SMTP server?
Most MS Exchange systems likely have an SMTP service, you should check with
your eMail administrator to find out what it is.
You do not want the domainmachine syntax here, but rather a DNS syntax
(smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
ping to that name or address.
------------------------------------------------------------ --------------------
How do I verify the SMTP server is working correctly?
You can verify the SMTP service is working with the telnet command.
From a command prompt run:
telnet SMTP.Server.or.IP.Address.com 25The server should respond with
a 220 message if it is working correctly (type QUIT to end, you should get a
221 message).
,----- [ UC = You type, LC= SMTP Service response ]
| C:>TELNET SMTP.MYDOMAIN.COM 25
| 220 mydomain.com ESMTP
| QUIT
| 221 mydomain.com
|
| Connection to host lost.
`---------------------------Regards, Oleg
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Blat Mail GPF
Hi Oleg
My Xailer app is a console app running on Windows, hence why I get the
console output.
I have now tried with and without lAuth etc being commented.
SO far I have seen error 1 and 2 , mostly 2.
I have a fairly good understanding of SMTP, Exchange, Telneting into the
SMTP server etc. I know all this is working.
Something is screwed in this BLAT stuff.
Thanks for all your help.
Not sure what to do now...
Xailer gents, does this blat thing work for you guys?
From what I can tell Xharbours TIP is not in your xharbour distrubution so I
can't use it right?
I have used it in the past successfully.
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
> maybe this will help (info from BLAT faq at www.blat.net)
>
> --------------------------
> I work in an MS Exchange environment, what do I use for the SMTP server?
> Most MS Exchange systems likely have an SMTP service, you should check
> with your eMail administrator to find out what it is.
>
> You do not want the domainmachine syntax here, but rather a DNS syntax
> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
> ping to that name or address.
>
>
>
> ------------------------------------------------------------ --------------------
>
> How do I verify the SMTP server is working correctly?
> You can verify the SMTP service is working with the telnet command.
>
> From a command prompt run:
>
> telnet SMTP.Server.or.IP.Address.com 25The server should respond with
> a 220 message if it is working correctly (type QUIT to end, you should get
> a 221 message).
>
> ,----- [ UC = You type, LC= SMTP Service response ]
> | C:>TELNET SMTP.MYDOMAIN.COM 25
> | 220 mydomain.com ESMTP
> | QUIT
> | 221 mydomain.com
> |
> | Connection to host lost.
> `---------------------------Regards, Oleg
>
My Xailer app is a console app running on Windows, hence why I get the
console output.
I have now tried with and without lAuth etc being commented.
SO far I have seen error 1 and 2 , mostly 2.
I have a fairly good understanding of SMTP, Exchange, Telneting into the
SMTP server etc. I know all this is working.
Something is screwed in this BLAT stuff.
Thanks for all your help.
Not sure what to do now...
Xailer gents, does this blat thing work for you guys?
From what I can tell Xharbours TIP is not in your xharbour distrubution so I
can't use it right?
I have used it in the past successfully.
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
> maybe this will help (info from BLAT faq at www.blat.net)
>
> --------------------------
> I work in an MS Exchange environment, what do I use for the SMTP server?
> Most MS Exchange systems likely have an SMTP service, you should check
> with your eMail administrator to find out what it is.
>
> You do not want the domainmachine syntax here, but rather a DNS syntax
> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
> ping to that name or address.
>
>
>
> ------------------------------------------------------------ --------------------
>
> How do I verify the SMTP server is working correctly?
> You can verify the SMTP service is working with the telnet command.
>
> From a command prompt run:
>
> telnet SMTP.Server.or.IP.Address.com 25The server should respond with
> a 220 message if it is working correctly (type QUIT to end, you should get
> a 221 message).
>
> ,----- [ UC = You type, LC= SMTP Service response ]
> | C:>TELNET SMTP.MYDOMAIN.COM 25
> | 220 mydomain.com ESMTP
> | QUIT
> | 221 mydomain.com
> |
> | Connection to host lost.
> `---------------------------Regards, Oleg
>
-
- Mensajes: 328
- Registrado: Mar Nov 21, 2006 2:10 am
Blat Mail GPF
Hi Oleg
My Xailer app is a console app running on Windows, hence why I get the
console output.
I have now tried with and without lAuth etc being commented.
SO far I have seen error 1 and 2 , mostly 2.
I have a fairly good understanding of SMTP, Exchange, Telneting into the
SMTP server etc. I know all this is working.
Something is screwed in this BLAT stuff.
Thanks for all your help.
Not sure what to do now...
Xailer gents, does this blat thing work for you guys?
From what I can tell Xharbours TIP is not in your xharbour distrubution so I
can't use it right?
I have used it in the past successfully.
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
> maybe this will help (info from BLAT faq at www.blat.net)
>
> --------------------------
> I work in an MS Exchange environment, what do I use for the SMTP server?
> Most MS Exchange systems likely have an SMTP service, you should check
> with your eMail administrator to find out what it is.
>
> You do not want the domainmachine syntax here, but rather a DNS syntax
> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
> ping to that name or address.
>
>
>
> ------------------------------------------------------------ --------------------
>
> How do I verify the SMTP server is working correctly?
> You can verify the SMTP service is working with the telnet command.
>
> From a command prompt run:
>
> telnet SMTP.Server.or.IP.Address.com 25The server should respond with
> a 220 message if it is working correctly (type QUIT to end, you should get
> a 221 message).
>
> ,----- [ UC = You type, LC= SMTP Service response ]
> | C:>TELNET SMTP.MYDOMAIN.COM 25
> | 220 mydomain.com ESMTP
> | QUIT
> | 221 mydomain.com
> |
> | Connection to host lost.
> `---------------------------Regards, Oleg
>
My Xailer app is a console app running on Windows, hence why I get the
console output.
I have now tried with and without lAuth etc being commented.
SO far I have seen error 1 and 2 , mostly 2.
I have a fairly good understanding of SMTP, Exchange, Telneting into the
SMTP server etc. I know all this is working.
Something is screwed in this BLAT stuff.
Thanks for all your help.
Not sure what to do now...
Xailer gents, does this blat thing work for you guys?
From what I can tell Xharbours TIP is not in your xharbour distrubution so I
can't use it right?
I have used it in the past successfully.
Nick
"Oleg" <info@cluster.samara.ru> wrote in message
news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
> Nick,
>
> maybe this will help (info from BLAT faq at www.blat.net)
>
> --------------------------
> I work in an MS Exchange environment, what do I use for the SMTP server?
> Most MS Exchange systems likely have an SMTP service, you should check
> with your eMail administrator to find out what it is.
>
> You do not want the domainmachine syntax here, but rather a DNS syntax
> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
> ping to that name or address.
>
>
>
> ------------------------------------------------------------ --------------------
>
> How do I verify the SMTP server is working correctly?
> You can verify the SMTP service is working with the telnet command.
>
> From a command prompt run:
>
> telnet SMTP.Server.or.IP.Address.com 25The server should respond with
> a 220 message if it is working correctly (type QUIT to end, you should get
> a 221 message).
>
> ,----- [ UC = You type, LC= SMTP Service response ]
> | C:>TELNET SMTP.MYDOMAIN.COM 25
> | 220 mydomain.com ESMTP
> | QUIT
> | 221 mydomain.com
> |
> | Connection to host lost.
> `---------------------------Regards, Oleg
>
- ignacio
- Site Admin
- Mensajes: 9469
- Registrado: Lun Abr 06, 2015 8:00 pm
- Ubicación: Madrid, Spain
- Contactar:
Blat Mail GPF
Nick,
Blat is working great here. Please try with the files from the following
link:
http://www.xailer.com/files/Varios/blat.rar
Regards,
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Nick Hilder" <nick_n0_spam_atcapsol.com.au> escribió en el mensaje
news:[email=487e979a@ozsrv2.ozlan.local...]487e979a@ozsrv2.ozlan.local...[/email]
> Hi Oleg
>
> My Xailer app is a console app running on Windows, hence why I get the
> console output.
>
> I have now tried with and without lAuth etc being commented.
>
> SO far I have seen error 1 and 2 , mostly 2.
>
> I have a fairly good understanding of SMTP, Exchange, Telneting into the
> SMTP server etc. I know all this is working.
>
> Something is screwed in this BLAT stuff.
>
> Thanks for all your help.
>
> Not sure what to do now...
>
> Xailer gents, does this blat thing work for you guys?
>
> From what I can tell Xharbours TIP is not in your xharbour distrubution so
> I can't use it right?
>
> I have used it in the past successfully.
>
>
> Nick
>
>
>
>
> "Oleg" <info@cluster.samara.ru> wrote in message
> news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Nick,
>>
>> maybe this will help (info from BLAT faq at www.blat.net)
>>
>> --------------------------
>> I work in an MS Exchange environment, what do I use for the SMTP server?
>> Most MS Exchange systems likely have an SMTP service, you should check
>> with your eMail administrator to find out what it is.
>>
>> You do not want the domainmachine syntax here, but rather a DNS syntax
>> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
>> ping to that name or address.
>>
>>
>>
>> ------------------------------------------------------------ --------------------
>>
>> How do I verify the SMTP server is working correctly?
>> You can verify the SMTP service is working with the telnet command.
>>
>> From a command prompt run:
>>
>> telnet SMTP.Server.or.IP.Address.com 25The server should respond
>> with a 220 message if it is working correctly (type QUIT to end, you
>> should get a 221 message).
>>
>> ,----- [ UC = You type, LC= SMTP Service response ]
>> | C:>TELNET SMTP.MYDOMAIN.COM 25
>> | 220 mydomain.com ESMTP
>> | QUIT
>> | 221 mydomain.com
>> |
>> | Connection to host lost.
>> `---------------------------Regards, Oleg
>>
>
>
Blat is working great here. Please try with the files from the following
link:
http://www.xailer.com/files/Varios/blat.rar
Regards,
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Nick Hilder" <nick_n0_spam_atcapsol.com.au> escribió en el mensaje
news:[email=487e979a@ozsrv2.ozlan.local...]487e979a@ozsrv2.ozlan.local...[/email]
> Hi Oleg
>
> My Xailer app is a console app running on Windows, hence why I get the
> console output.
>
> I have now tried with and without lAuth etc being commented.
>
> SO far I have seen error 1 and 2 , mostly 2.
>
> I have a fairly good understanding of SMTP, Exchange, Telneting into the
> SMTP server etc. I know all this is working.
>
> Something is screwed in this BLAT stuff.
>
> Thanks for all your help.
>
> Not sure what to do now...
>
> Xailer gents, does this blat thing work for you guys?
>
> From what I can tell Xharbours TIP is not in your xharbour distrubution so
> I can't use it right?
>
> I have used it in the past successfully.
>
>
> Nick
>
>
>
>
> "Oleg" <info@cluster.samara.ru> wrote in message
> news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Nick,
>>
>> maybe this will help (info from BLAT faq at www.blat.net)
>>
>> --------------------------
>> I work in an MS Exchange environment, what do I use for the SMTP server?
>> Most MS Exchange systems likely have an SMTP service, you should check
>> with your eMail administrator to find out what it is.
>>
>> You do not want the domainmachine syntax here, but rather a DNS syntax
>> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
>> ping to that name or address.
>>
>>
>>
>> ------------------------------------------------------------ --------------------
>>
>> How do I verify the SMTP server is working correctly?
>> You can verify the SMTP service is working with the telnet command.
>>
>> From a command prompt run:
>>
>> telnet SMTP.Server.or.IP.Address.com 25The server should respond
>> with a 220 message if it is working correctly (type QUIT to end, you
>> should get a 221 message).
>>
>> ,----- [ UC = You type, LC= SMTP Service response ]
>> | C:>TELNET SMTP.MYDOMAIN.COM 25
>> | 220 mydomain.com ESMTP
>> | QUIT
>> | 221 mydomain.com
>> |
>> | Connection to host lost.
>> `---------------------------Regards, Oleg
>>
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Blat Mail GPF
Nick,
Blat is working great here. Please try with the files from the following
link:
http://www.xailer.com/files/Varios/blat.rar
Regards,
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Nick Hilder" <nick_n0_spam_atcapsol.com.au> escribió en el mensaje
news:[email=487e979a@ozsrv2.ozlan.local...]487e979a@ozsrv2.ozlan.local...[/email]
> Hi Oleg
>
> My Xailer app is a console app running on Windows, hence why I get the
> console output.
>
> I have now tried with and without lAuth etc being commented.
>
> SO far I have seen error 1 and 2 , mostly 2.
>
> I have a fairly good understanding of SMTP, Exchange, Telneting into the
> SMTP server etc. I know all this is working.
>
> Something is screwed in this BLAT stuff.
>
> Thanks for all your help.
>
> Not sure what to do now...
>
> Xailer gents, does this blat thing work for you guys?
>
> From what I can tell Xharbours TIP is not in your xharbour distrubution so
> I can't use it right?
>
> I have used it in the past successfully.
>
>
> Nick
>
>
>
>
> "Oleg" <info@cluster.samara.ru> wrote in message
> news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Nick,
>>
>> maybe this will help (info from BLAT faq at www.blat.net)
>>
>> --------------------------
>> I work in an MS Exchange environment, what do I use for the SMTP server?
>> Most MS Exchange systems likely have an SMTP service, you should check
>> with your eMail administrator to find out what it is.
>>
>> You do not want the domainmachine syntax here, but rather a DNS syntax
>> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
>> ping to that name or address.
>>
>>
>>
>> ------------------------------------------------------------ --------------------
>>
>> How do I verify the SMTP server is working correctly?
>> You can verify the SMTP service is working with the telnet command.
>>
>> From a command prompt run:
>>
>> telnet SMTP.Server.or.IP.Address.com 25The server should respond
>> with a 220 message if it is working correctly (type QUIT to end, you
>> should get a 221 message).
>>
>> ,----- [ UC = You type, LC= SMTP Service response ]
>> | C:>TELNET SMTP.MYDOMAIN.COM 25
>> | 220 mydomain.com ESMTP
>> | QUIT
>> | 221 mydomain.com
>> |
>> | Connection to host lost.
>> `---------------------------Regards, Oleg
>>
>
>
Blat is working great here. Please try with the files from the following
link:
http://www.xailer.com/files/Varios/blat.rar
Regards,
--
Ignacio Ortiz de Zúñiga
[Soporte Xailer]
[Xailer support]
"Nick Hilder" <nick_n0_spam_atcapsol.com.au> escribió en el mensaje
news:[email=487e979a@ozsrv2.ozlan.local...]487e979a@ozsrv2.ozlan.local...[/email]
> Hi Oleg
>
> My Xailer app is a console app running on Windows, hence why I get the
> console output.
>
> I have now tried with and without lAuth etc being commented.
>
> SO far I have seen error 1 and 2 , mostly 2.
>
> I have a fairly good understanding of SMTP, Exchange, Telneting into the
> SMTP server etc. I know all this is working.
>
> Something is screwed in this BLAT stuff.
>
> Thanks for all your help.
>
> Not sure what to do now...
>
> Xailer gents, does this blat thing work for you guys?
>
> From what I can tell Xharbours TIP is not in your xharbour distrubution so
> I can't use it right?
>
> I have used it in the past successfully.
>
>
> Nick
>
>
>
>
> "Oleg" <info@cluster.samara.ru> wrote in message
> news:487d96e3$[email=1@ozsrv2.ozlan.local...]1@ozsrv2.ozlan.local...[/email]
>> Nick,
>>
>> maybe this will help (info from BLAT faq at www.blat.net)
>>
>> --------------------------
>> I work in an MS Exchange environment, what do I use for the SMTP server?
>> Most MS Exchange systems likely have an SMTP service, you should check
>> with your eMail administrator to find out what it is.
>>
>> You do not want the domainmachine syntax here, but rather a DNS syntax
>> (smtp.MyDomain.com or whatever) or TCP/IP Address. You should be able to
>> ping to that name or address.
>>
>>
>>
>> ------------------------------------------------------------ --------------------
>>
>> How do I verify the SMTP server is working correctly?
>> You can verify the SMTP service is working with the telnet command.
>>
>> From a command prompt run:
>>
>> telnet SMTP.Server.or.IP.Address.com 25The server should respond
>> with a 220 message if it is working correctly (type QUIT to end, you
>> should get a 221 message).
>>
>> ,----- [ UC = You type, LC= SMTP Service response ]
>> | C:>TELNET SMTP.MYDOMAIN.COM 25
>> | 220 mydomain.com ESMTP
>> | QUIT
>> | 221 mydomain.com
>> |
>> | Connection to host lost.
>> `---------------------------Regards, Oleg
>>
>
>