in reply to Re^2: Ubuntu 14.04.1 & Net::SSLGlue::POP3
in thread Ubuntu 14.04.1 & Net::SSLGlue::POP3

It's not a good idea to have a test setup which does not reflect the production setup, because then the results of your tests are not really trustworthy. Apart from the you might try a conditional load, i.e. something like this
use Net::POP3; BEGIN { require Net::SSLGlue::POP3 if !defined &Net::POP3::starttls; }

Replies are listed 'Best First'.
Re^4: Ubuntu 14.04.1 & Net::SSLGlue::POP3
by JimSi (Novice) on Apr 29, 2015 at 01:51 UTC
    Thanks, works.