I will release new versions for PB4.30 final only, as previous PB versions have shown that libs may be broken from one beta to another.
And only x86 libs, as I don't have a 64bits OS.
Thanks.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
gnozal wrote:I will release new versions for PB4.30 final only, as previous PB versions have shown that libs may be broken from one beta to another.
And only x86 libs, as I don't have a 64bits OS.
Thanks.
trying to let the connection to the smtp-server open
leads to a message after
if connecting to a smtp-server with auth (user,password)
the connection is terminated (or something) after sending 4
mails with the errormessage
'421 auth.mail.onlinehome.de too many errors'
when the connection isn't opened and closed after each mail.
AND the prog needs too much systemresources when trying to send
with this error. a little delay while waiting for the serverresponse
may help ¿?
bobobo wrote:trying to let the connection to the smtp-server open
leads to a message after
if connecting to a smtp-server with auth (user,password)
the connection is terminated (or something) after sending 4
mails with the errormessage
'421 auth.mail.onlinehome.de too many errors'
when the connection isn't opened and closed after each mail.
Hum, I just sent 20 messages in a for/next loop to my SMTP server with auth (and without closing the connection each time) : no problem here.
1. Do you have any server error message before the 421 ?
2. Did you try with a delay between two PureSMTP_SendMail() calls ?
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
error 421 after 4 or 5 Messages
and no other errors before that
maybe it depends on the smpt-server .. the used smtp-server seems to
be a mail-relay-cluster and it's configuration may recognize some kind
of mailflooding in a rigid way.
i tested with an other smtp-server and there is no probs with sending much more than 1 mail with an opened connection
2.
a delay (tested with 500msec and 1000msec and even 5000msec)
does help a little bit but when the smpt-server delays in serving answers
the systemresources of the program rise up to 100% (50% with double-
processor) (unfortunately best tested with the mail-relay-cluster from
above which serves errors)
also while sending a bit bigger mails the sys-res rises remarkable
the 'mailfrom' is in brackets (f.i. <hans@wurst.de>)
one of my 'mail-buddies' can't read those mailfroms because of this brackets.
ok ok .. i know smtp-protocoll says that it is ok with brackets ,but it will
help me (and propably others) if the brackets could be optinal suppressed.
bobobo wrote:ok ok .. i know smtp-protocoll says that it is ok with brackets ,but it will help me (and propably others) if the brackets could be optinal suppressed.
Like you said, it's the SMTP protocol.
RFC2821 wrote: MAIL FROM:<reverse-path> [SP <mail-parameters> ] <CRLF>
This command tells the SMTP-receiver that a new mail transaction is
starting and to reset all its state tables and buffers, including any
recipients or mail data. The <reverse-path> portion of the first or
only argument contains the source mailbox (between "<" and ">"
brackets), ...
So I won't change this, sorry.
I (respectfully) suggest that your buddy changes his (buggy ?) mail client.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
When I try to send a mail from my computer at home (Athlon 64 X2 5600+ CPU, 24Mbps connection) all the messages are sent normally. When I try to send from my computer at work (Pentium 4 1,7GHz CPU, 2Mbps connection) the program cannot connect with smtp server. Why?