Re: [twsocket] ...SMTPClient

2013-01-29 Thread Angus Robertson - Magenta Systems Ltd
> In addition to my other message, it is so much faster to send > multiple recipients in the To rather then sending them individually. It may be faster, but if your emails are deleted as spam due to 'undisclosed recipients', why send the email in the first place. Angus -- To unsubscribe or cha

Re: [twsocket] ...SMTPClient

2013-01-29 Thread Raymond Kennington
Hello Angus. In addition to my other message, it is so much faster to send multiple recipients in the To rather then sending them individually. Raymond -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visi

Re: [twsocket] ...SMTPClient

2013-01-28 Thread Raymond Kennington
Hello Arno. Thanks for all this information. I will have to investigate this with my ISP. My use would be with my (hoped-for) customers. I'm planning ahead, as I don't want to have to change the code once I place my product the market. It's definitely not spam, and customers choose whether to

Re: [twsocket] ...SMTPClient

2013-01-27 Thread Angus Robertson - Magenta Systems Ltd
> I need to add up to 200,000 names to the ToList, which could be > about 4,000,000 characters. > Can T...SMTPCli handle this quantity? Most ISPs have blocks on their SMTP relay servers to prevent mass mailing by spammers, typically a few hundred or thousand messages a day, after which your accou

Re: [twsocket] ...SMTPClient

2013-01-27 Thread Raymond Kennington
Hello Arno. Thanks for mentioning RcptNameAdd(...). It's parameters are strings. I need to add up to 200,000 names to the ToList, which could be about 4,000,000 characters. As each email address is added to the list, the memory handling might make this become very slow. Can T...SMTPCli handl

Re: [twsocket] ...SMTPClient

2013-01-26 Thread Arno Garrels
Raymond Kennington wrote: > Hello. > > One of my developed has been using this component to send messages > for 13 years. > No problems! Thanks!! > > Now I am incorporating the code into another project, and I would > rather use Bcc instead of cc - because I don't want the receiver to > know who

[twsocket] ...SMTPClient

2013-01-26 Thread Raymond Kennington
Hello. One of my developed has been using this component to send messages for 13 years. No problems! Thanks!! Now I am incorporating the code into another project, and I would rather use Bcc instead of cc - because I don't want the receiver to know who else the message is being sent to. Is Bl

Re: [twsocket] smtpclient inuse with gmail

2010-02-04 Thread Arno Garrels
Darren Doggett wrote: > 530 5.7.0 Must issue a STARTTLS command first. 13sm630074ewy.13 > < 530 5.7.0 Must issue a STARTTLS command first. 13sm630074ewy.13 > > Using my limted knowledge is the problem that the smtpclient > component is not sending the command > STARTLLS, if this is the case the

[twsocket] smtpclient inuse with gmail

2010-02-04 Thread Darren Doggett
Hi, I’m new to all this, and was looking for some help/advise with regards to smtpclient. Using the OverbyteIcsMailSnd as a demo app I can’t seem to send emails to gmail. Here is the error log as provided in the demo app Connecting to SMTP server... 220 mx.google.com ESMTP 13sm630074ewy

Re: [twsocket] [SmtpClient] Progress bar ?

2009-01-14 Thread Arno Garrels
Arno Garrels wrote: > However CalculatedMessageSize will have to compose the message > including Base64 encoding of all file attachments in advance which > takes some time (with a 12 MB file attachment it takes approximately > 4 seconds on my computer). Forgot to mention, that the message size co

Re: [twsocket] [SmtpClient] Progress bar ?

2009-01-14 Thread Arno Garrels
Jean-Paul Passama wrote: > Has someone any idea to get a progress bar to visualize the sending > progression, as Thunderbird does, while sending a message (with heavy > attachment) ? Since the TSmtpCli encodes all message parts on the fly you cannot know the message size in advance which makes i

[twsocket] [SmtpClient] Progress bar ?

2009-01-14 Thread Jean-Paul Passama
Hi, Has someone any idea to get a progress bar to visualize the sending progression, as Thunderbird does, while sending a message (with heavy attachment) ? Thank you JP Passama -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mail

[twsocket] SmtpClient and aborting connection

2007-05-14 Thread Markus Humm
Hello, I finally got it working now by using (and somewhat enhancing) that thread approach. I've left out the cancelling on long lasting connection attempts right now, maybe I add it later and I think I might want to do it on shutdown as well. Greetings Markus -- To unsubscribe or change yo

[twsocket] SmtpClient and aborting connection

2007-05-12 Thread Markus Humm
Hello, I#ve a new idea and would like some expert opinions about it before wasting time on it: what if I put the e-mail sending in a seperate thread where the SmptCLient is bound to the thread (execute)? So it would have its own message loop which hopefully wouldn't interfere with the rest of

[twsocket] SmtpClient and aborting connection

2007-05-11 Thread Markus Humm
Hello, my COM server goes havoc when the e-mail has been sent. If the client calls some simple functions which normally would only read something from the database and return the value they fail instead. Functions which aren't really interdependant or so. I'm wondering now why. It also happens

[twsocket] SmtpClient and aborting connection

