Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sendmail.pm - Send email ok but give server overload error

Status
Not open for further replies.
May 21, 2002
19
0
0
US
I have downloaded sendmail.pm ver 2.09 Everything seems to be configured properly but during a test I get a Server Overload error. I suspect it should give me a html verification page. Any Ideas?

 
Disregard my previous post I seem to be onto something, However now I'm get a response saying something like no recipient specified however a recipient is specified and it appears to be in the sendmail.pl instead of the sendmail.pm.
So I imagine that it has something to do with the format of recipient. I'll keep expermenting but if you have an idea let me know.
 
Ron,

The format of the recipient is as described below. I've extracted code that I am using that sends to a list of recipients retreived from a file. Hope this helps.

#
# We set the To Recipients.
#$sm->To(&quot;Recipient <recipientid\@recipient.mail.domain>&quot;);
#
open(SQLLog, &quot;< $SQLLog&quot;) or die &quot;can't open $SQLLog: $!&quot;;
while (<SQLLog>)
{
chomp;
if ( ( ! /W0009 / ) and ( $_ ne &quot;&quot; ) )
{
$sm->To(&quot;Recipient <$_>&quot;);
if ( $cmData{cmDebug} ne &quot;&quot; ) { print &quot;To <$_>\n&quot;; }
}
}
close (SQLLog);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top