in reply to Mail::Internet memory leaks??

If Perl doesn't die or at least freeze, then perl is not running out of memory. perl will let you know well ahead of time when you are out of memory, overflow/ underflow exceptions and all of that other fun stuff that you learned in UNIX programming 101. Try the same script using a test case with output to the screen. perhaps a bug somewhere is hitting an infinite loop? In any case, you will want to view your message and compare that with what you expected. perldebug is certainly a worthwhile option. It is also quite possible that this error is serverside. If you encounter further problems that you decide you can't get around, an alternative would be to pipe the message straight to sendmail. But you sure be sure that what you have now can't be fixed before doing that.
AgentM Systems or Nasca Enterprises is not responsible for the comments made by AgentM- anywhere.

Replies are listed 'Best First'.
RE: Re: Mail::Internet memory leaks??
by Fastolfe (Vicar) on Oct 11, 2000 at 21:29 UTC
    His code/output is consistent with a Perl script consuming all available memory under Unix. I've done it before. ("Oops.")