ahem, poj called it when he said

# equivalent Mail:Sendmail code open S,'>','socket' or die; my $oldfh = select(S); $| = 1; select($oldfh); close S;
I saw it too when i looked at the SendMail code, he even used the same global filename and varlable that they did.

notice he says

# select(STDOUT); # uncomment to fix
Did you try that?

And notice he credits choroba for mentioning the fix first

select $stdout;
I am mentioning this AGAIN because i understand how frustrating it can be when "someone" skips the actual fix, and wanders away in all odd directions instead.

The trouble comes from my($oldfh) = select(S); $| = 1; select($oldfh); at http://cpansearch.perl.org/src/ABELTJE/Test-Smoke-1.72/lib/inc/Mail/Sendmail.pm. Note that at the time of my($oldfh) = select(S); the selected default output (while maybe seeming to be *STDOUT) is infact $fh via *STDOUT, so that reselect at the end points directly to $fh rather than back at STDOUT as you might think at first thought. See restoring *STDOUT = $stdout; doesnt do much good when the default print file is directly set to $fh by the select.

And just as a lark, seeing this

unless ( socket S, AF_INET, SOCK_STREAM, (getprotobyname 'tcp')[2] ) { return fail("socket failed ($!)")
brought back memories of doing things before i knew of use IO::Socket;, Hardly thought of in maybe 15 years, still works tho, well kinda. If you were to use low level sockets, (for some comparability reasons id suspect,) is there another way to unbuffer a file than to select it and set $|?


In reply to Re^4: STDERR Restore after redirect by huck
in thread STDERR Restore after redirect by tultalk

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.