2007-05-10 Thread Markus Humm
Hello, Wilfried suggested today that I should use a timer. Basically a good idea, but how to do? The com-server's function should send the mail and either return sort of true if successfull or false if not (it actually would return the mail server's address or a empty string if not successfull

[twsocket] SmtpClient and aborting connection

2007-05-10 Thread Markus Humm
Hello, I've still or even worse trouble with this e-mail sending. maybe I should explain it more in detail what my environment is and what I want to do. Okay I have this: COM Client -> COM-Server -> ICS SmtpClient | Other application connected via TWSocket (TCP)

Re: [twsocket] SmtpClient and aborting connection

2007-05-10 Thread Wilfried Mestdagh
Hello Markus, You dont have to loop. Just set a Timer and Connect, that's all. You can disable the Timer in OnSessionConnected. If timer expires just call Abort. When OnSessionClosed is called set a flag. When OnRequestDone is called and session is closed start your next connection (depending on s

Re: [twsocket] SmtpClient and aborting connection

2007-05-09 Thread Angus Robertson - Magenta Systems Ltd
> The problem is now that I like to cancel the connect if it takes > too long. Essentially, you have no control over how long connect takes to time out. There are registry settings relating to TCP attempts and retry delays, but messing with them is dangerous and unpredictable, and effects all Win

[twsocket] SmtpClient and aborting connection

2007-05-09 Thread Markus Humm
Hello, I'm using your SmtpClient component for sending e-mails. I'm trying to built in a failover in my application so that if the first configured mail server can't be reached a second etc. will be tried. The problem is now that I like to cancel the connect if it takes too long. timeout:=ti

Re: [twsocket] SmtpClient problem on disconnect

2006-11-18 Thread David A. G.
IETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, November 18, 2006 10:11 AM Subject: Re: [twsocket] SmtpClient problem on disconnect >> Thanks for all, I understand. Today I have tryed with a simple TCP client >> emulating the SMTP protocol ma

Re: [twsocket] SmtpClient problem on disconnect

2006-11-18 Thread Francois PIETTE
> Thanks for all, I understand. Today I have tryed with a simple TCP client > emulating the SMTP protocol manually, and ALL works good, the server is > closing the connection. But again using the SmtpCli.pas component the > connection is not closed or OnRequestDone is not fired (this only happens >

Re: [twsocket] SmtpClient problem on disconnect

2006-11-18 Thread David A. G.
using EHLO with AUTH LOGIN). Well I will keep trying... thanks, David - Original Message - From: "Francois Piette" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, November 17, 2006 11:00 AM Subject: Re: [twsocket] SmtpClient problem on disconn

Re: [twsocket] SmtpClient problem on disconnect

2006-11-17 Thread [EMAIL PROTECTED]
> We've been talking this topic many times. > The RFCs say that the server has to close the connection, so if > a server doesn't close the connection on receiving command QUIT > the server is buggy. You can handle those server-side bugs with a simple > command timeout, in real applications some a

Re: [twsocket] SmtpClient problem on disconnect

2006-11-17 Thread Francois Piette
ember 17, 2006 12:05 AM Subject: [twsocket] SmtpClient problem on disconnect > Hello all: > > I'm having problems SmtpCli where OnRequestDone function is not fired after > sending QUIT command because the SMTP server is not closing the > connection!!. It occurs only when using EHLO co

Re: [twsocket] SmtpClient problem on disconnect

2006-11-17 Thread Arno Garrels
David A. G. wrote: > Hello all: > > I'm having problems SmtpCli where OnRequestDone function is not fired > after sending QUIT command because the SMTP server is not closing the > connection!!. We've been talking this topic many times. The RFCs say that the server has to close the connection, so

[twsocket] SmtpClient problem on disconnect

2006-11-17 Thread David A. G.
Hello all: I'm having problems SmtpCli where OnRequestDone function is not fired after sending QUIT command because the SMTP server is not closing the connection!!. It occurs only when using EHLO command and AUTH LOGIN authentication. I have tryed with 2 servers with same results (big linux se

Re: [twsocket] SMTPClient

2006-09-08 Thread Francois Piette
Sent: Friday, September 08, 2006 9:40 AM Subject: Re: [twsocket] SMTPClient > lalin wrote: > > The error number is always 550. In IIS, it appears a connection but it > > doesn't send anything. > > Means 550 Relaying denied > > You probably need to authen

Re: [twsocket] SMTPClient

2006-09-08 Thread lalin
Ok, Thanks. - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, September 08, 2006 9:40 AM Subject: Re: [twsocket] SMTPClient > lalin wrote: > > The error number is always 550. In IIS, it appears a

Re: [twsocket] SMTPClient

2006-09-08 Thread Arno Garrels
byte.be/eng/overbyte/teamics.html > Regards. > > - Original Message - > From: "Francois PIETTE" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Thursday, September 07, 2006 8:07 PM > Subject: Re: [twsocket] SMTPClient > >

Re: [twsocket] SMTPClient

2006-09-07 Thread lalin
The error number is always 550. In IIS, it appears a connection but it doesn't send anything. Regards. - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, September 07, 2006 8:07 PM Subject: Re: [twso

