Net::SMTPS>>> Net::SMTPS(0.04) Net::SMTPS>>> IO::Socket::INET6(2.72) ... Net::SMTPS>>> Net::SMTP(3.06) Net::SMTPS>>> Net::Cmd(3.06) Net::SMTPS>>> IO::Socket::IP(0.37)

This looks like a bad combination for me: Net::SMTPS has both IO::Socket::INET6 as its direct subclass and IO::Socket::IP as its indirect subclass. The first comes because Net::SMTPS uses IO::Socket::INET6 if available on the system and the latter comes from the IPv6 support builtin into the newer Net::SMTP which you have probably explicitly installed since 5.16 does not come with this newer version by default. And I imagine that this mix of two different IO::Socket modules for the same connection results in the problem.

I would recommend instead to use either Net::SMTP directly which already supports SSL in the version you have installed or use the latest versions of both Net::SMTP and Email::Sender::Transport::SMTP (not SMTPS!) which combined offer the familiar interface you use and also offer SSL.


In reply to Re^2: Cannot connect to SMTP Server from Windows 8.1 Pro x64 by noxxi
in thread Cannot connect to SMTP Server from Windows 8.1 Pro x64 by sursan

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.