Link to home
Start Free TrialLog in
Avatar of nicholassolutions
nicholassolutionsFlag for United States of America

asked on

changing the number of allowed connections

Hi there,

I have a web server that is set up to email me error notices of PHP errors via a script that makes an SMTP connection to localhost. This works fine, but the other day I inadvertently wrote a script with an error in a for loop that got thrown over and over, generating many email reports in a very short time. Some of them got through to my remote email, but the ones that happened in the later iterations of the loop never came. Checking the root email account, I found many delivery failure notices:

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=
From: Mail Delivery Subsystem <MAILER-DAEMON@mysite.com>
To: postmaster@mail.mysite.com
Subject: Postmaster notify: see transcript for details
Parts/Attachments:
   1     Shown     11 lines  Text
   2     Shown    405 bytes  Message, "Delivery Status"
   3     Shown    2.9 KB     Message, "Returned mail: see transcript for details"
   3.1   Shown     12 lines  Text
   3.2   Shown    405 bytes  Message, "Delivery Status"
   3.3   Shown      1 KB     Message, "mysite.com Error Report"
   3.3.1 Shown     10 lines  Text
----------------------------------------

The original message was received at Sun, 14 May 2006 22:54:55 -0400
from localhost
with id k4F2st6C015139

   ----- The following addresses had permanent fatal errors -----
me@myothersite.com
    (reason: 550 Too many SMTP connections from xx.xx.xx.xx!) <----my IP (not localhost or 127.0.01, if that matters)
    (expanded from: <errors@mysite.com>)

   ----- Transcript of session follows -----
554 5.0.0 Service unavailable

    [ Part 2: "Delivery Status" ]

Reporting-MTA: dns; mail.mysite.com
Received-From-MTA: DNS; localhost.localdomain
Arrival-Date: Sun, 14 May 2006 22:54:55 -0400

Final-Recipient: RFC822; errors@mysite.com
X-Actual-Recipient: RFC822; me@myothersite.com
Action: failed
Status: 5.5.0
Diagnostic-Code: SMTP; 550 Too many SMTP connections from xx.xx.xx.xx!    <----my IP (not localhost or 127.0.01, if that matters)
Last-Attempt-Date: Sun, 14 May 2006 22:54:55 -0400

[ Part 3.3: "Included Message" ]

<original error report email>
-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-

is there a way to increase the number of concurrent SMTP connections a particular user can make from localhost so that my error messages will get through? Especially as site traffic grows, I want to be sure I dont miss any. In addition, well need to send news letters out to members using the same base email software, so I need to be sure they don't get lost.

Thanks in advance for the help!
Avatar of nicholassolutions
nicholassolutions
Flag of United States of America image

ASKER

PS: If you need to see parts of my config files just ask. Sendmail is really not my area of expertise, so you'l' have to bear with me.
ASKER CERTIFIED SOLUTION
Avatar of arvind
arvind
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
stupidly, I've now realized that it was the receiving server that had limited the connections, and not my own. Thanks for pointing out this option though -- it taught me something and I found some other useful info while researching it further.