Re: [twsocket] SMTPClient

2006-09-07 Thread Francois PIETTE
CTED] http://www.overbyte.be - Original Message - From: "lalin" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, September 07, 2006 4:46 PM Subject: Re: [twsocket] SMTPClient > Hello, >No, I hadn't seen your answer. Thanks for response once.

Re: [twsocket] SMTPClient

2006-09-07 Thread lalin
Rq=5 Quit! RequestDone Rq=6 Done! But the mail isn't received. I have tested the smtp server 127.0.0.1 and the domain in IIS console. What can it be? Regards. - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing"

Re: [twsocket] SMTPClient

2006-09-06 Thread Francois PIETTE
riginal Message - From: "lalin" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, September 06, 2006 4:50 PM Subject: [twsocket] SMTPClient > Hello, > I use SMTPClient for sending a email since a server with default smtp > server of IIS. Th

[twsocket] SMTPClient

2006-09-06 Thread lalin
Hello, I use SMTPClient for sending a email since a server with default smtp server of IIS. The example program find this smtp server. But in my program, with this code: Smtp1.Host := smtpserver; Smtp1.port := 'smtp'; Smtp1.FromName := name; Smtp1.HdrFrom := mail1; Smtp

Re: [twsocket] SMTPClient

2006-09-01 Thread Francois Piette
- Original Message - From: "lalin" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, September 01, 2006 12:08 PM Subject: Re: [twsocket] SMTPClient > Hi Bevan > Thanks for your response. I have corrected that but continues giving error. > The

Re: [twsocket] SMTPClient

2006-09-01 Thread lalin
nd it is the same. Can you help me? Regards. Carlos. - Original Message - From: "Bevan Edwards" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, August 31, 2006 4:13 PM Subject: Re: [twsocket] SMTPClient > Hi Carlos, > > Is the "Smtp

Re: [twsocket] SMTPClient

2006-08-31 Thread Marcello Vezzelli
lalin ha scritto: > Hello, > I use SMTPClient for sending a email since a server with default smtp > server of IIS. The example program find this smtp server. But in my program, > with this code: > Smtp1.Host := smtpserver; > Smtp1.port := 'smpt'; > Smtp1.FromName := name; >

Re: [twsocket] SMTPClient

2006-08-31 Thread Bevan Edwards
Hi Carlos, Is the "Smtp1.port := 'smpt';" an error in your code or a typo? It should be "Smtp1.port := 'smtp';" Regards, Bevan lalin wrote: > Hello, > I use SMTPClient for sending a email since a server with default smtp > server of IIS. The example program find this smtp server. But

[twsocket] SMTPClient

2006-08-31 Thread lalin
Hello, I use SMTPClient for sending a email since a server with default smtp server of IIS. The example program find this smtp server. But in my program, with this code: Smtp1.Host := smtpserver; Smtp1.port := 'smpt'; Smtp1.FromName := name; Smtp1.HdrFrom := mail1; S

Re: [twsocket] SMTPClient

2006-08-28 Thread Arno Garrels
lalin wrote: > Hello, > I use SMTPClient for sending a email since a server with default > smtp server of IIS. The example program find this smtp server. But in > my program, with this code: Smtp1.Host := smtpserver; Smtp1.port > := 'smpt'; Smtp1.FromName := name; > Smtp1.HdrFrom := ma

[twsocket] SMTPClient

2006-08-28 Thread lalin
Hello, I use SMTPClient for sending a email since a server with default smtp server of IIS. The example program find this smtp server. But in my program, with this code: Smtp1.Host := smtpserver; Smtp1.port := 'smpt'; Smtp1.FromName := name; Smtp1.HdrFrom := mail1; Smtp1.HdrTo:

Re: [twsocket] smtpclient sharemode

2006-07-02 Thread Arno Garrels
Could you be more specific? > > Roland Couvela > > > Date: Fri, 23 Jun 2006 09:20:29 -0300 > From: "Marcelo Grossi" <[EMAIL PROTECTED]> > Subject: Re: [twsocket] smtpclient error > To: "ICS support mailing" > Message-ID: <[EMAIL PROTECTED

[twsocket] smtpclient sharemode

2006-07-02 Thread kaythorn
t; <[EMAIL PROTECTED]> Subject: Re: [twsocket] smtpclient error To: "ICS support mailing" Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Probably nothing. See the header on the SmtpClient for the cha

Re: [twsocket] smtpclient error

2006-06-23 Thread Marcelo Grossi
L PROTECTED]> To: Sent: Thursday, June 22, 2006 7:16 PM Subject: [twsocket] smtpclient error >I have been using the smtp component for some time, but need to update it >because I need the authentication feature so I downloaded the current ics >suite. > > On recompiling

[twsocket] smtpclient error

2006-06-22 Thread kaythorn
I have been using the smtp component for some time, but need to update it because I need the authentication feature so I downloaded the current ics suite. On recompiling my program I get an error message reading "SmptClient.ShareMode Property does not exist" What have I done wrong? Roland Couv