I feel absolutely stupid, and there doesn't appear to be a way to simply delete my post, but the solution to the problem was simple. In the Debug output, the problem part of my message looked like this:
Net::SMTP=GLOB(0x3d1148)>>> DATA Net::SMTP=GLOB(0x3d1148)<<< 354 Start mail input; end with <CRLF>.<CRL +F> Net::SMTP=GLOB(0x3d1148)>>> From: root@domain.dom Net::SMTP=GLOB(0x3d1148)>>> To: user@domain.dom

Looks fine, right?

Well, despite being sent in separate lines in the debug output, I neglected to put a "\n" after the address on both the From: and the To: lines, so it looked to the server like a bad From: address.

Changing this:
$smtp->datasend("From: $sender"); $smtp->datasend("To: $recipient");
to this:
$smtp->datasend("From: $sender\n"); $smtp->datasend("To: $recipient\n");

fixed the problem. I can't believe I missed that after debugging literally every other line of the script. I will now go back to the corner to resume biting myself. :(


In reply to Re: Net::SMTP send rejected, but telnet transaction works by xephonia
in thread Net::SMTP send rejected, but telnet transaction works by xephonia

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.